From 2cc7a814175b8ad8411f2f68c769e4176b053b29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CAnju204-cyber=E2=80=9D?= Date: Fri, 6 Mar 2026 06:34:33 -0500 Subject: [PATCH] Fixed:check_match uses re.match instead of re.search for regex patterns --- insightlog.py | 43 +- my_results.csv | 180 ++++++ my_results.json | 1613 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 1833 insertions(+), 3 deletions(-) create mode 100644 my_results.csv create mode 100644 my_results.json diff --git a/insightlog.py b/insightlog.py index 1232f79..bb5acca 100644 --- a/insightlog.py +++ b/insightlog.py @@ -1,6 +1,9 @@ import re import calendar from datetime import datetime +import csv +import json +import os # Service settings DEFAULT_NGINX = { @@ -123,8 +126,8 @@ def get_date_filter(settings, minute=datetime.now().minute, hour=datetime.now(). def check_match(line, filter_pattern, is_regex=False, is_casesensitive=True, is_reverse=False): """Check if line contains/matches filter pattern""" if is_regex: - check_result = re.match(filter_pattern, line) if is_casesensitive \ - else re.match(filter_pattern, line, re.IGNORECASE) + check_result = re.search(filter_pattern, line) if is_casesensitive \ + else re.search(filter_pattern, line, re.IGNORECASE) #THE BUG FIXED re.match-->re.search else: check_result = (filter_pattern in line) if is_casesensitive else (filter_pattern.lower() in line.lower()) if is_reverse: @@ -295,6 +298,34 @@ def get_requests(service, data=None, filepath=None, filters=None): return None +def export_results(requests, output_path="output"): + """ + Export parsed requests to both CSV and JSON in the current working directory. + """ + if not requests: + print("Nothing to export.") + return + + # Extract just the base name to ensure files save in the current folder + base_name = os.path.splitext(os.path.basename(output_path))[0] + if not base_name: + base_name = "output" + + # Export to JSON + json_path = f"{base_name}.json" + with open(json_path, 'w', encoding='utf-8') as f: + json.dump(requests, f, indent=2, default=str) + + # Export to CSV + csv_path = f"{base_name}.csv" + with open(csv_path, 'w', newline='', encoding='utf-8') as f: + # Using the keys from the first dictionary as the CSV column headers + writer = csv.DictWriter(f, fieldnames=requests[0].keys()) + writer.writeheader() + writer.writerows(requests) + + print(f"Exported {len(requests)} records to both '{json_path}' and '{csv_path}'.") + # CLI entry point if __name__ == '__main__': import argparse @@ -303,6 +334,8 @@ def get_requests(service, data=None, filepath=None, filters=None): parser.add_argument('--service', required=True, choices=['nginx', 'apache2', 'auth'], help='Type of log to analyze') parser.add_argument('--logfile', required=True, help='Path to the log file') parser.add_argument('--filter', required=False, default=None, help='String to filter log lines') + # Added the --export argument here + parser.add_argument('--export', required=False, default=None, help='Base filename for export (creates both .json and .csv)') args = parser.parse_args() filters = [] @@ -313,4 +346,8 @@ def get_requests(service, data=None, filepath=None, filters=None): if requests: for req in requests: print(req) - + + # Added the call to your new export function here + if args.export: + export_results(requests, output_path=args.export) +#print(check_match(line="abc123def", filter_pattern=r"\d+", is_regex=True)) diff --git a/my_results.csv b/my_results.csv new file mode 100644 index 0000000..056d383 --- /dev/null +++ b/my_results.csv @@ -0,0 +1,180 @@ +DATETIME,IP,METHOD,ROUTE,CODE,REFERRER,USERAGENT +2016-05-02 18:00:38,127.0.0.1,GET,/trending,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-02 18:00:38,127.0.0.1,GET,/favicon.ico,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-02 18:00:38,127.0.0.1,GET,/favicon.ico,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-02 19:38:49,127.0.0.1,GET,/trending,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-04 01:53:24,127.0.0.1,GET,/,200,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-04 01:53:24,127.0.0.1,GET,/icons/openlogo-75.png,200,http://localhost/,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-04 01:53:24,127.0.0.1,GET,/favicon.ico,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-04 01:53:24,127.0.0.1,GET,/favicon.ico,404,-,Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0 +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:40,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/s2TRDBOQ.cgi,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/Asx8G35w.do,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/tO8k7vVM.asp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/cbV70WHk.foobar,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/721WiWkR.htm,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/CE4G2Uke.gif,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/Ct8ngVux.py,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/S5kjpLqx.jsp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/DxDQxfbz.htmls,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/v9dlNW0Z.xhtml,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/Qyv3tzgb.pl,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/YkB4wfOf.php,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/pixxMFHG.aspx,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/qfCcTzjh.rb,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:27:41,127.0.0.1,TRACE,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/Q4kEDvEC.cgi,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/sevPDFC5.do,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/ftGibIDJ.foobar,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/GR6od0v2.asp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/wA0Mq4sR.py,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/QiqJjxfV.htm,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/wGlXozJZ.htmls,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/w1oCKcAh.jsp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/TtQuICkt.gif,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/rO39bby8.rb,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/0qb3UoSL.xhtml,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/k3XD7cAe.php,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/rjKgeJfU.aspx,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/AOkawP6a.pl,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,OPTIONS,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,ARGENTINA,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.tar.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.7z,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.cab,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.tgz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.gzip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.bzip2,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.zip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.rar,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.tar.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.7z,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.cab,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.gzip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.tgz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.bzip2,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.zip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.rar,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.org.tar.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.org.7z,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.org.cab,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:38,127.0.0.1,GET,/dev.wsiw.org.gz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/dev.wsiw.org.tgz,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,INDEX,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/dev.wsiw.org.gzip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/dev.wsiw.org.bzip2,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/dev.wsiw.org.rar,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/dev.wsiw.org.zip,404,http://dev.wsiw.org/,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,INVOKE,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MKCOL,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MOVE,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,HEAD,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,ACL,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,LINK,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,RMDIR,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,REPLY,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,REPORT,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,UNLINK,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,NOTIFY,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.1.1,OPTIONS,/,200,daedalu5,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,BASELINE_CONTROL,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,SEARCH,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,POLL,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,PIN,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,CHECKIN,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,CONNECT,/,400,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,CHECKOUT,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,LABEL,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,PROPFIND,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,SPACEJUMP,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,SUBSCRIBE,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,LOCK,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MKDIR,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,INVALID,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,UNCHECKOUT,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MKWORKSPACE,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MERGE,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,UNLOCK,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,PROPPATCH,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,DEBUG,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,VERSION_CONTROL,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,POST,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,COPY,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,TRACE,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,SUBSCRIPTIONS,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,PATCH,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,SHOWMETHOD,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,TRACK,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,UNSUBSCRIBE,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,TEXTSEARCH,/,501,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:31:39,127.0.0.1,MKACTIVITY,/,405,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/,200,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/RQplz56S.asp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/y2eEHIIl.cgi,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/lKFkMWaI.py,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/RbLQbVHY.do,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/kcx6gQHv.htm,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/Q0HtBSRE.foobar,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/zqwbizgK.htmls,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/7V7zb4X4.gif,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/TP4dvwQw.jsp,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/nQDWn3XW.rb,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/y3pqXYgi.xhtml,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/qGdRaFbV.php,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/Y1hHs4Mv.aspx,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) +2016-05-04 11:33:17,127.0.0.1,GET,/mMfinQHZ.pl,404,-,Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org) diff --git a/my_results.json b/my_results.json new file mode 100644 index 0000000..40e82df --- /dev/null +++ b/my_results.json @@ -0,0 +1,1613 @@ +[ + { + "DATETIME": "2016-05-02 18:00:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/trending", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-02 18:00:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/favicon.ico", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-02 18:00:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/favicon.ico", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-02 19:38:49", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/trending", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-04 01:53:24", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-04 01:53:24", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/icons/openlogo-75.png", + "CODE": "200", + "REFERRER": "http://localhost/", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-04 01:53:24", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/favicon.ico", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-04 01:53:24", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/favicon.ico", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/5.0 (X11; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:40", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/s2TRDBOQ.cgi", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Asx8G35w.do", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/tO8k7vVM.asp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/cbV70WHk.foobar", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/721WiWkR.htm", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/CE4G2Uke.gif", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Ct8ngVux.py", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/S5kjpLqx.jsp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/DxDQxfbz.htmls", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/v9dlNW0Z.xhtml", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Qyv3tzgb.pl", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/YkB4wfOf.php", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/pixxMFHG.aspx", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/qfCcTzjh.rb", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:27:41", + "IP": "127.0.0.1", + "METHOD": "TRACE", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Q4kEDvEC.cgi", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/sevPDFC5.do", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/ftGibIDJ.foobar", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/GR6od0v2.asp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/wA0Mq4sR.py", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/QiqJjxfV.htm", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/wGlXozJZ.htmls", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/w1oCKcAh.jsp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/TtQuICkt.gif", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/rO39bby8.rb", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/0qb3UoSL.xhtml", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/k3XD7cAe.php", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/rjKgeJfU.aspx", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/AOkawP6a.pl", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "OPTIONS", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "ARGENTINA", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.tar.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.7z", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.cab", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.tgz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.gzip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.bzip2", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.zip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.rar", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.tar.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.7z", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.cab", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.gzip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.tgz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.bzip2", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.zip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.rar", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.tar.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.7z", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.cab", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:38", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.gz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.tgz", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "INDEX", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.gzip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.bzip2", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.rar", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/dev.wsiw.org.zip", + "CODE": "404", + "REFERRER": "http://dev.wsiw.org/", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "INVOKE", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MKCOL", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MOVE", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "HEAD", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "ACL", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "LINK", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "RMDIR", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "REPLY", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "REPORT", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "UNLINK", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "NOTIFY", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.1.1", + "METHOD": "OPTIONS", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "daedalu5", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "BASELINE_CONTROL", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "SEARCH", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "POLL", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "PIN", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "CHECKIN", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "CONNECT", + "ROUTE": "/", + "CODE": "400", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "CHECKOUT", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "LABEL", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "PROPFIND", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "SPACEJUMP", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "SUBSCRIBE", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "LOCK", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MKDIR", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "INVALID", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "UNCHECKOUT", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MKWORKSPACE", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MERGE", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "UNLOCK", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "PROPPATCH", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "DEBUG", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "VERSION_CONTROL", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "POST", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "COPY", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "TRACE", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "SUBSCRIPTIONS", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "PATCH", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "SHOWMETHOD", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "TRACK", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "UNSUBSCRIBE", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "TEXTSEARCH", + "ROUTE": "/", + "CODE": "501", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:31:39", + "IP": "127.0.0.1", + "METHOD": "MKACTIVITY", + "ROUTE": "/", + "CODE": "405", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/", + "CODE": "200", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/RQplz56S.asp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/y2eEHIIl.cgi", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/lKFkMWaI.py", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/RbLQbVHY.do", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/kcx6gQHv.htm", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Q0HtBSRE.foobar", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/zqwbizgK.htmls", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/7V7zb4X4.gif", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/TP4dvwQw.jsp", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/nQDWn3XW.rb", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/y3pqXYgi.xhtml", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/qGdRaFbV.php", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/Y1hHs4Mv.aspx", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + }, + { + "DATETIME": "2016-05-04 11:33:17", + "IP": "127.0.0.1", + "METHOD": "GET", + "ROUTE": "/mMfinQHZ.pl", + "CODE": "404", + "REFERRER": "-", + "USERAGENT": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; w3af.org)" + } +] \ No newline at end of file