qeeqbox/honeypots

Honeypot Unable to Run on Edited Script.

Honeypiggy opened this issue · 1 comments

Despite making edits on init.py, main.py & rdp_server.py scripts, the honeypot runs on the default script. Would anyone be able to assist?

Edited script:
main py edits

Screenshot of deployed honeypot:
Deployed Honeypot

I'm just guessing but could it be that you installed "honeypots" normally with pip and then changed it and tried to execute the changed script? When it imports its modules, it then imports the installed (unchanged) ones instead of the one from the local folder. You can change that by installing it in "editable mode": pip install -e . directly from your checked out repository.