mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-22 07:29:02 +00:00
increased timeout value in case of proxying
This commit is contained in:
@@ -92,7 +92,7 @@ class SMBNegoData(Packet):
|
|||||||
def run(host):
|
def run(host):
|
||||||
s = socket(AF_INET, SOCK_STREAM)
|
s = socket(AF_INET, SOCK_STREAM)
|
||||||
s.connect(host)
|
s.connect(host)
|
||||||
s.settimeout(0.1)
|
s.settimeout(5)
|
||||||
h = SMBHeader(Cmd="\x72",Flag1="\x18",Flag2="\x53\xc8")
|
h = SMBHeader(Cmd="\x72",Flag1="\x18",Flag2="\x53\xc8")
|
||||||
n = SMBNego(Data = SMBNegoData())
|
n = SMBNego(Data = SMBNegoData())
|
||||||
n.calculate()
|
n.calculate()
|
||||||
|
|||||||
Reference in New Issue
Block a user