Commit 97aa6ecd authored by Greg Jurman's avatar Greg Jurman

Removed references to IPv4 localhost

parent 5c992107
......@@ -20,7 +20,6 @@ import pyrasite
class ReverseShell(pyrasite.ReverseConnection):
reliable = False # This payload is designed to be used with netcat
host = '127.0.0.1'
port = 9001
def on_connect(self):
......
......@@ -29,7 +29,7 @@ from pyrasite.ipc import PyrasiteIPC
class ReverseConnection(threading.Thread, PyrasiteIPC):
"""A payload that connects to a given host:port and receives commands"""
host = '127.0.0.1'
host = 'localhost'
port = 9001
def __init__(self, host=None, port=None):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment