Coder Social home page Coder Social logo

ekultek / zeus-scanner Goto Github PK

View Code? Open in Web Editor NEW
946.0 53.0 244.0 14.03 MB

Advanced reconnaissance utility

Python 99.23% Shell 0.32% HTML 0.09% Dockerfile 0.35%
google-dorks dork-scanning ip-block-bypass captcha-bypass admin-panel-finder xss-scanner vulnerability-scanners pgp-keyserver sql-injection port-scanner

zeus-scanner's Introduction

NOTE: due to dumbass people, automatic issue creation has been turned off until further notice


GitHub stars GitHub forks GitHub issues GitHub license Twitter Donate

Helpful links directory

Zeus-Scanner

What is Zeus?

Zeus is an advanced reconnaissance utility designed to make web application reconnaissance simple. Zeus comes complete with a powerful built-in URL parsing engine, multiple search engine compatibility, the ability to extract URLs from both ban and webcache URLs, the ability to run multiple vulnerability assessments on the target, and is able to bypass search engine captchas.

Features

  • A powerful built in URL parsing engine
  • Multiple search engine compatibility (DuckDuckGo, AOL, Bing, and Google default is Google)
  • Ability to extract the URL from Google's ban URL thus bypassing IP blocks
  • Ability to extract from Google's webcache URL
  • Proxy compatibility (http, https, socks4, socks5)
  • Tor proxy compatibility and Tor browser emulation
  • Parse robots.txt/sitemap.xml and save them to a file
  • Multiple vulnerability assessments (XSS, SQLi, clickjacking, port scanning, admin panel finding, whois lookups, and more)
  • Tamper scripts to obfuscate XSS payloads
  • Can run with a custom default user-agent, one of over 4000 random user-agents, or a personal user-agent
  • Automatic issue creation when an unexpected error arises
  • Ability to crawl a webpage and pull all the links
  • Can run a singular dork, multiple dorks in a given file, or a random dork from a list of over 5000 carefully researched dorks
  • Dork blacklisting when no sites are found with the search query, will save the query to a blacklist file
  • Identify WAF/IPS/IDS protection of over 20 different firewalls
  • Header protection enumeration to check what kind of protection is provided via HTTP headers
  • Saving cookies, headers, and other vital information to log files
  • and much more...

Screenshots

Running without a mandatory options, or running the --help flag will output Zeus's help menu: zeus-help A basic dork scan with the -d flag, from the given dork will launch an automated browser and pull the Google page results: zeus-dork-scan Calling the -s flag will prompt for you to start the sqlmap API server python sqlmapapi.py -s from sqlmap, it will then connect to the API and perform a sqlmap scan on the found URL's. zeus-sqlmap-api

You can see more screenshots here

Demo

to_video

Requirements

There are some requirements for this to be run successfully.

Basic requirements
  • libxml2-dev, libxslt1-dev, python-dev are required for the installation process
  • Firefox web browser is required as of now, you will need Firefox version <=58 >=52 (between 52 and 58). Full functionality for other browsers will eventually be added.
  • If you want to run sqlmap through the URL's you will need sqlmap somewhere on your system.
  • If you want to run a port scan using nmap on the URL's IP addresses. You will need nmap on your system.
  • Geckodriver is required to run the firefox web browser and will be installed the first time you run. It will be added to your /usr/bin so that it can be run in your ENV PATH.
  • You must be sudo for the first time running this so that you can add the driver to your PATH, you also may need to run as sudo depending on your permissions. NOTE: Depending on permissions you may need to be sudo for any run involving the geckodriver
  • xvfb is required by pyvirtualdisplay, it will be installed if not installed on your first run
Python package requirements
  • selenium-webdriver package is required to automate the web browser and bypass API calls.
  • requests package is required to connect to the URL, and the sqlmap API
  • python-nmap package is required to run nmap on the URL's IP addresses
  • whichcraft package is required to check if nmap and sqlmap are on your system if you want to use them
  • pyvirtualdisplay package is required to hide the browser display while finding the search URL
  • lxml is required to parse XML data for the sitemap and save it as such
  • psutil is required to search for running sqlmap API sessions
  • beautifulsoup is required to pull all the HREF descriptor tags and parse the HTML into an easily workable syntax

Installation

You can download the latest tar.gz, the latest zip, or you can find the current stable release here. Alternatively you can install the latest development version by following the instructions that best match your operating system:

NOTE: (optional but highly advised) add sqlmap and nmap to your environment PATH by moving them to /usr/bin or by adding them to the PATH via terminal

Ubuntu/Debian
sudo apt-get install libxml2-dev libxslt1-dev python-dev &&  git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
centOS
sudo apt-get install gcc python-devel libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py

Backbox

64 bit installation:

sudo -s << EOF
aptitude purge firefox
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
tar -xjf firefox-57.0.tar.bz2
rm -rf /opt/firefox*
mv firefox /opt/firefox57
mv /usr/bin/firefox /usr/bin/firefoxold
ln -s /opt/firefox57/firefox-bin /usr/bin/firefox
apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && pip2 install -r requirements.txt && python zeus.py
EOF

32 bit installation:

sudo -s << EOF
aptitude purge firefox
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-i686/en-US/firefox-57.0.tar.bz2
tar -xjf firefox-57.0.tar.bz2
rm -rf /opt/firefox*
mv firefox /opt/firefox57
mv /usr/bin/firefox /usr/bin/firefoxold
ln -s /opt/firefox57/firefox-bin /usr/bin/firefox
apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && pip2 install -r requirements.txt && python zeus.py
EOF
Others
sudo apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py

This will install all the package requirements along with the geckodriver

Donations

Zeus is created by a small team of developers that have an aspiration for information security and a strive to succeed. If you like Zeus and want to donate to our funding, we gladly and appreciatively accept donations via:

You can be assured that all donations will go towards Zeus funding to make it more reliable and even better, thank you from the Zeus development team

Shoutouts

OpenSource Projects is a Facebook community page who's goal is to give developers, new and old, a easy and simple place to share their opensource contributions and projects. I personally think this is an awesome idea, I know how hard it is to get your code noticed by people and support these guys 100%. Go ahead and give them a like here. They will share any opensource project you send them for free. Thank you OpenSource Projects for giving developers a place to share work with one another!

Translations

zeus-scanner's People

Contributors

ekultek avatar sylwit avatar timverheul avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

zeus-scanner's Issues

Installation issue

$ sudo python zeus.py
Traceback (most recent call last):
File "zeus.py", line 141, in
setup(verbose=opt.runInVerbose)
File "/Users/break/tools/Zeus-Scanner/lib/settings.py", line 222, in setup
bin.unzip_gecko.main(verbose=verbose)
File "/Users/break/tools/Zeus-Scanner/bin/unzip_gecko.py", line 78, in main
if check_if_run():
File "/Users/break/tools/Zeus-Scanner/bin/unzip_gecko.py", line 14, in check_if_run
with open(file_check.format(os.getcwd())) as exc:
IOError: [Errno 2] No such file or directory: '/Users/break/tools/Zeus-Scanner/bin/executed.txt'

====================
installation issue

TypeError: unsupported operand type(s) for +: 'set' and 'str'

Zeus version:
1.0.27.de68

Error info:

  File "./zeus.py", line 410, in <module>
    agent=agent_to_use
  File "/root/Zeus-Scanner/var/google_search/search.py", line 274, in parse_search_results
    write_to_log_file(retval, URL_LOG_PATH, "url-log-{}.log")
  File "/root/Zeus-Scanner/lib/settings.py", line 399, in write_to_log_file
    log.write(data_to_write + "\n")
TypeError: unsupported operand type(s) for +: 'set' and 'str'

Running details:
Linux-4.9.0-kali4-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
./zeus.py -d config.php

Log file info:

2017-10-04 14:14:51,021;zeus-log;INFO;using default search engine...
2017-10-04 14:14:51,021;zeus-log;INFO;starting dork scan with query 'config.php'...
2017-10-04 14:14:51,021;zeus-log;INFO;attempting to gather query URL...
2017-10-04 14:14:51,147;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-04 14:14:51,147;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-04 14:14:55,334;zeus-log;INFO;browser will open shortly...
2017-10-04 14:14:56,023;zeus-log;INFO;searching 'http://google.com' using query 'config.php'...
2017-10-04 14:14:59,197;zeus-log;INFO;closing the browser and continuing process..
2017-10-04 14:14:59,226;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-04 14:14:59,226;zeus-log;INFO;no proxy configuration detected...
2017-10-04 14:14:59,606;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.27.de68)::Python->v2.7'...
2017-10-04 14:14:59,612;zeus-log;INFO;found a total of 5 URL's with a GET parameter...
2017-10-04 14:14:59,612;zeus-log;ERROR;�[7;31;31mran into exception 'unsupported operand type(s) for +: 'set' and 'str''...
Traceback (most recent call last):
  File "./zeus.py", line 410, in <module>
    agent=agent_to_use
  File "/root/Zeus-Scanner/var/google_search/search.py", line 274, in parse_search_results
    write_to_log_file(retval, URL_LOG_PATH, "url-log-{}.log")
  File "/root/Zeus-Scanner/lib/settings.py", line 399, in write_to_log_file
    log.write(data_to_write + "\n")
TypeError: unsupported operand type(s) for +: 'set' and 'str'

2017-10-04 14:15:03,314;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-04 14:15:03,314;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-04 14:15:03,324;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL...

Error info:

  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL...

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -b inurl:php?id=10

Log file info:

2017-10-01 08:02:04,008;zeus-log;INFO;using default search engine...
2017-10-01 08:02:04,008;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL...' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL...

2017-10-01 08:02:04,009;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:02:04,009;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:02:04,010;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

XSS scanner

Under attacks is an empty directory called xss_scan. Creating an XSS scanner will allow us more attacks and allow the program more growing time. If there is a valid XSS scanner with an API that I can create a hook for, please verify the tool and provide a link of it.

TypeError: sequence item 0: expected string, set found

Error info:

  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d inurl:php?id=10 -x --verbose --tamper data

Log file info:

2017-10-01 08:37:44,814;zeus-log;DEBUG;verifying operating system...
2017-10-01 08:37:44,833;zeus-log;DEBUG;already ran, skipping...
2017-10-01 08:37:44,833;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runXssScan': True, 'dorkToUse': 'inurl:php?id=10', 'tamperXssPayloads': 'data'}'...
2017-10-01 08:37:44,834;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-124.log'...
2017-10-01 08:37:44,835;zeus-log;DEBUG;using default search engine (Google)...
2017-10-01 08:37:44,835;zeus-log;INFO;using default search engine...
2017-10-01 08:37:44,835;zeus-log;INFO;starting dork scan with query 'inurl:php?id=10'...
2017-10-01 08:37:44,849;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-01 08:37:44,850;zeus-log;INFO;attempting to gather query URL...
2017-10-01 08:37:44,850;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-01 08:37:45,595;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-01 08:37:45,595;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-01 08:37:45,596;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-01 08:37:45,596;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:38:04,697;zeus-log;INFO;browser will open shortly...
2017-10-01 08:38:06,259;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-01 08:38:06,311;zeus-log;INFO;searching 'http://google.com' using query 'inurl:php?id=10'...
2017-10-01 08:38:09,980;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-01 08:38:09,989;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-01 08:38:09,990;zeus-log;INFO;closing the browser and continuing process..
2017-10-01 08:38:10,711;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-01 08:38:10,711;zeus-log;INFO;no proxy configuration detected...
2017-10-01 08:38:11,175;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:38:11,188;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-01 08:38:11,189;zeus-log;DEBUG;found 'http://www.imagesystems.com.mt/index.php?id=10'...
2017-10-01 08:38:11,189;zeus-log;DEBUG;found 'http://www.icdcprague.org/index.php?id=10'...
2017-10-01 08:38:11,189;zeus-log;DEBUG;found 'http://www.architecturalpapers.ch/index.php?ID=10'...
2017-10-01 08:38:11,189;zeus-log;DEBUG;found 'http://www.marylandfarmlink.com/dynamic_page.php?id=10'...
2017-10-01 08:38:11,190;zeus-log;DEBUG;found 'http://www.katun.me/page.php?id=10'...
2017-10-01 08:38:11,190;zeus-log;DEBUG;found 'http://www.dynatekbikes.com/news.php?id=10'...
2017-10-01 08:38:11,190;zeus-log;DEBUG;found 'https://support.steampowered.com/kb_cat.php?id=10'...
2017-10-01 08:38:11,190;zeus-log;DEBUG;found 'http://www.valiani.com/computerised_detail.php?ID=10'...
2017-10-01 08:38:11,191;zeus-log;DEBUG;found 'http://hkaudio.com/products.php?id=10'...
2017-10-01 08:38:11,191;zeus-log;DEBUG;found 'https://www.eia.gov/todayinenergy/detail.php?id=10'...
2017-10-01 08:38:11,191;zeus-log;INFO;found a total of 11 URL's with a GET parameter...
2017-10-01 08:38:11,191;zeus-log;INFO;saving found URL's under '/home/baal/bin/python/zeus-scanner/log/url-log/url-log-45.log'...
2017-10-01 08:38:13,291;zeus-log;INFO;tampering payloads with 'data'...
2017-10-01 08:38:13,291;zeus-log;WARNING;
2017-10-01 08:38:13,291;zeus-log;INFO;loading payloads...
2017-10-01 08:38:13,373;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-10-01 08:38:13,373;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-10-01 08:38:13,374;zeus-log;ERROR;�[7;31;31mran into exception 'sequence item 0: expected string, set found' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

2017-10-01 08:38:13,406;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:38:13,406;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:38:13,524;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IndexError: list index out of range

Zeus version:
1.0.32

Error info:

  File "zeus.py", line 522, in <module>
    agent=agent_to_use
  File "/home/anonymous/Desktop/Pentest/Tools/Zeus-Scanner/var/google_search/search.py", line 283, in parse_search_results
    url = extract_webcache_url(url)
  File "/home/anonymous/Desktop/Pentest/Tools/Zeus-Scanner/var/google_search/search.py", line 75, in extract_webcache_url
    found = "http:" + to_extract.split(splitter[1])[3]
IndexError: list index out of range

Running details:
Linux-4.10.0-35-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -l dork.txt

Log file info:

2017-10-09 22:31:43,297;zeus-log;INFO;using default search engine...
2017-10-09 22:31:43,298;zeus-log;INFO;starting dork scan with query 'inurl:/general.php?*id=*'...
2017-10-09 22:31:43,298;zeus-log;INFO;attempting to gather query URL...
2017-10-09 22:31:43,485;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-09 22:31:43,486;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-09 22:31:47,107;zeus-log;INFO;browser will open shortly...
2017-10-09 22:31:49,144;zeus-log;INFO;searching 'http://google.com' using query 'inurl:/general.php?*id=*'...
2017-10-09 22:31:52,275;zeus-log;INFO;closing the browser and continuing process..
2017-10-09 22:31:52,313;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-09 22:31:52,313;zeus-log;INFO;no proxy configuration detected...
2017-10-09 22:31:52,842;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.32)::Python->v2.7'...
2017-10-09 22:31:52,847;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-09 22:31:52,848;zeus-log;ERROR;�[7;31;31mran into exception 'list index out of range'...
Traceback (most recent call last):
  File "zeus.py", line 522, in <module>
    agent=agent_to_use
  File "/home/anonymous/Desktop/Pentest/Tools/Zeus-Scanner/var/google_search/search.py", line 283, in parse_search_results
    url = extract_webcache_url(url)
  File "/home/anonymous/Desktop/Pentest/Tools/Zeus-Scanner/var/google_search/search.py", line 75, in extract_webcache_url
    found = "http:" + to_extract.split(splitter[1])[3]
IndexError: list index out of range

2017-10-09 22:32:29,237;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-09 22:32:29,238;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-09 22:32:29,240;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

TypeError: coercing to Unicode: need string or buffer, tuple found

Error info:

  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 143, in main_xss
    with open(filename) as urls:
TypeError: coercing to Unicode: need string or buffer, tuple found

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d incontent:admin -x --verbose

Log file info:

2017-09-30 08:22:11,214;zeus-log;DEBUG;verifying operating system...
2017-09-30 08:22:11,231;zeus-log;DEBUG;already ran, skipping...
2017-09-30 08:22:11,232;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runXssScan': True, 'dorkToUse': 'incontent:admin'}'...
2017-09-30 08:22:11,233;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-100.log'...
2017-09-30 08:22:11,233;zeus-log;DEBUG;using default search engine (Google)...
2017-09-30 08:22:11,233;zeus-log;INFO;using default search engine...
2017-09-30 08:22:11,233;zeus-log;INFO;starting dork scan with query 'incontent:admin'...
2017-09-30 08:22:11,234;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-09-30 08:22:11,234;zeus-log;INFO;attempting to gather query URL...
2017-09-30 08:22:11,234;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-09-30 08:22:11,938;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-09-30 08:22:11,938;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-09-30 08:22:11,938;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-09-30 08:22:11,938;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.23)::Python->v2.7'...
2017-09-30 08:22:33,011;zeus-log;INFO;browser will open shortly...
2017-09-30 08:22:34,688;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-09-30 08:22:34,807;zeus-log;INFO;searching 'http://google.com' using query 'incontent:admin'...
2017-09-30 08:22:38,413;zeus-log;DEBUG;obtaining URL from selenium...
2017-09-30 08:22:38,425;zeus-log;DEBUG;found current URL from selenium browser...
2017-09-30 08:22:38,426;zeus-log;INFO;closing the browser and continuing process..
2017-09-30 08:22:38,926;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-09-30 08:22:38,928;zeus-log;INFO;no proxy configuration detected...
2017-09-30 08:22:39,411;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.23)::Python->v2.7'...
2017-09-30 08:22:39,447;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-09-30 08:22:39,448;zeus-log;DEBUG;found 'http://opensolution.org/forum/?iTopic=2093'...
2017-09-30 08:22:39,448;zeus-log;DEBUG;found 'http://www-01.ibm.com/support/docview.wss?uid=swg22001831'...
2017-09-30 08:22:39,449;zeus-log;INFO;found a total of 3 URL's with a GET parameter...
2017-09-30 08:22:39,449;zeus-log;INFO;saving found URL's under '/home/baal/bin/python/zeus-scanner/log/url-log/url-log-44.log'...
2017-09-30 08:22:41,399;zeus-log;INFO;loading payloads...
2017-09-30 08:22:41,468;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-09-30 08:22:41,488;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-09-30 08:22:41,496;zeus-log;INFO;loaded URL's have been saved to '('/tmp/tmpFjFK26', 'test')'...
2017-09-30 08:22:41,496;zeus-log;INFO;testing for XSS vulnerabilities on host 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-09-30 08:22:41,496;zeus-log;ERROR;�[7;31;31mran into exception 'coercing to Unicode: need string or buffer, tuple found' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 143, in main_xss
    with open(filename) as urls:
TypeError: coercing to Unicode: need string or buffer, tuple found

2017-09-30 08:22:41,526;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-09-30 08:22:41,526;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-09-30 08:22:41,542;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=home/root/Downloads/dork --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:37:19,805;zeus-log;INFO;using default search engine...
2017-10-01 13:37:19,805;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: 'home/root/Downloads/dork'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork'

2017-10-01 13:37:19,806;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:37:19,806;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:37:19,807;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

Error info:

  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -b inurl:php?id=10

Log file info:

2017-10-01 08:00:33,245;zeus-log;INFO;using default search engine...
2017-10-01 08:00:33,245;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

2017-10-01 08:00:33,247;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:00:33,247;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:00:33,264;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 20:59:16,146;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 20:59:16,147;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d "affiliate-agreement.cfm?storeid=" --verbose -s --batch

Log file info:

2017-10-05 20:37:35,059;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:37:35,073;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:37:35,073;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runInBatch': True, 'runSqliScan': True, 'dorkToUse': '"affiliate-agreement.cfm?storeid="'}'...
2017-10-05 20:37:35,075;zeus-log;INFO;log file being saved to '/home/baal/bin/python/testing/zeus-scanner/log/zeus-log-15.log'...
2017-10-05 20:37:35,075;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:37:35,075;zeus-log;INFO;using default search engine...
2017-10-05 20:37:35,075;zeus-log;INFO;starting dork scan with query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:37:35,076;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:37:35,076;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:37:35,076;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:37:37,231;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:37:37,232;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:37:37,232;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:37:37,232;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:38:15,216;zeus-log;INFO;browser will open shortly...
2017-10-05 20:38:17,575;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:38:17,622;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:38:21,222;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:38:21,229;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:38:21,230;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:38:24,483;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:38:24,483;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:38:25,028;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:38:25,052;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:38:25,052;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:38:25,053;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,053;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,053;zeus-log;DEBUG;found 'http://michael-groene.de/engine.php?q=affiliate-agreement.cfm?storeid=''...
2017-10-05 20:38:25,053;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://michael-groene.de/engine.php?q%3Daffiliate-agreement.cfm?storeid%3D'%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,054;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:38:25,055;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,055;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,055;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,057;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,057;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:38:25,058;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,059;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'http://www.hackeroyale.com/sql-injection-attack-tutorial-2/%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:38:25,060;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,060;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'http://www.facebook.com/tito.war.gang/posts/711252405628337%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:38:25,061;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,063;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,063;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:38:25,102;zeus-log;INFO;successfully wrote found items to '/home/baal/bin/python/testing/zeus-scanner/log/url-log/url-log-5.log'...
2017-10-05 20:38:25,133;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:38:51,019;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:51,026;zeus-log;DEBUG;scan initialized...
2017-10-05 20:38:51,027;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:38:51,039;zeus-log;DEBUG;current sqlmap scan ID: '4a653546d7bbdb90'...
2017-10-05 20:38:51,039;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:51,039;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:38:51,039;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:38:56,950;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:39:24,587;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:39:24,597;zeus-log;DEBUG;scan initialized...
2017-10-05 20:39:24,598;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:39:24,606;zeus-log;DEBUG;current sqlmap scan ID: '1b7a2184767d581a4a653546d7bbdb90'...
2017-10-05 20:39:24,606;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:39:24,607;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:39:24,607;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:39:24,613;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:39:24,696;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 20:39:24,696;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 20:39:24,715;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:04:08,100;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:04:08,101;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

Fix file logging issue

Here is an example of the file log:

2017-09-25 12:04:58,051;zeus-log;INFO;�[32mseems this is your first time running the appication, doing setup please wait...�[0m
2017-09-25 12:04:58,178;zeus-log;INFO;�[32mdone, continuing process...�[0m
2017-09-25 12:04:58,179;zeus-log;INFO;�[32mlog file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-34.log'...�[0m
2017-09-25 12:04:58,179;zeus-log;INFO;�[32musing default search engine...�[0m
2017-09-25 12:04:58,179;zeus-log;CRITICAL;�[7;31;31mfailed to provide a mandatory argument, you will be redirected to the help menu...�[0m

Need to create a way to get the unicode characters out of the file log, It comes from the set_color function here and easy way to fix this would be to implement a way to check if the logging is for a file or not.

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:13,542;zeus-log;INFO;getting authorization...
2017-10-05 21:04:13,542;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:19,757;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:19,757;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:21,994;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,000;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:22,000;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:22,012;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:22,013;zeus-log;INFO;starting sqlmap scan on url: 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,013;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:22,013;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:22,021;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:22,024;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:04:22,024;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:04:22,028;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

TypeError: sequence item 0: expected string, set found

Error info:

  File "zeus.py", line 522, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -b http://gosuslugi.ru -x --verbose --tamper data

Log file info:

2017-10-01 08:35:18,152;zeus-log;DEBUG;verifying operating system...
2017-10-01 08:35:18,152;zeus-log;DEBUG;already ran, skipping...
2017-10-01 08:35:18,152;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runXssScan': True, 'spiderWebSite': 'http://gosuslugi.ru', 'tamperXssPayloads': 'data'}'...
2017-10-01 08:35:18,155;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-122.log'...
2017-10-01 08:35:18,155;zeus-log;DEBUG;using default search engine (Google)...
2017-10-01 08:35:18,155;zeus-log;INFO;using default search engine...
2017-10-01 08:35:18,155;zeus-log;INFO;starting blackwidow on 'http://gosuslugi.ru'...
2017-10-01 08:35:18,155;zeus-log;DEBUG;testing connection to the URL...
2017-10-01 08:35:19,374;zeus-log;DEBUG;connection satisfied, continuing process...
2017-10-01 08:35:20,735;zeus-log;INFO;found a total of 29 unique usable URL's, saved to '/home/baal/bin/python/zeus-scanner/log/blackwidow-log/blackwidow-log-6.log'...
2017-10-01 08:35:21,754;zeus-log;INFO;tampering payloads with 'data'...
2017-10-01 08:35:21,754;zeus-log;WARNING;
2017-10-01 08:35:21,755;zeus-log;INFO;loading payloads...
2017-10-01 08:35:21,755;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-10-01 08:35:21,755;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-10-01 08:35:21,758;zeus-log;ERROR;�[7;31;31mran into exception 'sequence item 0: expected string, set found' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 522, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

2017-10-01 08:35:21,760;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:35:21,760;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:35:21,832;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d "affiliate-agreement.cfm?storeid=" --verbose -s --batch

Log file info:

2017-10-05 20:37:35,059;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:37:35,073;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:37:35,073;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runInBatch': True, 'runSqliScan': True, 'dorkToUse': '"affiliate-agreement.cfm?storeid="'}'...
2017-10-05 20:37:35,075;zeus-log;INFO;log file being saved to '/home/baal/bin/python/testing/zeus-scanner/log/zeus-log-15.log'...
2017-10-05 20:37:35,075;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:37:35,075;zeus-log;INFO;using default search engine...
2017-10-05 20:37:35,075;zeus-log;INFO;starting dork scan with query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:37:35,076;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:37:35,076;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:37:35,076;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:37:37,231;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:37:37,232;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:37:37,232;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:37:37,232;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:38:15,216;zeus-log;INFO;browser will open shortly...
2017-10-05 20:38:17,575;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:38:17,622;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:38:21,222;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:38:21,229;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:38:21,230;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:38:24,483;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:38:24,483;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:38:25,028;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:38:25,051;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:38:25,052;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:38:25,052;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:38:25,053;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,053;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,053;zeus-log;DEBUG;found 'http://michael-groene.de/engine.php?q=affiliate-agreement.cfm?storeid=''...
2017-10-05 20:38:25,053;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://michael-groene.de/engine.php?q%3Daffiliate-agreement.cfm?storeid%3D'%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,054;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,054;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:38:25,055;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,055;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,055;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,057;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,057;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:38:25,058;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,059;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'http://www.hackeroyale.com/sql-injection-attack-tutorial-2/%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,059;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:38:25,060;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,060;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'http://www.facebook.com/tito.war.gang/posts/711252405628337%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:38:25,060;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:38:25,061;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:38:25,063;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:25,063;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:38:25,102;zeus-log;INFO;successfully wrote found items to '/home/baal/bin/python/testing/zeus-scanner/log/url-log/url-log-5.log'...
2017-10-05 20:38:25,133;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:38:51,019;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:51,026;zeus-log;DEBUG;scan initialized...
2017-10-05 20:38:51,027;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:38:51,039;zeus-log;DEBUG;current sqlmap scan ID: '4a653546d7bbdb90'...
2017-10-05 20:38:51,039;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:38:51,039;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:38:51,039;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:38:56,950;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:39:24,587;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:39:24,597;zeus-log;DEBUG;scan initialized...
2017-10-05 20:39:24,598;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:39:24,606;zeus-log;DEBUG;current sqlmap scan ID: '1b7a2184767d581a4a653546d7bbdb90'...
2017-10-05 20:39:24,606;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:39:24,607;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:39:24,607;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:39:24,613;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:39:24,696;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:39:24,696;zeus-log;INFO;getting authorization...
2017-10-05 20:39:24,715;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:39:26,008;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:39:26,009;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:39:33,119;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:39:33,124;zeus-log;DEBUG;scan initialized...
2017-10-05 20:39:33,124;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:39:33,130;zeus-log;DEBUG;current sqlmap scan ID: '1b7a2184767d581a4a653546d7bbdb900c394413a46fbf25'...
2017-10-05 20:39:33,130;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:39:33,130;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:39:33,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:39:33,137;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/home/baal/bin/python/testing/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:39:33,138;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 20:39:33,138;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 20:39:33,138;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

not a bug but a disadvantage

Hello
the disadvantage is that when we search for urls using dorks , zeus finds only 10 or 11 urls and stops ( it's as if zeus is just looking only in the first page )
it will be nice if you can increase the number of results
and why not adding an argument which will configure the number of pages will it scan (like in atscan == --level / -l | Scan level (+- Number of page results to scan)

Program install error!

Hello i got this error while trying to use zeus script :/

~$ sudo ./zeus.py -d inutl:php?id=

[03:35:34 INFO] using default search engine...
[03:35:34 INFO] starting dork scan with query '.php?id='...
[03:35:34 INFO] attempting to gather query URL...
[03:35:34 ERROR] search.pyc failed to gather the URL from search engine, caught exception 'cmd=['Xvfb', '-help']
OSError=[Errno 2] No such file or directory
Program install error!' exception has been logged to current log file...
Traceback (most recent call last):
  File "/home/username/Pentest/Zeus-Scanner/var/google_search/search.py", line 170, in parse_search_results
    query_url = get_urls(query, url, verbose=verbose, user_agent=user_agent, proxy=proxy_string)
  File "/home/username/Pentest/Zeus-Scanner/var/google_search/search.py", line 36, in get_urls
    ff_display = Display(visible=0, size=(800, 600))
  File "/usr/local/lib/python2.7/dist-packages/pyvirtualdisplay/display.py", line 34, in __init__
    self._obj = self.display_class(
  File "/usr/local/lib/python2.7/dist-packages/pyvirtualdisplay/display.py", line 52, in display_class
    cls.check_installed()
  File "/usr/local/lib/python2.7/dist-packages/pyvirtualdisplay/xvfb.py", line 38, in check_installed
    ubuntu_package=PACKAGE).check_installed()
  File "/usr/local/lib/python2.7/dist-packages/easyprocess/__init__.py", line 180, in check_installed
    raise EasyProcessCheckInstalledError(self)
EasyProcessCheckInstalledError: cmd=['Xvfb', '-help']
OSError=[Errno 2] No such file or directory
Program install error! 

Additional info:

  • Os: Elementary Os (based on ubuntu)
  • sqlmap and nmap installed and updated
  • all requirements have been installed

TypeError: coercing to Unicode: need string or buffer, NoneType found

Zeus version:
1.0.31

Error info:

  File "./zeus.py", line 494, in <module>
    __run_attacks_main()
  File "./zeus.py", line 431, in __run_attacks_main
    with open(urls_to_use) as urls:
TypeError: coercing to Unicode: need string or buffer, NoneType found

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
./zeus.py -d texas -M -B -s -L 25

Log file info:

2017-10-08 05:19:10,425;zeus-log;INFO;using default search engine...
2017-10-08 05:19:10,426;zeus-log;INFO;searching Google using dork 'texas' for a total of 25 links...
2017-10-08 05:19:10,427;zeus-log;WARNING;multiple pages will be searched using Google's API client, searches may be blocked after a certain amount of time...
2017-10-08 05:19:17,625;zeus-log;ERROR;unable to extract URL's from results...
2017-10-08 05:19:17,626;zeus-log;ERROR;unable to run attacks appears that no file was created for the retrieved data...
2017-10-08 05:19:17,626;zeus-log;ERROR;�[7;31;31mran into exception 'coercing to Unicode: need string or buffer, NoneType found' exception has been saved to log file...
Traceback (most recent call last):
  File "./zeus.py", line 494, in <module>
    __run_attacks_main()
  File "./zeus.py", line 431, in __run_attacks_main
    with open(urls_to_use) as urls:
TypeError: coercing to Unicode: need string or buffer, NoneType found

2017-10-08 05:20:32,116;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-08 05:20:32,116;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-08 05:20:32,118;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:13,542;zeus-log;INFO;getting authorization...
2017-10-05 21:04:13,542;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:19,757;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:19,757;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:21,994;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,000;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:22,000;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:22,012;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:22,013;zeus-log;INFO;starting sqlmap scan on url: 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,013;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:22,013;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:22,021;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:22,024;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:22,024;zeus-log;INFO;getting authorization...
2017-10-05 21:04:22,028;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:23,336;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:23,337;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:23,337;zeus-log;INFO;initializing new sqlmap scan with given URL 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,344;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:23,344;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:23,354;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae00184a213e2aa67e81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:23,354;zeus-log;INFO;starting sqlmap scan on url: 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,354;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:23,354;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:23,365;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:23,368;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:23,369;zeus-log;INFO;getting authorization...
2017-10-05 21:04:23,369;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:25,046;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:25,046;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:25,047;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,053;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:25,053;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:25,066;zeus-log;DEBUG;current sqlmap scan ID: 'd98f03511104caae00184a213e2aa67e81840d1125eb527ef260a1796fce93d8470c86732f5d61966a471ca937c1652b'...
2017-10-05 21:04:25,066;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,067;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:25,067;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:25,076;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:25,078;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:04:25,078;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:04:25,078;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:13,542;zeus-log;INFO;getting authorization...
2017-10-05 21:04:13,542;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:19,757;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:19,757;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:21,994;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,000;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:22,000;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:22,012;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:22,013;zeus-log;INFO;starting sqlmap scan on url: 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,013;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:22,013;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:22,021;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:22,024;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:22,024;zeus-log;INFO;getting authorization...
2017-10-05 21:04:22,028;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:23,336;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:23,337;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:23,337;zeus-log;INFO;initializing new sqlmap scan with given URL 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,344;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:23,344;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:23,354;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae00184a213e2aa67e81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:23,354;zeus-log;INFO;starting sqlmap scan on url: 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,354;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:23,354;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:23,365;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:23,368;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:23,369;zeus-log;INFO;getting authorization...
2017-10-05 21:04:23,369;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:25,046;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:25,046;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:25,047;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,053;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:25,053;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:25,066;zeus-log;DEBUG;current sqlmap scan ID: 'd98f03511104caae00184a213e2aa67e81840d1125eb527ef260a1796fce93d8470c86732f5d61966a471ca937c1652b'...
2017-10-05 21:04:25,066;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,067;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:25,067;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:25,076;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:25,078;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:25,078;zeus-log;INFO;getting authorization...
2017-10-05 21:04:25,078;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:31,272;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:31,272;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:43,488;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 21:04:43,495;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:43,496;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:43,503;zeus-log;DEBUG;current sqlmap scan ID: '9fce478a3d51810e'...
2017-10-05 21:04:43,504;zeus-log;INFO;starting sqlmap scan on url: 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 21:04:43,504;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:43,504;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:05:27,446;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:18:11,276;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 21:18:11,283;zeus-log;DEBUG;scan initialized...
2017-10-05 21:18:11,283;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:18:11,292;zeus-log;DEBUG;current sqlmap scan ID: '9fce478a3d51810eda495a2b56233f21'...
2017-10-05 21:18:11,292;zeus-log;INFO;starting sqlmap scan on url: 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 21:18:11,292;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:18:11,293;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:18:11,302;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:18:11,303;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:18:11,304;zeus-log;INFO;getting authorization...
2017-10-05 21:18:11,304;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:18:12,383;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:18:12,389;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:18:24,227;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 21:18:24,235;zeus-log;DEBUG;scan initialized...
2017-10-05 21:18:24,235;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:18:24,243;zeus-log;DEBUG;current sqlmap scan ID: 'b78546999caf5b759fce478a3d51810eda495a2b56233f21'...
2017-10-05 21:18:24,243;zeus-log;INFO;starting sqlmap scan on url: 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 21:18:24,244;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:18:24,244;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:18:24,253;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:18:24,255;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:18:24,255;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:18:24,256;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IOError: [Errno 2] No such file or directory: '/usr/lib/firefoxdriver/webdriver.xpi'

Zeus version:
1.0.31

Error info:

  File "/home/hacker/Document/tools/Zeus-Scanner/var/google_search/search.py", line 241, in parse_search_results
    query_url = get_urls(query, url_to_search, verbose=verbose, user_agent=user_agent, proxy=proxy_string)
  File "/home/hacker/Document/tools/Zeus-Scanner/var/google_search/search.py", line 129, in get_urls
    browser = webdriver.Firefox(profile, proxy=proxy_to_use)
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/webdriver.py", line 77, in __init__
    self.binary, timeout),
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/extension_connection.py", line 47, in __init__
    self.profile.add_extension()
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_profile.py", line 91, in add_extension
    self._install_extension(extension)
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_profile.py", line 251, in _install_extension
    compressed_file = zipfile.ZipFile(addon, 'r')
  File "/usr/lib/python2.7/zipfile.py", line 756, in __init__
    self.fp = open(file, modeDict[mode])
IOError: [Errno 2] No such file or directory: '/usr/lib/firefoxdriver/webdriver.xpi'

Running details:
Linux-4.4.0-96-generic-x86_64-with-Ubuntu-16.04-xenial

Commands used:
zeus.py -d inurl:id

Log file info:

2017-10-08 15:17:48,862;zeus-log;INFO;using default search engine...
2017-10-08 15:17:48,862;zeus-log;INFO;starting dork scan with query 'inurl:id'...
2017-10-08 15:17:48,862;zeus-log;INFO;attempting to gather query URL...
2017-10-08 15:17:48,977;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-08 15:17:48,977;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-08 15:17:48,978;zeus-log;ERROR;�[7;31;31msearch.pyc failed to gather the URL from search engine, caught exception '[Errno 2] No such file or directory: '/usr/lib/firefoxdriver/webdriver.xpi'' exception has been logged to current log file...
Traceback (most recent call last):
  File "/home/hacker/Document/tools/Zeus-Scanner/var/google_search/search.py", line 241, in parse_search_results
    query_url = get_urls(query, url_to_search, verbose=verbose, user_agent=user_agent, proxy=proxy_string)
  File "/home/hacker/Document/tools/Zeus-Scanner/var/google_search/search.py", line 129, in get_urls
    browser = webdriver.Firefox(profile, proxy=proxy_to_use)
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/webdriver.py", line 77, in __init__
    self.binary, timeout),
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/extension_connection.py", line 47, in __init__
    self.profile.add_extension()
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_profile.py", line 91, in add_extension
    self._install_extension(extension)
  File "/usr/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_profile.py", line 251, in _install_extension
    compressed_file = zipfile.ZipFile(addon, 'r')
  File "/usr/lib/python2.7/zipfile.py", line 756, in __init__
    self.fp = open(file, modeDict[mode])
IOError: [Errno 2] No such file or directory: '/usr/lib/firefoxdriver/webdriver.xpi'

2017-10-08 15:17:56,881;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-08 15:17:56,881;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-08 15:17:56,881;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

Error info:

  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -b inurl:php?id=10

Log file info:

2017-10-01 07:59:20,523;zeus-log;INFO;using default search engine...
2017-10-01 07:59:20,523;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL issue seems to be that http:// or https:// is not present in the URL......

2017-10-01 07:59:20,524;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 07:59:20,524;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 07:59:20,525;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IOError: [Errno 2] No such file or directory: '/Desktop/dork/dork.txt'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Desktop/dork/dork.txt'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=/Desktop/dork/dork.txt --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:33:51,797;zeus-log;INFO;using default search engine...
2017-10-01 13:33:51,798;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: '/Desktop/dork/dork.txt'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Desktop/dork/dork.txt'

2017-10-01 13:33:51,798;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:33:51,798;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:33:51,798;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

UnboundLocalError: local variable 'data' referenced before assignment

Error info:```Traceback (most recent call last):
File "zeus.py", line 417, in
auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
File "zeus.py", line 380, in __run_attacks
main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/init.py", line 131, in main_xss
filename = create_urls(start_url, payloads, tamper=tamper)
File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/init.py", line 86, in create_urls
return tf_name, data
UnboundLocalError: local variable 'data' referenced before assignment


Running details:
`Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty`

Commands used:
`zeus.py -d incontent:admin -x --verbose`

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:13,542;zeus-log;INFO;getting authorization...
2017-10-05 21:04:13,542;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:19,757;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:19,757;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:21,994;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,000;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:22,000;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:22,012;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:22,013;zeus-log;INFO;starting sqlmap scan on url: 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,013;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:22,013;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:22,021;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:22,024;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:22,024;zeus-log;INFO;getting authorization...
2017-10-05 21:04:22,028;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:23,336;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:23,337;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:23,337;zeus-log;INFO;initializing new sqlmap scan with given URL 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,344;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:23,344;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:23,354;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae00184a213e2aa67e81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:23,354;zeus-log;INFO;starting sqlmap scan on url: 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,354;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:23,354;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:23,365;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:23,368;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:23,369;zeus-log;INFO;getting authorization...
2017-10-05 21:04:23,369;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:25,046;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:25,046;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:25,047;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,053;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:25,053;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:25,066;zeus-log;DEBUG;current sqlmap scan ID: 'd98f03511104caae00184a213e2aa67e81840d1125eb527ef260a1796fce93d8470c86732f5d61966a471ca937c1652b'...
2017-10-05 21:04:25,066;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 21:04:25,067;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:25,067;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:25,076;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:25,078;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:25,078;zeus-log;INFO;getting authorization...
2017-10-05 21:04:25,078;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:31,272;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:31,272;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:43,488;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 21:04:43,495;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:43,496;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:43,503;zeus-log;DEBUG;current sqlmap scan ID: '9fce478a3d51810e'...
2017-10-05 21:04:43,504;zeus-log;INFO;starting sqlmap scan on url: 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 21:04:43,504;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:43,504;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:05:27,446;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:18:11,276;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 21:18:11,283;zeus-log;DEBUG;scan initialized...
2017-10-05 21:18:11,283;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:18:11,292;zeus-log;DEBUG;current sqlmap scan ID: '9fce478a3d51810eda495a2b56233f21'...
2017-10-05 21:18:11,292;zeus-log;INFO;starting sqlmap scan on url: 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 21:18:11,292;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:18:11,293;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:18:11,302;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:18:11,303;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:18:11,304;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:18:11,304;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

InvalidInputProvided: URL did not match a true URL...

Error info:

  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -b inurl:php?id=10

Log file info:

2017-10-01 07:56:23,660;zeus-log;INFO;using default search engine...
2017-10-01 07:56:23,661;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL...' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 498, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

2017-10-01 07:56:23,661;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 07:56:23,661;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 07:56:23,681;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

TypeError: sequence item 0: expected string, set found

Error info:

  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d inurl:php?id=10 -x --verbose --tamper data

Log file info:

2017-10-01 08:43:22,370;zeus-log;DEBUG;verifying operating system...
2017-10-01 08:43:22,370;zeus-log;DEBUG;already ran, skipping...
2017-10-01 08:43:22,370;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runXssScan': True, 'dorkToUse': 'inurl:php?id=10', 'tamperXssPayloads': 'data'}'...
2017-10-01 08:43:22,371;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-127.log'...
2017-10-01 08:43:22,371;zeus-log;DEBUG;using default search engine (Google)...
2017-10-01 08:43:22,372;zeus-log;INFO;using default search engine...
2017-10-01 08:43:22,372;zeus-log;INFO;starting dork scan with query 'inurl:php?id=10'...
2017-10-01 08:43:22,372;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-01 08:43:22,372;zeus-log;INFO;attempting to gather query URL...
2017-10-01 08:43:22,372;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-01 08:43:22,506;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-01 08:43:22,507;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-01 08:43:22,507;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-01 08:43:22,508;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:43:32,392;zeus-log;INFO;browser will open shortly...
2017-10-01 08:43:33,580;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-01 08:43:33,630;zeus-log;INFO;searching 'http://google.com' using query 'inurl:php?id=10'...
2017-10-01 08:43:37,298;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-01 08:43:37,308;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-01 08:43:37,309;zeus-log;INFO;closing the browser and continuing process..
2017-10-01 08:43:37,361;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-01 08:43:37,361;zeus-log;INFO;no proxy configuration detected...
2017-10-01 08:43:37,780;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:43:37,785;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-01 08:43:37,786;zeus-log;DEBUG;found 'http://www.imagesystems.com.mt/index.php?id=10'...
2017-10-01 08:43:37,786;zeus-log;DEBUG;found 'http://www.icdcprague.org/index.php?id=10'...
2017-10-01 08:43:37,787;zeus-log;DEBUG;found 'http://www.architecturalpapers.ch/index.php?ID=10'...
2017-10-01 08:43:37,787;zeus-log;DEBUG;found 'http://www.marylandfarmlink.com/dynamic_page.php?id=10'...
2017-10-01 08:43:37,787;zeus-log;DEBUG;found 'http://www.katun.me/page.php?id=10'...
2017-10-01 08:43:37,788;zeus-log;DEBUG;found 'http://www.dynatekbikes.com/news.php?id=10'...
2017-10-01 08:43:37,788;zeus-log;DEBUG;found 'https://support.steampowered.com/kb_cat.php?id=10'...
2017-10-01 08:43:37,788;zeus-log;DEBUG;found 'http://www.valiani.com/computerised_detail.php?ID=10'...
2017-10-01 08:43:37,789;zeus-log;DEBUG;found 'http://hkaudio.com/products.php?id=10'...
2017-10-01 08:43:37,789;zeus-log;DEBUG;found 'https://www.eia.gov/todayinenergy/detail.php?id=10'...
2017-10-01 08:43:37,789;zeus-log;INFO;found a total of 11 URL's with a GET parameter...
2017-10-01 08:43:37,789;zeus-log;INFO;saving found URL's under '/home/baal/bin/python/zeus-scanner/log/url-log/url-log-47.log'...
2017-10-01 08:43:40,307;zeus-log;INFO;tampering payloads with 'data'...
2017-10-01 08:43:40,307;zeus-log;WARNING;
2017-10-01 08:43:40,307;zeus-log;INFO;loading payloads...
2017-10-01 08:43:40,308;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-10-01 08:43:40,308;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-10-01 08:43:40,309;zeus-log;ERROR;�[7;31;31mran into exception 'sequence item 0: expected string, set found' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

2017-10-01 08:43:40,311;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:43:40,311;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:43:40,314;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

TypeError: sequence item 0: expected string, set found

Error info:

  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d inurl:php?id=10 -x --verbose --tamper data

Log file info:

2017-10-01 08:41:15,050;zeus-log;DEBUG;verifying operating system...
2017-10-01 08:41:15,068;zeus-log;DEBUG;already ran, skipping...
2017-10-01 08:41:15,069;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'runXssScan': True, 'dorkToUse': 'inurl:php?id=10', 'tamperXssPayloads': 'data'}'...
2017-10-01 08:41:15,070;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-126.log'...
2017-10-01 08:41:15,070;zeus-log;DEBUG;using default search engine (Google)...
2017-10-01 08:41:15,070;zeus-log;INFO;using default search engine...
2017-10-01 08:41:15,070;zeus-log;INFO;starting dork scan with query 'inurl:php?id=10'...
2017-10-01 08:41:15,085;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-01 08:41:15,085;zeus-log;INFO;attempting to gather query URL...
2017-10-01 08:41:15,085;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-01 08:41:15,664;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-01 08:41:15,665;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-01 08:41:15,665;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-01 08:41:15,665;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:41:53,137;zeus-log;INFO;browser will open shortly...
2017-10-01 08:41:54,461;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-01 08:41:54,524;zeus-log;INFO;searching 'http://google.com' using query 'inurl:php?id=10'...
2017-10-01 08:41:58,377;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-01 08:41:58,387;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-01 08:41:58,387;zeus-log;INFO;closing the browser and continuing process..
2017-10-01 08:41:58,485;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-01 08:41:58,485;zeus-log;INFO;no proxy configuration detected...
2017-10-01 08:41:58,942;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 08:41:59,033;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-01 08:41:59,034;zeus-log;DEBUG;found 'http://www.imagesystems.com.mt/index.php?id=10'...
2017-10-01 08:41:59,035;zeus-log;DEBUG;found 'http://www.icdcprague.org/index.php?id=10'...
2017-10-01 08:41:59,036;zeus-log;DEBUG;found 'http://www.architecturalpapers.ch/index.php?ID=10'...
2017-10-01 08:41:59,036;zeus-log;DEBUG;found 'http://www.marylandfarmlink.com/dynamic_page.php?id=10'...
2017-10-01 08:41:59,037;zeus-log;DEBUG;found 'http://www.katun.me/page.php?id=10'...
2017-10-01 08:41:59,038;zeus-log;DEBUG;found 'http://www.dynatekbikes.com/news.php?id=10'...
2017-10-01 08:41:59,039;zeus-log;DEBUG;found 'https://support.steampowered.com/kb_cat.php?id=10'...
2017-10-01 08:41:59,040;zeus-log;DEBUG;found 'http://www.valiani.com/computerised_detail.php?ID=10'...
2017-10-01 08:41:59,040;zeus-log;DEBUG;found 'http://hkaudio.com/products.php?id=10'...
2017-10-01 08:41:59,041;zeus-log;DEBUG;found 'https://www.eia.gov/todayinenergy/detail.php?id=10'...
2017-10-01 08:41:59,042;zeus-log;INFO;found a total of 11 URL's with a GET parameter...
2017-10-01 08:41:59,042;zeus-log;INFO;saving found URL's under '/home/baal/bin/python/zeus-scanner/log/url-log/url-log-46.log'...
2017-10-01 08:42:02,141;zeus-log;INFO;tampering payloads with 'data'...
2017-10-01 08:42:02,142;zeus-log;WARNING;
2017-10-01 08:42:02,142;zeus-log;INFO;loading payloads...
2017-10-01 08:42:02,175;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-10-01 08:42:02,175;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-10-01 08:42:02,176;zeus-log;ERROR;�[7;31;31mran into exception 'sequence item 0: expected string, set found' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 83, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 68, in __tamper_payload
    tamper_type, ", ".join(list(acceptable))
TypeError: sequence item 0: expected string, set found

2017-10-01 08:42:02,208;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 08:42:02,208;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 08:42:02,227;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

Got IP banned using google search

Hi,

Thank you guys for sharing your work.

I just tested Zeus with the example dork shown in readme and the search was banned after 3 dorks.
zeus

I want to know is that normal with Zeus? Since in the description it says it is able to bypass the IP banned when search with Google.

P.S: Before Zeus, I have also tested some other google dork scraper solutions, but no one works with google dork (Problem of search ban with captcha). Even if the query is sent from a browser every time with a new sessions and no cache, Google can also detect scraping action.

IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork.txt'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork.txt'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=home/root/Downloads/dork.txt --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:36:55,496;zeus-log;INFO;using default search engine...
2017-10-01 13:36:55,496;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: 'home/root/Downloads/dork.txt'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: 'home/root/Downloads/dork.txt'

2017-10-01 13:36:55,496;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:36:55,496;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:36:55,496;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=/Downloads/dork.txt --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:35:39,275;zeus-log;INFO;using default search engine...
2017-10-01 13:35:39,275;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: '/Downloads/dork.txt'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

2017-10-01 13:35:39,275;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:35:39,275;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:35:39,276;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:13,542;zeus-log;INFO;getting authorization...
2017-10-05 21:04:13,542;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:19,757;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:19,757;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:21,994;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,000;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:22,000;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:22,012;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:22,013;zeus-log;INFO;starting sqlmap scan on url: 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:22,013;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:22,013;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:22,021;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:22,024;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:22,024;zeus-log;INFO;getting authorization...
2017-10-05 21:04:22,028;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:23,336;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:23,337;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:23,337;zeus-log;INFO;initializing new sqlmap scan with given URL 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,344;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:23,344;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:23,354;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d8d98f03511104caae00184a213e2aa67e81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:23,354;zeus-log;INFO;starting sqlmap scan on url: 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 21:04:23,354;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:23,354;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:23,365;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:23,368;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:04:23,369;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:04:23,369;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

UnboundLocalError: local variable 'data' referenced before assignment

Error info:

  File "zeus.py", line 417, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 131, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 86, in create_urls
    return tf_name, data
UnboundLocalError: local variable 'data' referenced before assignment

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d incontent:admin -x --verbose

IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=/Downloads/dork.txt --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:35:28,973;zeus-log;INFO;using default search engine...
2017-10-01 13:35:28,974;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: '/Downloads/dork.txt'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/Downloads/dork.txt'

2017-10-01 13:35:28,974;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:35:28,974;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:35:28,975;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

return tf_name, data

Error info:Traceback (most recent call last):
File "zeus.py", line 417, in
auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
File "zeus.py", line 380, in __run_attacks
main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/init.py", line 131, in main_xss
filename = create_urls(start_url, payloads, tamper=tamper)
File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/init.py", line 86, in create_urls
return tf_name, data
UnboundLocalError: local variable 'data' referenced before assignment

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d incontent:admin -x --verbose

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:06,603;zeus-log;INFO;getting authorization...
2017-10-05 20:59:06,620;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:10,553;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:10,553;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:16,109;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,117;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:16,117;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:16,129;zeus-log;DEBUG;current sqlmap scan ID: '3fa65ea246cc49799201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:16,129;zeus-log;INFO;starting sqlmap scan on url: 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:59:16,129;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:16,130;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:16,143;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:16,146;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 20:59:16,146;zeus-log;INFO;getting authorization...
2017-10-05 20:59:16,147;zeus-log;INFO;extracting traceback from log file...
2017-10-05 20:59:17,169;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 20:59:17,169;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:28,764;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,770;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:28,771;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:28,778;zeus-log;DEBUG;current sqlmap scan ID: '6a471ca937c1652b'...
2017-10-05 20:59:28,778;zeus-log;INFO;starting sqlmap scan on url: 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:28,778;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:28,779;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:34,537;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:08,074;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,082;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:08,082;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:08,090;zeus-log;DEBUG;current sqlmap scan ID: '81840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:08,090;zeus-log;INFO;starting sqlmap scan on url: 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 21:04:08,090;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:08,091;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:08,099;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:08,100;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-05 21:04:08,100;zeus-log;INFO;getting authorization...
2017-10-05 21:04:08,101;zeus-log;INFO;extracting traceback from log file...
2017-10-05 21:04:09,656;zeus-log;INFO;issue has been created successfully with the following name 'KeyError: 'status''...
2017-10-05 21:04:09,657;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 21:04:13,506;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,513;zeus-log;DEBUG;scan initialized...
2017-10-05 21:04:13,513;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 21:04:13,525;zeus-log;DEBUG;current sqlmap scan ID: 'f260a1796fce93d881840d1125eb527e6a471ca937c1652b'...
2017-10-05 21:04:13,526;zeus-log;INFO;starting sqlmap scan on url: 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 21:04:13,526;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 21:04:13,527;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 21:04:13,540;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 21:04:13,542;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 21:04:13,542;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 21:04:13,542;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

Test issue #1

What's the problem

This is a test

Running context

  • Operating system: test
  • Zeus version: test

Any idea on a solution?

test

Full console commands run

test

Stacktrace (if applicable)

test

Full file log information

test

InvalidInputProvided: URL did not match a true URL...

Error info:

  File "zeus.py", line 497, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
zeus.py -b gosuslugi.ru -s -a -x

Log file info:

2017-10-01 01:31:09,332;zeus-log;INFO;using default search engine...
2017-10-01 01:31:09,332;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL...' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 497, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

2017-10-01 01:31:09,332;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 01:31:09,333;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 01:31:09,354;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IndexError: list index out of range

Error info:

  File "zeus.py", line 401, in <module>
    agent=agent_to_use
  File "/home/baal/bin/python/zeus-scanner/var/google_search/search.py", line 238, in parse_search_results
    request_issue_creation()
  File "/home/baal/bin/python/zeus-scanner/var/auto_issue/github.py", line 70, in request_issue_creation
    issue_title = stacktrace.split("\n")[-2]
IndexError: list index out of range

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d inurl:?cart= -s --verbose --sqlmap-args=randomAgent true,tor true,checkTor true,level 5,risk 5,dropSetCookie true

Log file info:

2017-10-01 09:10:15,262;zeus-log;DEBUG;verifying operating system...
2017-10-01 09:10:15,279;zeus-log;DEBUG;already ran, skipping...
2017-10-01 09:10:15,279;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'sqlmapArguments': 'randomAgent true,tor true,checkTor true,level 5,risk 5,dropSetCookie true', 'runSqliScan': True, 'dorkToUse': 'inurl:?cart='}'...
2017-10-01 09:10:15,281;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-142.log'...
2017-10-01 09:10:15,281;zeus-log;DEBUG;using default search engine (Google)...
2017-10-01 09:10:15,281;zeus-log;INFO;using default search engine...
2017-10-01 09:10:15,281;zeus-log;INFO;starting dork scan with query 'inurl:?cart='...
2017-10-01 09:10:15,281;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-01 09:10:15,281;zeus-log;INFO;attempting to gather query URL...
2017-10-01 09:10:15,282;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-01 09:10:15,470;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-01 09:10:15,471;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-01 09:10:15,471;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-01 09:10:15,471;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.25.fe911)::Python->v2.7'...
2017-10-01 09:10:29,269;zeus-log;INFO;browser will open shortly...
2017-10-01 09:10:30,471;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-01 09:10:30,551;zeus-log;INFO;searching 'http://google.com' using query 'inurl:?cart='...
2017-10-01 09:10:34,184;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-01 09:10:34,193;zeus-log;WARNING;it appears that Google is attempting to block your IP address, attempting bypass...
2017-10-01 09:10:34,249;zeus-log;WARNING;for now IP ban bypassing will only work for most queries that contain Google advanced search syntax (inurl:, etc..) it appears you have found a URL that is not implemented yet...

2017-10-01 09:10:34,251;zeus-log;INFO;Zeus got an unexpected error and will automatically create an issue for this error, please wait...
2017-10-01 09:10:34,251;zeus-log;INFO;getting authorization...
2017-10-01 09:10:34,365;zeus-log;INFO;extracting traceback from log file...
2017-10-01 09:10:34,365;zeus-log;ERROR;�[7;31;31mran into exception 'list index out of range'...
Traceback (most recent call last):
  File "zeus.py", line 401, in <module>
    agent=agent_to_use
  File "/home/baal/bin/python/zeus-scanner/var/google_search/search.py", line 238, in parse_search_results
    request_issue_creation()
  File "/home/baal/bin/python/zeus-scanner/var/auto_issue/github.py", line 70, in request_issue_creation
    issue_title = stacktrace.split("\n")[-2]
IndexError: list index out of range

2017-10-01 09:10:34,701;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 09:10:34,701;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 09:10:34,702;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

TypeError: object of type 'int' has no len()

Error info:

  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 109, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 60, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper, warning=True)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 40, in __tamper_payload
    return tamper_script.tamper(payload, warning=warning)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/tamper_scripts/randomcase_encode.py", line 15, in tamper
    if random.choice(random_int) == 1:
  File "/usr/lib/python2.7/random.py", line 275, in choice
    return seq[int(self.random() * len(seq))]  # raises IndexError if seq is empty
TypeError: object of type 'int' has no len()

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d incontent:data_files -x --tamper randomcase --random-agent --verbose

Log file info:

2017-10-02 10:40:03,991;zeus-log;DEBUG;verifying operating system...
2017-10-02 10:40:03,991;zeus-log;DEBUG;already ran, skipping...
2017-10-02 10:40:03,992;zeus-log;DEBUG;running with options '{'runInVerbose': True, 'useRandomAgent': True, 'runXssScan': True, 'dorkToUse': 'incontent:data_files', 'tamperXssPayloads': 'randomcase'}'...
2017-10-02 10:40:03,993;zeus-log;INFO;log file being saved to '/home/baal/bin/python/zeus-scanner/log/zeus-log-161.log'...
2017-10-02 10:40:03,994;zeus-log;DEBUG;grabbing random user-agent from '/home/baal/bin/python/zeus-scanner/etc/agents.txt'...
2017-10-02 10:40:03,995;zeus-log;DEBUG;using default search engine (Google)...
2017-10-02 10:40:03,995;zeus-log;INFO;using default search engine...
2017-10-02 10:40:03,995;zeus-log;INFO;starting dork scan with query 'incontent:data_files'...
2017-10-02 10:40:03,996;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-02 10:40:03,996;zeus-log;INFO;attempting to gather query URL...
2017-10-02 10:40:03,996;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-02 10:40:04,272;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-02 10:40:04,273;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-02 10:40:04,273;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-02 10:40:04,273;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'...
2017-10-02 10:40:57,241;zeus-log;INFO;browser will open shortly...
2017-10-02 10:41:00,940;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-02 10:41:01,585;zeus-log;INFO;searching 'http://google.com' using query 'incontent:data_files'...
2017-10-02 10:41:05,678;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-02 10:41:10,525;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-02 10:41:10,526;zeus-log;INFO;closing the browser and continuing process..
2017-10-02 10:41:13,915;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-02 10:41:13,916;zeus-log;INFO;no proxy configuration detected...
2017-10-02 10:41:14,860;zeus-log;INFO;adjusting user-agent header to Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10...
2017-10-02 10:41:15,031;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-02 10:41:15,032;zeus-log;DEBUG;found 'http://apps.who.int/healthinfo/systems/surveydata/index.php/catalog/65/datafile/F9/?limit=100&offset=1600'...
2017-10-02 10:41:15,033;zeus-log;INFO;found a total of 2 URL's with a GET parameter...
2017-10-02 10:41:15,033;zeus-log;INFO;saving found URL's under '/home/baal/bin/python/zeus-scanner/log/url-log/url-log-57.log'...
2017-10-02 10:42:04,394;zeus-log;INFO;tampering payloads with 'randomcase'...
2017-10-02 10:42:04,394;zeus-log;INFO;loading payloads...
2017-10-02 10:42:04,615;zeus-log;DEBUG;a total of 298 payloads loaded...
2017-10-02 10:42:04,615;zeus-log;INFO;payloads will be written to a temporary file and read from there...
2017-10-02 10:42:04,709;zeus-log;ERROR;�[7;31;31mran into exception 'object of type 'int' has no len()' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 419, in <module>
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 380, in __run_attacks
    main_xss(url, verbose=verbose, proxy=proxy_to_use, agent=agent_to_use, tamper=opt.tamperXssPayloads)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 109, in main_xss
    filename = create_urls(start_url, payloads, tamper=tamper)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 60, in create_urls
    payload = __tamper_payload(payload, tamper_type=tamper, warning=True)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/xss_scan/__init__.py", line 40, in __tamper_payload
    return tamper_script.tamper(payload, warning=warning)
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/tamper_scripts/randomcase_encode.py", line 15, in tamper
    if random.choice(random_int) == 1:
  File "/usr/lib/python2.7/random.py", line 275, in choice
    return seq[int(self.random() * len(seq))]  # raises IndexError if seq is empty
TypeError: object of type 'int' has no len()

2017-10-02 10:42:04,829;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-02 10:42:04,830;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-02 10:42:04,910;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IOError: [Errno 2] No such file or directory: '/desktop/dork/dork.txt'

Error info:

  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/desktop/dork/dork.txt'

Running details:
Linux-4.12.0-kali1-amd64-x86_64-with-Kali-kali-rolling-kali-rolling

Commands used:
zeus.py --dork-list=/desktop/dork/dork.txt --blackwidow=https://onat.edu.ua -x

Log file info:

2017-10-01 13:33:12,610;zeus-log;INFO;using default search engine...
2017-10-01 13:33:12,611;zeus-log;ERROR;�[7;31;31mran into exception '[Errno 2] No such file or directory: '/desktop/dork/dork.txt'' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 424, in <module>
    with open(opt.dorkFileToUse) as dorks:
IOError: [Errno 2] No such file or directory: '/desktop/dork/dork.txt'

2017-10-01 13:33:12,611;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 13:33:12,611;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 13:33:12,615;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

urlparse

[*] starting up at 20:22:21..

[20:22:21 INFO] log file being saved to '/home/username/Downloads/Zeus-Scanner/log/zeus-log-48.log'...
[20:22:21 INFO] using default search engine...
[20:22:21 CRITICAL] failed to provide a mandatory argument, you will be redirected to the help menu...
Traceback (most recent call last):
File "zeus.py", line 16, in
from lib.attacks.xss_scan import main_xss
File "/home/username/Downloads/Zeus-Scanner/lib/attacks/xss_scan/init.py", line 3, in
import urlparse
ModuleNotFoundError: No module named 'urlparse'

At start I get a strange error. Help me to understand. I'm using python 2.7

ConnectionError: HTTPConnectionPool(host='127.0.0.1', port=8775): Max retries exceeded with url: /task/new?Content-Type=application%2Fjson (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffaa1c7d490>: Failed to establish a new connection: [Errno 111] Connection refused',))

Error info:

  File "/home/baal/bin/python/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 133, in sqlmap_scan_main
    sqlmap_scan.init_new_scan()
  File "/home/baal/bin/python/zeus-scanner/lib/attacks/sqlmap_scan/__init__.py", line 41, in init_new_scan
    return requests.get(new_scan_url, params=self.headers)
  File "/home/baal/.local/lib/python2.7/site-packages/requests/api.py", line 72, in get
    return request('get', url, params=params, **kwargs)
  File "/home/baal/.local/lib/python2.7/site-packages/requests/api.py", line 58, in request
    return session.request(method=method, url=url, **kwargs)
  File "/home/baal/.local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
    resp = self.send(prep, **send_kwargs)
  File "/home/baal/.local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
    r = adapter.send(request, **kwargs)
  File "/home/baal/.local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
    raise ConnectionError(e, request=request)
ConnectionError: HTTPConnectionPool(host='127.0.0.1', port=8775): Max retries exceeded with url: /task/new?Content-Type=application%2Fjson (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7ffaa1c7d490>: Failed to establish a new connection: [Errno 111] Connection refused',))

Running details:
Linux-4.10.0-33-generic-x86_64-with-Ubuntu-17.04-zesty

Commands used:
zeus.py -d incontent:admin -s --verbose

python3 compatability

Alright so there's a couple issues:

root@baal-Aspire-5733Z:~/bin/python/zeus-scanner# python3 zeus.py
Traceback (most recent call last):
  File "zeus.py", line 8, in <module>
    import httplib as http_client
ImportError: No module named 'httplib'

this is an easy fix just catch the ImportError and import http.client as http_client. See here: https://stackoverflow.com/questions/13778252/import-httplib-importerror-no-module-named-httplib

Once that is done you'll get this error:

root@baal-Aspire-5733Z:~/bin/python/zeus-scanner# python3 zeus.py
Traceback (most recent call last):
  File "zeus.py", line 13, in <module>
    from var import blackwidow
  File "/home/baal/bin/python/zeus-scanner/var/blackwidow/__init__.py", line 5, in <module>
    import lib.settings
  File "/home/baal/bin/python/zeus-scanner/lib/settings.py", line 12, in <module>
    import whichcraft
ImportError: No module named 'whichcraft'

Good luck with that one, because I have no clue how to get around it.

KeyError: 'status'

Zeus version:
1.0.29

Error info:

  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
./zeus.py -r --batch --verbose -s -p -a -x

Log file info:

2017-10-05 20:54:22,787;zeus-log;DEBUG;verifying operating system...
2017-10-05 20:54:22,787;zeus-log;DEBUG;already ran, skipping...
2017-10-05 20:54:22,787;zeus-log;DEBUG;running with options '{'adminPanelFinder': True, 'runSqliScan': True, 'runInBatch': True, 'runInVerbose': True, 'runXssScan': True, 'useRandomDork': True, 'runPortScan': True}'...
2017-10-05 20:54:22,788;zeus-log;INFO;log file being saved to '/root/Zeus-Scanner/log/zeus-log-11.log'...
2017-10-05 20:54:22,788;zeus-log;DEBUG;using default search engine (Google)...
2017-10-05 20:54:22,788;zeus-log;INFO;using default search engine...
2017-10-05 20:54:22,789;zeus-log;DEBUG;choosing random dork from etc/dorks.txt...
2017-10-05 20:54:22,790;zeus-log;INFO;using random dork '"affiliate-agreement.cfm?storeid="' as the search query...
2017-10-05 20:54:22,790;zeus-log;DEBUG;checking for user-agent and proxy configuration...
2017-10-05 20:54:22,790;zeus-log;INFO;attempting to gather query URL...
2017-10-05 20:54:22,790;zeus-log;DEBUG;setting up the virtual display to hide the browser...
2017-10-05 20:54:22,926;zeus-log;INFO;firefox browser display will be hidden while it performs the query...
2017-10-05 20:54:22,927;zeus-log;WARNING;your web browser will be automated in order for Zeus to successfully bypass captchas and API calls. this is done in order to grab the URL from the search and parse the results. please give selenium time to finish it's task...
2017-10-05 20:54:22,927;zeus-log;DEBUG;running selenium-webdriver and launching browser...
2017-10-05 20:54:22,927;zeus-log;DEBUG;adjusting selenium-webdriver user-agent to 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:37,172;zeus-log;INFO;browser will open shortly...
2017-10-05 20:54:44,313;zeus-log;DEBUG;searching search engine for the 'q' element (search button)...
2017-10-05 20:54:44,376;zeus-log;INFO;searching 'http://google.com' using query '"affiliate-agreement.cfm?storeid="'...
2017-10-05 20:54:48,955;zeus-log;DEBUG;obtaining URL from selenium...
2017-10-05 20:54:48,970;zeus-log;DEBUG;found current URL from selenium browser...
2017-10-05 20:54:48,970;zeus-log;INFO;closing the browser and continuing process..
2017-10-05 20:54:49,060;zeus-log;INFO;URL successfully gathered, searching for GET parameters...
2017-10-05 20:54:49,061;zeus-log;INFO;no proxy configuration detected...
2017-10-05 20:54:49,608;zeus-log;INFO;adjusting user-agent header to default user agent 'Zeus-Scanner(v1.0.29)::Python->v2.7'...
2017-10-05 20:54:49,615;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en&tab=wl'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'https://play.google.com/?hl=en&tab=w8'...
2017-10-05 20:54:49,616;zeus-log;DEBUG;found 'http://www.youtube.com/results?gl=US&tab=w1'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://maps.google.com/maps?hl=en'...
2017-10-05 20:54:49,617;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid=7'...
2017-10-05 20:54:49,617;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,618;zeus-log;DEBUG;found 'http://cart.shoppingtechnology.com/secure/cart2/affiliate-agreement.cfm?storeid%3D7%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,619;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,619;zeus-log;DEBUG;found 'http://visionquestonline.com/Index.cfm%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,620;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid=1'...
2017-10-05 20:54:49,620;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,621;zeus-log;DEBUG;found 'http://www.astore.com.au/affiliate-agreement.cfm?storeid%3D1%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,621;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://www.statmyweb.com/s/affiliate-agreement.cfm%253Fstoreid%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,622;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c=14268578'...
2017-10-05 20:54:49,625;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,625;zeus-log;DEBUG;found 'http://webmonitor.fyxm.net/list.php?c%3D14268578%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,626;zeus-log;DEBUG;found 'https://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking=%7B%22tn%22%3A%22O%22%7D'...
2017-10-05 20:54:49,626;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135'...
2017-10-05 20:54:49,627;zeus-log;DEBUG;found 'https://packetpunks.net/showthread.php?tid=135</cite'...
2017-10-05 20:54:49,627;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://packetpunks.net/showthread.php?tid%3D135%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,628;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost=po_356'...
2017-10-05 20:54:49,628;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://www.hackeroyale.com/wp-content/plugins/kalins-pdf-creation-station/kalins_pdf_create.php?singlepost%3Dpo_356%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,629;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,629;zeus-log;DEBUG;found 'http://mnaufalbudi.simdif.com/dork-cc-2017.html%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:54:49,630;zeus-log;INFO;received webcache URL, extracting URL from webcache...
2017-10-05 20:54:49,630;zeus-log;DEBUG;found 'http://onnocenter.or.id/wiki/index.php/Hacking'...
2017-10-05 20:54:49,630;zeus-log;INFO;found a total of 21 URL's with a GET parameter...
2017-10-05 20:54:49,631;zeus-log;INFO;successfully wrote found items to '/root/Zeus-Scanner/log/url-log/url-log-2.log'...
2017-10-05 20:54:49,632;zeus-log;INFO;creating arguments for sqlmap...
2017-10-05 20:59:06,573;zeus-log;INFO;initializing new sqlmap scan with given URL 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,580;zeus-log;DEBUG;scan initialized...
2017-10-05 20:59:06,581;zeus-log;INFO;gathering sqlmap API scan ID...
2017-10-05 20:59:06,587;zeus-log;DEBUG;current sqlmap scan ID: '9201929773b0d3a40c495e80981126d5'...
2017-10-05 20:59:06,587;zeus-log;INFO;starting sqlmap scan on url: 'http://m.facebook.com/TheMadHattersSec/posts/1022991101109017?comment_tracking%3D%257B%2522tn%2522%253A%2522O%2522%257D%2B%22affiliate-agreement.cfm?storeid%3D%22'...
2017-10-05 20:59:06,588;zeus-log;DEBUG;no arguments passed, skipping...
2017-10-05 20:59:06,588;zeus-log;WARNING;please keep in mind that this is the API, output will not be saved to log file, it may take a little longer to finish processing, and you will need to restart the sqlmap API server after each iteration, launching sqlmap...
2017-10-05 20:59:06,601;zeus-log;ERROR;�[7;31;31mran into error ''status'', seems something went wrong, error has been saved to current log file.
Traceback (most recent call last):
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 170, in sqlmap_scan_main
    sqlmap_scan.show_sqlmap_log(api_id)
  File "/root/Zeus-Scanner/lib/attacks/sqlmap_scan/__init__.py", line 74, in show_sqlmap_log
    current_status = status_json["status"]
KeyError: 'status'

2017-10-05 20:59:06,603;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-05 20:59:06,603;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-05 20:59:06,620;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

IndexError: list index out of range

Zeus version:
1.0.31

Error info:

  File "zeus.py", line 569, in <module>
    __run_attacks_main()
  File "zeus.py", line 437, in __run_attacks_main
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 404, in __run_attacks
    return sqlmap_scan.sqlmap_scan_main(url.strip(), verbose=verbose, opts=__create_arguments(sqlmap=True),
  File "zeus.py", line 332, in __create_arguments
    option = (to_use[0], to_use[1])
IndexError: list index out of range

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
zeus.py -b http://thatsthem.com --search-here=/tmp/sqlmapipc-X2YIvK --sqli --sqlmap-args=tor, getUsers, getPasswordHashes, risk="2", timeout="5", torPort="9050", getCurrentDb, search, threads="10", getDbs, freshQueries, isDba, retries="2", timeSec="25", getHostname, delay="3", cleanup, getBanner, alert, batch, answers="Continue=Y,Quit=N,Redirect=N"

Log file info:

2017-10-08 03:16:04,454;zeus-log;INFO;using default search engine...
2017-10-08 03:16:04,454;zeus-log;INFO;starting blackwidow on 'http://thatsthem.com'...
2017-10-08 03:16:09,628;zeus-log;INFO;successfully wrote found items to '/opt/Zeus-Scanner/log/blackwidow-log/blackwidow-log-3.log'...
2017-10-08 03:16:12,219;zeus-log;WARNING;skipping 'https://play.google.com/?hl=da&tab=w8'...
2017-10-08 03:16:16,394;zeus-log;INFO;creating arguments for sqlmap...
2017-10-08 03:16:16,394;zeus-log;ERROR;�[7;31;31mran into exception 'list index out of range' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 569, in <module>
    __run_attacks_main()
  File "zeus.py", line 437, in __run_attacks_main
    auto=opt.autoStartSqlmap, verbose=opt.runInVerbose, batch=opt.runInBatch
  File "zeus.py", line 404, in __run_attacks
    return sqlmap_scan.sqlmap_scan_main(url.strip(), verbose=verbose, opts=__create_arguments(sqlmap=True),
  File "zeus.py", line 332, in __create_arguments
    option = (to_use[0], to_use[1])
IndexError: list index out of range

2017-10-08 03:16:17,669;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-08 03:16:17,670;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-08 03:16:17,672;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

InvalidInputProvided: URL did not match a true URL...

Error info:

  File "zeus.py", line 497, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

Running details:
Linux-4.12.0-parrot6-amd64-x86_64-with-Parrot-3.8-JollyRoger

Commands used:
zeus.py -b inurl:php?id= -s

Log file info:

2017-10-01 01:38:56,492;zeus-log;INFO;using default search engine...
2017-10-01 01:38:56,492;zeus-log;ERROR;�[7;31;31mran into exception 'URL did not match a true URL...' exception has been saved to log file...
Traceback (most recent call last):
  File "zeus.py", line 497, in <module>
    err_msg
InvalidInputProvided: URL did not match a true URL...

2017-10-01 01:38:56,493;zeus-log;INFO;�[32mZeus got an unexpected error and will automatically create an issue for this error, please wait...�[0m
2017-10-01 01:38:56,493;zeus-log;INFO;�[32mgetting authorization...�[0m
2017-10-01 01:38:56,493;zeus-log;INFO;�[32mextracting traceback from log file...�[0m

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.