-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
does not connect to machine #3
Comments
the error message is ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it. (on the client machine) |
Can I presume the OS you are running the C2 server (c2.py) on is Windows? |
the c2.py is run on kali linux |
Is the backdoor (backdoor.py) run in a Windows environment? |
yes |
Could be a firewall issue. If you're using Windows Firewall is it blocking outbound ports? Also, because you are running in different environments did you change the IP address in c2.py and backdoor.py? |
I had to change ip address from local host to inet on the backdoor.py since I have to connect from a distance and when I turn off the firewall the message still pops up |
The C2 server in the image is hosted on a VPS (running Ubuntu connected via SSH), and the backdoor (running on macOS) connects from another network over the Internet via a reverse shell. Line 182 in 3db3591
The line above can be rewritten as sock.bind(('0.0.0.0', 5555)) in c2.py to bind to all IPv4 interfaces.
Likewise, PythonRAT/backdoor/backdoor.py Line 173 in 3db3591
|
the backdoor does not properly connect to the client machine via ip address how to fix
The text was updated successfully, but these errors were encountered: