Python Ethical Hacking - Malware Packaging(4)

Converting Python Programs to Linux Executables

Note: You can not execute the program on Linux by double click.

Install the PyInstaller.

pip3 install PyInstaller

Covert the Python Program to Linux executable.

pyinstaller --onefile --noconsole reverse_backdoor.py

Python Ethical Hacking - Malware Packaging(4)_第1张图片

 

 

 The executable file in Linux has no extension.

Python Ethical Hacking - Malware Packaging(4)_第2张图片

 

 Move the executable to DebianBuster and run this program.

Python Ethical Hacking - Malware Packaging(4)_第3张图片

 

 

The connection is established successfully.

Python Ethical Hacking - Malware Packaging(4)_第4张图片

 

你可能感兴趣的:(Python Ethical Hacking - Malware Packaging(4))