本文整理汇总了Python中classes.Registry.Registry.item方法的典型用法代码示例。如果您正苦于以下问题:Python Registry.item方法的具体用法?Python Registry.item怎么用?Python Registry.item使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类classes.Registry.Registry
的用法示例。
在下文中一共展示了Registry.item方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: SFormBruterThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
#.........这里部分代码省略.........
for line in fh.readlines():
if not len(line.strip()):
continue
point, selector = line.strip().split(" ")
if point == "^USER^":
have_user = True
if point == "^PASS^":
have_pass = True
if point == "^SUBMIT^":
have_submit = True
to_return[point] = selector
return to_return
def run(self):
""" Run thread """
need_retest = False
word = False
brute_conf = self.parse_brute_config(self.conffile)
while not self.pass_found and not self.done:
try:
self.last_action = int(time.time())
if self.pass_found:
self.done = True
break
if self.delay:
time.sleep(self.delay)
if not need_retest:
word = self.queue.get()
self.counter.up()
#if self.reload_form_page or \
# (not self.browser.element_exists(By.CSS_SELECTOR, brute_conf['^USER^']) or
# not self.browser.element_exists(By.CSS_SELECTOR, brute_conf['^PASS^'])) :
#self.browser.get(self.protocol + "://" + self.host + self.url)
self.browser.get(self.protocol + "://" + self.host + self.url)
if len(self.recreate_phrase) and self.browser.page_source.lower().count(self.recreate_phrase.lower()):
need_retest = True
self.browser_close()
self.browser_create()
continue
self.browser.find_element(By.CSS_SELECTOR, brute_conf['^USER^']).clear()
self.browser.find_element(By.CSS_SELECTOR, brute_conf['^USER^']).send_keys(self.login)
self.browser.find_element(By.CSS_SELECTOR, brute_conf['^PASS^']).clear()
self.browser.find_element(By.CSS_SELECTOR, brute_conf['^PASS^']).send_keys(word)
self.browser.find_element(By.CSS_SELECTOR, brute_conf['^SUBMIT^']).click()
time.sleep(1)
self.logger.item(word, self.browser.page_source, True)
if ( (len(self.false_phrase) and not self.browser.page_source.count(self.false_phrase)) or
(len(self.true_phrase) and self.browser.page_source.count(self.true_phrase)) ):
self.result.append({'word': word, 'content': self.browser.page_source})
#self.logger.log("Result: {0}".format(word))
if len(self.result) >= int(Registry().get('config')['main']['positive_limit_stop']):
Registry().set('positive_limit_stop', True)
if int(self.first_stop):
self.done = True
self.pass_found = True
break
else:
# Иначе старая сессия останется и будет куча false-positive
self.browser_close()
self.browser_create()
need_retest = False
except Queue.Empty:
self.done = True
break
except TimeoutException as e:
need_retest = True
self.browser_close()
self.browser_create()
continue
except UnicodeDecodeError as e:
self.logger.ex(e)
need_retest = False
except BaseException as e:
try:
need_retest = True
if len(e.args) and e.args[0] == 111:
self.browser_close()
self.browser_create()
elif not str(e).count('Timed out waiting for page load'):
self.logger.ex(e)
except UnicodeDecodeError:
need_retest = False
self.up_requests_count()
self.browser_close()
示例2: SBackupsFinderThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class SBackupsFinderThread(SeleniumThread):
""" Thread class for BF module (selenium) """
queue = None
method = None
url = None
counter = None
last_action = 0
def __init__(
self, queue, domain, protocol, method, not_found_re,
delay, ddos_phrase, ddos_human, recreate_re, counter, result
):
super(SBackupsFinderThread, self).__init__()
self.queue = queue
self.method = method if not (len(not_found_re) and method.lower() == 'head') else 'get'
self.domain = domain
self.result = result
self.counter = counter
self.protocol = protocol
self.not_found_re = False if not len(not_found_re) else re.compile(not_found_re)
self.done = False
self.http = Registry().get('http')
self.delay = int(delay)
self.ddos_phrase = ddos_phrase
self.ddos_human = ddos_human
self.recreate_re = False if not len(recreate_re) else re.compile(recreate_re)
self.logger = Registry().get('logger')
Registry().set('url_for_proxy_check', "{0}://{1}".format(protocol, domain))
self.browser_create()
def run(self):
""" Run thread """
while not self.done:
self.last_action = int(time.time())
if self.delay:
time.sleep(self.delay)
try:
word = self.queue.get()
self.counter.up()
url = "{0}://{1}{2}".format(self.protocol, self.domain, word)
self.browser.get(url)
if self.recreate_re and self.recreate_re.findall(self.browser.page_source):
#self.queue.task_done(word)
#self.queue.put(word)
self.browser_close()
self.browser_create()
continue
positive_item = False
if not self.not_found_re.findall(self.browser.page_source):
self.result.append(word)
positive_item = True
self.logger.item(word, self.browser.page_source, True, positive=positive_item)
if len(self.result) >= int(Registry().get('config')['main']['positive_limit_stop']):
Registry().set('positive_limit_stop', True)
#self.queue.task_done(word)
except Queue.Empty:
self.done = True
break
except TimeoutException as e:
self.queue.put(word)
self.browser_close()
self.browser_create()
continue
except BaseException as e:
#self.queue.task_done(word)
if not str(e).count('Timed out waiting for page load'):
self.logger.ex(e)
if str(e).count("Connection refused"):
self.queue.put(word)
self.browser_close()
self.browser_create()
self.up_requests_count()
self.browser_close()
示例3: CmsThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class CmsThread(threading.Thread):
""" Thread class for CMS module """
queue = None
method = None
url = None
counter = None
last_action = 0
def __init__(self, queue, domain, url, protocol, method, not_found_re, not_found_codes, delay, counter, result):
threading.Thread.__init__(self)
self.queue = queue
self.method = method if not (len(not_found_re) and method.lower() == 'head') else 'get'
self.domain = domain
self.url = url
self.result = result
self.counter = counter
self.protocol = protocol
self.not_found_re = False if not len(not_found_re) else re.compile(not_found_re)
not_found_codes = not_found_codes.split(',')
not_found_codes.append('404')
self.not_found_codes = list(set(not_found_codes))
self.delay = int(delay)
self.done = False
self.http = Registry().get('http')
self.logger = Registry().get('logger')
def run(self):
""" Run thread """
req_func = getattr(self.http, self.method)
need_retest = False
while not self.done:
self.last_action = int(time.time())
if self.delay:
time.sleep(self.delay)
try:
if not need_retest:
path = self.queue.get()
try:
url = "{0}://{1}{2}".format(self.protocol, self.domain, clear_double_slashes(self.url + path))
except UnicodeDecodeError:
self.logger.log(
"URL build error (UnicodeDecodeError) with path '{0}', skip it".format(pprint.pformat(path)),
_print=False
)
continue
except UnicodeEncodeError:
self.logger.log(
"URL build error (UnicodeEncodeError) with path '{0}', skip it".format(pprint.pformat(path)),
_print=False
)
continue
try:
resp = req_func(url)
except ConnectionError:
need_retest = True
self.http.change_proxy()
continue
binary_content = resp is not None and is_binary_content_type(resp.headers['content-type'])
if resp is not None \
and str(resp.status_code) not in(self.not_found_codes) \
and not (not binary_content and self.not_found_re and self.not_found_re.findall(resp.content)):
self.result.append({
'path': path,
'code': resp.status_code,
})
self.logger.item(
path,
resp.content if not resp is None else "",
binary_content
)
self.counter.up()
self.queue.task_done()
need_retest = False
except Queue.Empty:
self.done = True
break
except ChunkedEncodingError as e:
self.logger.ex(e)
except UnicodeDecodeError as e:
self.logger.ex(e)
self.queue.task_done()
except BaseException as e:
try:
self.queue.put(path)
if not str(e).count('Timed out waiting for page load'):
self.logger.ex(e)
except UnicodeDecodeError:
pass
#.........这里部分代码省略.........
示例4: SCmsThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class SCmsThread(SeleniumThread):
""" Thread class for CMS module (selenium) """
queue = None
method = None
url = None
counter = None
last_action = 0
def __init__(
self, queue, domain, url, protocol, method, not_found_re,
delay, ddos_phrase, ddos_human, recreate_re, counter, result
):
super(SCmsThread, self).__init__()
self.queue = queue
self.method = method if not (len(not_found_re) and method.lower() == 'head') else 'get'
self.domain = domain
self.url = url
self.result = result
self.counter = counter
self.protocol = protocol
self.not_found_re = False if not len(not_found_re) else re.compile(not_found_re)
self.done = False
self.http = Registry().get('http')
self.delay = int(delay)
self.ddos_phrase = ddos_phrase
self.ddos_human = ddos_human
self.recreate_re = False if not len(recreate_re) else re.compile(recreate_re)
self.logger = Registry().get('logger')
Registry().set('url_for_proxy_check', url)
self.browser_create()
def run(self):
""" Run thread """
need_retest = False
while not self.done:
self.last_action = int(time.time())
if self.delay:
time.sleep(self.delay)
try:
path = self.queue.get()
self.counter.up()
try:
url = "{0}://{1}{2}".format(self.protocol, self.domain, clear_double_slashes(self.url + path))
except UnicodeDecodeError:
self.logger.log(
"URL build error (UnicodeDecodeError) with path '{0}', skip it".format(pprint.pformat(path)),
_print=False
)
continue
self.browser.get(url)
if self.recreate_re and self.recreate_re.findall(self.browser.page_source):
self.queue.put(path)
self.browser_close()
self.browser_create()
continue
if not self.not_found_re.findall(self.browser.page_source):
self.result.append({
'path': path,
'code': 0,
})
self.logger.item(
path,
self.browser.page_source,
True
)
self.queue.task_done()
except Queue.Empty:
self.done = True
break
except TimeoutException as e:
self.queue.put(path)
self.browser_close()
self.browser_create()
continue
except UnicodeDecodeError as e:
self.logger.ex(e)
self.queue.task_done()
except BaseException as e:
try:
self.queue.put(path)
if len(e.args) and e.args[0] == 111:
self.browser_close()
self.browser_create()
elif not str(e).count('Timed out waiting for page load'):
self.logger.ex(e)
except UnicodeDecodeError:
pass
self.queue.task_done()
self.up_requests_count()
#.........这里部分代码省略.........
示例5: DafsThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class DafsThread(threading.Thread):
""" Thread class for Dafs modules """
queue = None
method = None
url = None
mask_symbol = None
counter = None
retested_words = None
last_action = 0
retest_limit = int(Registry().get('config')['dafs']['retest_limit'])
def __init__(
self, queue, protocol, host, url, method, mask_symbol, not_found_re,
not_found_codes, retest_codes, delay, counter, result):
threading.Thread.__init__(self)
self.retested_words = {}
self.queue = queue
self.protocol = protocol.lower()
self.host = host
self.method = method if not (len(not_found_re) and method.lower() == 'head') else 'get'
self.url = url
self.mask_symbol = mask_symbol
self.counter = counter
self.result = result
self.done = False
self.not_found_re = False if not len(not_found_re) else re.compile(not_found_re)
not_found_codes = not_found_codes.split(',')
not_found_codes.append('404')
self.not_found_codes = list(set(not_found_codes))
self.retest_codes = list(set(retest_codes.split(','))) if len(retest_codes) else []
self.delay = int(delay)
self.http = copy.deepcopy(Registry().get('http'))
self.logger = Registry().get('logger')
def run(self):
""" Run thread """
req_func = getattr(self.http, self.method)
need_retest = False
word = False
while not self.done:
self.last_action = int(time.time())
if self.delay:
time.sleep(self.delay)
try:
if not need_retest:
word = self.queue.get()
self.counter.up()
try:
url = self.url.replace(self.mask_symbol, word)
except UnicodeDecodeError:
self.logger.log(
"URL build error (UnicodeDecodeError) with word '{0}', skip it".format(pprint.pformat(word)),
_print=False
)
continue
rtime = int(time.time())
try:
resp = req_func(self.protocol + "://" + self.host + url)
except ConnectionError:
need_retest = True
self.http.change_proxy()
continue
binary_content = resp is not None \
and 'content-type' in resp.headers \
and is_binary_content_type(resp.headers['content-type'])
if resp is not None and len(self.retest_codes) and str(resp.status_code) in self.retest_codes:
if word not in self.retested_words.keys():
self.retested_words[word] = 0
self.retested_words[word] += 1
if self.retested_words[word] <= self.retest_limit:
need_retest = True
time.sleep(int(Registry().get('config')['dafs']['retest_delay']))
continue
if resp is not None \
and str(resp.status_code) not in self.not_found_codes \
and not (not binary_content and self.not_found_re and self.not_found_re.findall(resp.content)):
self.result.append({
'url': url,
'code': resp.status_code,
'time': int(time.time()) - rtime
})
self.logger.item(word, resp.content if not resp is None else "", binary_content)
if len(self.result) >= int(Registry().get('config')['main']['positive_limit_stop']):
Registry().set('positive_limit_stop', True)
#.........这里部分代码省略.........
示例6: SDafsThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class SDafsThread(SeleniumThread):
""" Thread class for Dafs modules (selenium) """
queue = None
method = None
template = None
mask_symbol = None
counter = None
last_action = 0
def __init__(
self, queue, protocol, host, template, method, mask_symbol, not_found_re,
delay, ddos_phrase, ddos_human, recreate_re, ignore_words_re, counter, result
):
super(SDafsThread, self).__init__()
self.queue = queue
self.protocol = protocol.lower()
self.host = host
self.method = method if not (len(not_found_re) and method.lower() == 'head') else 'get'
self.template = template
self.mask_symbol = mask_symbol
self.counter = counter
self.result = result
self.done = False
self.not_found_re = False if not len(not_found_re) else re.compile(not_found_re)
self.recreate_re = False if not len(recreate_re) else re.compile(recreate_re)
self.http = Registry().get('http')
self.delay = int(delay)
self.ddos_phrase = ddos_phrase
self.ddos_human = ddos_human
self.ignore_words_re = False if not len(ignore_words_re) else re.compile(ignore_words_re)
Registry().set('url_for_proxy_check', "{0}://{1}".format(protocol, host))
self.browser_create()
self.logger = Registry().get('logger')
def run(self):
""" Run thread """
need_retest = False
word = None
while not self.done:
self.last_action = int(time.time())
if self.delay:
time.sleep(self.delay)
try:
if not need_retest:
word = self.queue.get()
if not len(word.strip()) or (self.ignore_words_re and self.ignore_words_re.findall(word)):
continue
self.counter.up()
try:
url = self.template.replace(self.mask_symbol, word)
except UnicodeDecodeError:
self.logger.log(
"URL build error (UnicodeDecodeError) with word '{0}', skip it".format(pprint.pformat(word)),
_print=False
)
continue
rtime = int(time.time())
self.browser.get(self.protocol + "://" + self.host + url)
if self.recreate_re and self.recreate_re.findall(self.browser.page_source):
need_retest = True
self.browser_close()
self.browser_create()
continue
positive_item = False
if not self.not_found_re.findall(self.browser.page_source):
self.result.append({
'url': url,
'code': 0,
'time': int(time.time()) - rtime
})
positive_item = True
self.logger.item(word, self.browser.page_source, False, positive_item)
if len(self.result) >= int(Registry().get('config')['main']['positive_limit_stop']):
Registry().set('positive_limit_stop', True)
need_retest = False
except Queue.Empty:
self.done = True
break
except UnicodeDecodeError as e:
self.logger.ex(e)
need_retest = False
except TimeoutException as e:
need_retest = True
self.browser_close()
self.browser_create()
continue
except BaseException as e:
#.........这里部分代码省略.........
示例7: FormBruterThread
# 需要导入模块: from classes.Registry import Registry [as 别名]
# 或者: from classes.Registry.Registry import item [as 别名]
class FormBruterThread(threading.Thread):
""" Thread class for FormBruter module """
queue = None
method = None
url = None
mask_symbol = None
counter = None
last_action = 0
logger = None
retested_words = None
last_action = 0
retest_limit = int(Registry().get('config')['dafs']['retest_limit'])
def __init__(
self, queue, protocol, host, url, false_phrase, true_phrase, retest_codes, delay,
confstr, first_stop, login, pass_found, counter, result
):
threading.Thread.__init__(self)
self.retested_words = {}
self.queue = queue
self.protocol = protocol.lower()
self.host = host
self.url = url
self.false_phrase = false_phrase
self.true_phrase = true_phrase
self.delay = int(delay)
self.confstr = confstr
self.first_stop = first_stop
self.login = login
self.counter = counter
self.result = result
self.retest_codes = list(set(retest_codes.split(','))) if len(retest_codes) else []
self.pass_found = pass_found
self.done = False
self.logger = Registry().get('logger')
self.http = copy.deepcopy(Registry().get('http'))
self.http.every_request_new_session = True
def _make_conf_from_str(self, confstr):
result = {}
tmp = confstr.split("&")
for tmp_row in tmp:
field, value = tmp_row.split("=")
result[field] = value
return result
def _fill_conf(self, conf, login, password):
for field in conf.keys():
conf[field] = conf[field].replace("^USER^", login).replace("^PASS^", password)
return conf
def run(self):
""" Run thread """
need_retest = False
word = False
conf = self._make_conf_from_str(self.confstr)
while not self.pass_found and not self.done:
try:
self.last_action = int(time.time())
if self.pass_found:
self.done = True
break
if self.delay:
time.sleep(self.delay)
if not need_retest:
word = self.queue.get()
self.counter.up()
work_conf = self._fill_conf(dict(conf), self.login, word)
try:
resp = self.http.post(
self.protocol + "://" + self.host + self.url, data=work_conf, allow_redirects=True
)
except ConnectionError:
need_retest = True
self.http.change_proxy()
continue
if resp is not None and len(self.retest_codes) and str(resp.status_code) in self.retest_codes:
if word not in self.retested_words.keys():
self.retested_words[word] = 0
self.retested_words[word] += 1
if self.retested_words[word] <= self.retest_limit:
need_retest = True
time.sleep(int(Registry().get('config')['dafs']['retest_delay']))
continue
self.logger.item(word, resp.content if not resp is None else "")
if (len(self.false_phrase) and
not resp.content.count(self.false_phrase)) or \
(len(self.true_phrase) and resp.content.count(self.true_phrase)):
self.result.append({'word': word, 'content': resp.content})
#self.logger.log("Result: {0}".format(word))
#.........这里部分代码省略.........