mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-22 14:23:39 -07:00
Merge c5d0801470
into 38219e249e
This commit is contained in:
commit
6abc79c508
1 changed files with 47 additions and 3 deletions
|
@ -21,12 +21,16 @@ from socket import *
|
||||||
from odict import OrderedDict
|
from odict import OrderedDict
|
||||||
import optparse
|
import optparse
|
||||||
|
|
||||||
__version__ = "0.7"
|
__version__ = "0.8"
|
||||||
|
|
||||||
parser = optparse.OptionParser(usage='python %prog -i 10.10.10.224\nor:\npython %prog -i 10.10.10.0/24', version=__version__, prog=sys.argv[0])
|
parser = optparse.OptionParser(usage='python %prog -i 10.10.10.224\nor:\npython %prog -i 10.10.10.0/24', version=__version__, prog=sys.argv[0])
|
||||||
|
|
||||||
parser.add_option('-i','--ip', action="store", help="Target IP address or class C", dest="TARGET", metavar="10.10.10.224", default=None)
|
parser.add_option('-i','--ip', action="store", help="Target IP address or class C",\
|
||||||
parser.add_option('-g','--grep', action="store_true", dest="Grep", default=False, help="Output in grepable format")
|
dest="TARGET", metavar="10.10.10.224", default=None)
|
||||||
|
parser.add_option('-g','--grep', action="store_true", dest="Grep", default=False, \
|
||||||
|
help="Output in grepable format")
|
||||||
|
parser.add_option('-f','--false', action="store_true", dest="SigningFalse", default=False, \
|
||||||
|
help="Displays IPs with SMB Signing False & saves to targets_(TimeStamp).txt")
|
||||||
options, args = parser.parse_args()
|
options, args = parser.parse_args()
|
||||||
|
|
||||||
if options.TARGET is None:
|
if options.TARGET is None:
|
||||||
|
@ -37,6 +41,7 @@ if options.TARGET is None:
|
||||||
Timeout = 2
|
Timeout = 2
|
||||||
Host = options.TARGET
|
Host = options.TARGET
|
||||||
Grep = options.Grep
|
Grep = options.Grep
|
||||||
|
SigningFalse = options.SigningFalse
|
||||||
|
|
||||||
class Packet():
|
class Packet():
|
||||||
fields = OrderedDict([
|
fields = OrderedDict([
|
||||||
|
@ -264,6 +269,38 @@ def ShowSmallResults(Host):
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def writeFile(Host):
|
||||||
|
with open('targets.txt', 'a') as f:
|
||||||
|
f.write(Host[0])
|
||||||
|
|
||||||
|
def ShowSmbFalse(Host):
|
||||||
|
timeStamp = datetime.datetime.now().strftime("%m_%d_%y_%H_%M")
|
||||||
|
filename = 'targets_'+timeStamp+'.txt'
|
||||||
|
|
||||||
|
s = socket(AF_INET, SOCK_STREAM)
|
||||||
|
try:
|
||||||
|
s.settimeout(Timeout)
|
||||||
|
s.connect(Host)
|
||||||
|
except:
|
||||||
|
return False
|
||||||
|
|
||||||
|
try:
|
||||||
|
Hostname, DomainJoined, Time = DomainGrab(Host)
|
||||||
|
Signing, OsVer, LanManClient = SmbFinger(Host)
|
||||||
|
if Signing == False:
|
||||||
|
print(Host[0])
|
||||||
|
with open(filename, 'a') as f:
|
||||||
|
f.write(Host[0]+'\n')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def IsSigningFalse():
|
||||||
|
if options.SigningFalse:
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
def IsGrepable():
|
def IsGrepable():
|
||||||
if options.Grep:
|
if options.Grep:
|
||||||
return True
|
return True
|
||||||
|
@ -282,13 +319,20 @@ def RunFinger(Host):
|
||||||
p = multiprocessing.Process(target=ShowSmallResults, args=((host,445),))
|
p = multiprocessing.Process(target=ShowSmallResults, args=((host,445),))
|
||||||
threads.append(p)
|
threads.append(p)
|
||||||
p.start()
|
p.start()
|
||||||
|
elif IsSigningFalse():
|
||||||
|
p = multiprocessing.Process(target=ShowSmbFalse, args=((host,445),))
|
||||||
|
threads.append(p)
|
||||||
|
p.start()
|
||||||
else:
|
else:
|
||||||
p = multiprocessing.Process(target=ShowResults, args=((host,445),))
|
p = multiprocessing.Process(target=ShowResults, args=((host,445),))
|
||||||
threads.append(p)
|
threads.append(p)
|
||||||
p.start()
|
p.start()
|
||||||
else:
|
else:
|
||||||
|
|
||||||
if IsGrepable():
|
if IsGrepable():
|
||||||
ShowSmallResults((Host,445))
|
ShowSmallResults((Host,445))
|
||||||
|
elif IsSigningFalse():
|
||||||
|
ShowSmbFalse((Host,445))
|
||||||
else:
|
else:
|
||||||
ShowResults((Host,445))
|
ShowResults((Host,445))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue