Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Security-Basics
[Top] [All Lists]

Re: Re: Help writing a back up script

Subject: Re: Re: Help writing a back up script
Date: 26 Oct 2005 19:08:35 -0000
For simple batch file transfers, the tools are all there in XP, as Terence 
indicated. Use 'Notepad.exe' or "edit ftp.bat" from the DOS prompt to create 
the batch file:

ftp.exe -s:%0
goto done
open <yoursite.com> '(or <IP>)
<insert ftp username>
<insert password>
cd <insert directory>
pwd
ls -la
del <insert filename>
ascii (or bin)
hash
put <insert filename>
bye
:done

Change permissions on the file and/or directory if required. Modify the 
commands to include paths to other directories as needed.

You can then use the 'Scheduler' wizard under the Program Files->Accesories to 
setup the batch file to run as a specific user at times you specify. I use this 
method succesfully to run batch files, to remove dangerous shares on windows 
boxes for example.

Google "ftp batch files" for more detailed commands and examples!

<Prev in Thread] Current Thread [Next in Thread>