Skip to content
Snippets Groups Projects
Commit f8565128 authored by deuce's avatar deuce
Browse files

Add a BAJA-simple FTP client.

var f = new FTP('vert.synchro.net');
f.cwd('main');
f.cwd('uploads');
print(f.pwd());
if (f.dir().search(/\scrackme/) !== -1) {
	f.get('crackme', '/home/derpy/todo');
	f.delete('crackme');
}
f.put('/etc/passwd', 'crackme');
f.logout();
parent 5d336903
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment