You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('--host', default='0.0.0.0', help='Host to bind the server')
200
+
parser.add_argument('--host', default='127.0.0.1', help='Host to bind the server (use a specific interface IP, never 0.0.0.0 unless you really need to expose on all interfaces)')
196
201
parser.add_argument('--port', type=int, default=12345, help='Port to bind the server')
parser.add_argument('--host', type=str, default='0.0.0.0', help='IP address to bind the honeypot')
35
+
parser.add_argument('--host', type=str, default='127.0.0.1', help='IP address to bind the honeypot (use a specific interface IP, never 0.0.0.0 unless you really need to expose on all interfaces)')
36
36
parser.add_argument('--port', type=int, default=2222, help='Port to bind the honeypot')
37
37
parser.add_argument('--downloads_dir', type=str, default='downloads', help='Directory to save downloaded files')
0 commit comments