mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-05 12:35:52 -07:00
minor fix
This commit is contained in:
parent
ccbcd1736f
commit
64cf4d9873
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
import random, struct, sys
|
||||
import random, struct, sys, os
|
||||
from os import urandom
|
||||
from socket import *
|
||||
from time import sleep
|
||||
from odict import OrderedDict
|
||||
|
@ -522,7 +523,7 @@ class SMBv2Negotiate(Packet):
|
|||
("SecurityMode", "\x01\x00"),
|
||||
("Reserved","\x00\x00"),
|
||||
("Capabilities","\x00\x00\x00\x00"),
|
||||
("ClientGUID","\xd5\xa1\x5f\x6e\x9a\x75\xe1\x11\x87\x82\x00\x01\x4a\xf1\x18\xee"),
|
||||
("ClientGUID", urandom(16).decode('latin-1')),
|
||||
("ClientStartTime","\x00\x00\x00\x00\x00\x00\x00\x00"),
|
||||
("Dialect1","\x02\x02"),
|
||||
("Dialect2","\x10\x02"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue