예제 #1
0
파일: rpc2.py 프로젝트: M31MOTH/fuzzbunch
 def __init__(self, job, timeout=30):
     scan.__init__(self, job)
     if (len(job) > 1):
         self.type = job[0].split('|')[1]
         self.port = job[0].split('|')[2]
     self.scan_type = _whats_your_name()
     if (timeout < 30):
         self.timeout = 30
     else:
         self.timeout = timeout
예제 #2
0
 def __init__(self, job, timeout=30):
     scan.__init__(self, job)
     if (len(job) > 1):
         self.type = job[0].split('|')[1]
         self.port = job[0].split('|')[2]
     self.scan_type = _whats_your_name()
     if (timeout < 30):
         self.timeout = 30
     else:
         self.timeout = timeout
예제 #3
0
 def __init__(self, job, timeout=10):
     scan.__init__(self, job)
     setattr(self, 'datasize', 0)
     if (len(job) > 1):
         self.type = job[0].split('|')[1]
         self.port = job[0].split('|')[2]
     self.scan_type = _whats_your_name()
     if (timeout >= 60):
         self.timeout = 59
     else:
         self.timeout = timeout
예제 #4
0
파일: ping.py 프로젝트: M31MOTH/fuzzbunch
 def __init__(self, job, timeout=5):
     scan.__init__(self, job)
     setattr(self, 'ttl', 0)
     self.scan_type = _whats_your_name()
     if (len(job) > 1):
         if (len(job[0].split('|')) > 1):
             self.broadcast = True
         else:
             self.broadcast = False
     self.response_list = []
     if (timeout >= 60):
         self.timeout = 59
     else:
         self.timeout = timeout
예제 #5
0
 def __init__(self, job, timeout=5):
     scan.__init__(self, job)
     setattr(self, 'ttl', 0)
     self.scan_type = _whats_your_name()
     if (len(job) > 1):
         if (len(job[0].split('|')) > 1):
             self.broadcast = True
         else:
             self.broadcast = False
     self.response_list = []
     if (timeout >= 60):
         self.timeout = 59
     else:
         self.timeout = timeout
예제 #6
0
 def __init__(self, job, timeout=None):
     scan.__init__(self, job)
     self.scan_type = _whats_your_name()
예제 #7
0
 def __init__(self, job, timeout=None):
     scan.__init__(self, job)
     if (len(job) > 1):
         self.type = job[0].split('|')[1]
     self.scan_type = _whats_your_name()
예제 #8
0
파일: arp.py 프로젝트: M31MOTH/fuzzbunch
 def __init__(self, job, timeout=None):
     scan.__init__(self, job)
     self.scan_type = _whats_your_name()
예제 #9
0
 def __init__(self, job, timeout=None):
     scan.__init__(self, job)
     if (len(job) > 1):
         self.type = job[0].split('|')[1]
     self.scan_type = _whats_your_name()