mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-05 20:41:22 -07:00
Added option -e, specify an external IP address to redirect poisoned traffic to.
This commit is contained in:
parent
29ad8a0816
commit
04c270f6b7
5 changed files with 21 additions and 10 deletions
6
utils.py
6
utils.py
|
@ -82,6 +82,12 @@ def RespondToThisName(Name):
|
|||
def RespondToThisHost(ClientIp, Name):
|
||||
return RespondToThisIP(ClientIp) and RespondToThisName(Name)
|
||||
|
||||
def RespondWithIPAton():
|
||||
if settings.Config.ExternalIP:
|
||||
return settings.Config.ExternalIPAton
|
||||
else:
|
||||
return settings.Config.IP_aton
|
||||
|
||||
def OsInterfaceIsSupported():
|
||||
if settings.Config.Interface != "Not set":
|
||||
return not IsOsX()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue