Sco box got turned into a warez server. How do I get into a dir name spaces?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Sco box got turned into a warez server. How do I get into a dir name spaces?
# 1  
Old 06-13-2006
Network Sco box got turned into a warez server. How do I get into a dir name spaces?

One of my SCO 5.0.6 boxes was compromised and the hacker left behind several files that are hidden from ls and impossible to access using cd. There appears to be may spaces and other characters in the directory names that make it hard to see the files. The find command can see them as can tar but I cannot touch them. Below is an example of the file structure that I discovered. What tool can I user to reach these files?

Thanks in advance.
Gadgetman



/u2/RICARDO/rentone/RUN/tmp/ / ta13180- / -;; &20 @tagged .by; quit %f
;;...- / -Muh- / -ta0 % .; ; ;tan1- / ;% scanned by %d.- / -Muh- / con .; ;
;%d con- / -;made for .- / !n$!dR- / in12 /ComesTheStuff/Wimbledon MVCD/Wimble
don MVCD.part31.rar
# 2  
Old 06-13-2006
you can either:

1. Enclose the files/directories names in quotes
2. use the find command with -exec rm/rmdir
# 3  
Old 06-14-2006
You can pipe the output from 'ls -l' or just 'ls' through the copmmand 'cat -vet' to see any files with strange characters in
Code:
ls -1 | cat -vet

If you have problems removing files in a particular directory you can cd up a directory and do an 'rm -ir mydir' to interactively delete files within the directory. For example
Code:
cd /usr/mydir
ls -l
*produces rubbish output due to bad files/directories
cd ..
rm -ri mydir

The last command will recursivelt remove all files and directories from 'mydir', but will ask you to confirm each one. This may take some time if there are a lot of files and directories but it should work. Just dont delete anything you want to keep :-)
# 4  
Old 06-14-2006
Thank you for your excellent suggestions, I decided not to waste any more time trying access the directories. Someone went to a great deal of trouble to “lock” them so I will concede them this petty if temporary victory. I made a tar backup and then nuked them out of existence. I will take another crack at them later when I have more time. I was up until 2:30 am last night learning the ways of the “t@gger” jedi. Know thy enemy and all. Quite a fascinating underworld they inhabit. See here http://www.jtpfxp.net/scanverify.htm and here http://old.wheresthebeef.co.uk/show....iracy-TYDJ.txt
Quite entertaining reading... Smilie
Gadgetman
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. SCO

I need a box to run SCO 3.2 5.0.5 i386 with...

need it to be able to run Seagate STT8000A tape drive. Any suggestions where to go. (5 Replies)
Discussion started by: Mike Gomes
5 Replies

2. UNIX for Dummies Questions & Answers

Copying dir (and sub dir) file names from ftp server to txt file in diff server

Hey all, i want to copy only the file names from an ftp server (directory and all sub directory) to a text file in another server (non ftp), i.e. i want to recursively move through directories and copy only the names to a text file. any help is appreciated...thank you in advance (1 Reply)
Discussion started by: deking
1 Replies

3. SCO

SCO box loosing network connection

Hello, We have a SCO box running OpenServer 5.0.5. This has our business software on it (15 users connecting via terminal emulator (ansio lite)) which has been running for about 12-15yrs strong! Within the past 6-8 months, at random times of the day, we've been loosing connection to this box. ... (8 Replies)
Discussion started by: rpcbrielle
8 Replies

4. Shell Programming and Scripting

Auto sending text files from SCO box to a PC via serial cable

I have an SCO system with several PC's hooked up via ProComm and serial cabling (no Ethernet). I want to occasionally transfer a small text file from the UNIX system to a specific PC without the PC operator having to do anything (she may be out to lunch or doing other work during the transfer) ... (0 Replies)
Discussion started by: gbrowne
0 Replies

5. UNIX for Advanced & Expert Users

mail command on sco box

Hello, Can anyone tell me why the command below will not work on a SCO box, but does fine on aix, suse boxes. Thanks. echo "test" | mail -s "Test" test@test.com Course the email address I just faked out for sample purpose. I see from the it gives the following error below. I also changed... (0 Replies)
Discussion started by: benefactr
0 Replies

6. UNIX for Dummies Questions & Answers

Not able to install Oracle Workgroup Server on SCO Unix 5.0.2 box

After having to replace a video card and having a corrupt root directory, I had to wipe out and reinstall my SCO OpenServer Enterprise System 5.0.2. because nothing would work for the root password. I am now trying to reinstall the Oracel Workgroup Server SCO v7.1.5.2 and it tells me I need to... (1 Reply)
Discussion started by: sheilaj1
1 Replies

7. UNIX for Advanced & Expert Users

VPN client (windows Box),and Server (Unix Box)

If I want to access unix box via VPN tunnel,from windows box. What sould I configure on the windows client PC, and what should I enable on the Unix Server box ? I am using Solaris V10 intel platform, and I am using windows XP, and 2003 for client (0 Replies)
Discussion started by: zillah
0 Replies

8. IP Networking

Adding a New IP Addresses to a SCO Unix Box

I tried the search and didn't come up with an answer to my question so I decided I'd post it.... How do you add a new IP address to a SCO Unix box? We're adding a router and I need to add the IP address to the UNIX box for the system to find it.. Thanks in Advance (1 Reply)
Discussion started by: dman110168
1 Replies

9. UNIX for Dummies Questions & Answers

Networking a SCO Unix box with a windows lan

Hi there! We have a SCO UNIX box that uses a bunch of dumb terminals. We also have a workgroup of 5 stations Is there a way that we can network the UNIX box to the workgroup for dumb terminal.. A novice would think you could TCP the UNIX machine through a hub and use hypertermal as a dumb... (6 Replies)
Discussion started by: huilai
6 Replies

10. UNIX for Advanced & Expert Users

Imaging of SCO-UNIX box

Does anyone know of any good imaging tools that can be used to create an image of a Sco-Unix box? (2 Replies)
Discussion started by: gmrfh1
2 Replies
Login or Register to Ask a Question