Skip to content

Commit d856c77

Browse files
committed
Fix hardcoded shebang in honeypot.py
Replace #!/root/knock-knock/.venv/bin/python with #!/usr/bin/env python3 so honeypot works on any deployment, not just this server.
1 parent c266101 commit d856c77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

honeypot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/root/knock-knock/.venv/bin/python
1+
#!/usr/bin/env python3
22
import paramiko
33
import socket
44
import threading

0 commit comments

Comments
 (0)