xp4xbox / Python-Backdoor

This project is a cross-platform backdoor/reverse shell and post-exploitation tool written in Python3
GNU General Public License v3.0
714 stars 205 forks source link

Enhancement Suggestion to SetUp.py #32

Closed JakeWnuk closed 4 years ago

JakeWnuk commented 4 years ago

OS: [Kali]

Suggestion: When using setup.py from a terminal you have to encapsulate every argument in string quotes for it to run without breaking. If you cast it as a string before using the argument you can avoid that and make it easier for end users who might not be Python natives.

Example:

print("1. Use: " + strCurrentIP) print("2. Use a different IP address for server") print("3. Use a DNS Hostname")

strChoice = "" strChoice = str(input("\n" + "Type selection: "))

if strChoice == "1": pass ...

xp4xbox commented 4 years ago

You cant run setup.py from terminal anyways it only builds on windows.

JakeWnuk commented 4 years ago

Tested on windows and no issue as seen above. closing issue.

PawanKumarPandit commented 4 years ago

I'm facing issue while sending and receiving files to client machine it stuck and won't execute any comment. After click ctrl + c. I lost my connection and again I can't able to establish a connection. Plz help anyone if know.

xp4xbox commented 4 years ago

Please create a new issue, this isn't the right spot for it.