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
File "/Users/whatever/Repositories/Responder/settings.py", line 182, in populate
self.IP_aton = socket.inet_aton(self.Bind_To)
OSError: illegal IP address string passed to inet_aton
Responder started as: sudo python3.9 ./Responder.py -I en0
I debugged the problem a bit and found out the interface name (in my case 'en0') is passed to socket.inet_aton.
As a temporary workaround I have changed the code a bit:
Responder/settings.py
Line 182 in 1a2f2fd
This line is causing the following error:
OSError: illegal IP address string passed to inet_aton
Responder started as:
sudo python3.9 ./Responder.py -I en0
I debugged the problem a bit and found out the interface name (in my case 'en0') is passed to socket.inet_aton.
As a temporary workaround I have changed the code a bit:
This resolves the OSError, perhaps this fix should be included in next version.
Sincerly, Darwin 22.6.0 Darwin Kernel Version 22.6.0 arm64
The text was updated successfully, but these errors were encountered: