aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Deri <lucaderi@users.noreply.github.com>2020-02-02 16:19:26 +0100
committerGitHub <noreply@github.com>2020-02-02 16:19:26 +0100
commit5b11c2ffc59ecff878c8dc87ba3eb35adbb0b810 (patch)
tree21ec00b7e72e329b2af45d430a0ec2df542c6c5c
parent8486eb08ea80b779dfcba07cc3ece48bbe81bdad (diff)
parentce4f4fbe2f6d3fe510690438db9a1b47e30c24ed (diff)
Merge pull request #836 from MrTiz9/dev
nDPI now detects RCE injections in HTTP requests
-rw-r--r--example/ndpiReader.c3
-rw-r--r--python/ndpi.py3
-rw-r--r--src/include/ndpi_typedefs.h12
-rw-r--r--src/lib/ndpi_utils.c110
-rw-r--r--src/lib/third_party/include/rce_injection.h618
-rw-r--r--tests/pcap/WebattackRCE.pcapbin0 -> 203779 bytes
-rw-r--r--tests/result/WebattackRCE.pcap.out800
7 files changed, 1544 insertions, 2 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index af685f4c7..3e521edab 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -981,6 +981,9 @@ char* printUrlRisk(ndpi_url_risk risk) {
case ndpi_url_possible_sql_injection:
return(" ** SQL Injection **");
break;
+ case ndpi_url_possible_rce_injection:
+ return(" ** RCE Injection **");
+ break;
}
return("");
diff --git a/python/ndpi.py b/python/ndpi.py
index ed7720192..a037bf5aa 100644
--- a/python/ndpi.py
+++ b/python/ndpi.py
@@ -36,7 +36,8 @@ typedef enum {
typedef enum {
ndpi_url_no_problem = 0,
ndpi_url_possible_xss,
- ndpi_url_possible_sql_injection
+ ndpi_url_possible_sql_injection,
+ ndpi_url_possible_rce_injection
} ndpi_url_risk;
/* NDPI_VISIT */
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h
index d2bcfcd81..c20352e90 100644
--- a/src/include/ndpi_typedefs.h
+++ b/src/include/ndpi_typedefs.h
@@ -53,7 +53,8 @@ typedef enum {
typedef enum {
ndpi_url_no_problem = 0,
ndpi_url_possible_xss,
- ndpi_url_possible_sql_injection
+ ndpi_url_possible_sql_injection,
+ ndpi_url_possible_rce_injection
} ndpi_url_risk;
/* NDPI_VISIT */
@@ -1002,6 +1003,15 @@ struct hs {
};
#endif
+#ifdef HAVE_PCRE
+#include <pcre.h>
+
+struct pcre_struct {
+ pcre *compiled;
+ pcre_extra *optimized;
+};
+#endif
+
struct ndpi_detection_module_struct {
NDPI_PROTOCOL_BITMASK detection_bitmask;
NDPI_PROTOCOL_BITMASK generic_http_packet_bitmask;
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c
index 41447bc7b..99571b2c6 100644
--- a/src/lib/ndpi_utils.c
+++ b/src/lib/ndpi_utils.c
@@ -50,6 +50,7 @@
#include "third_party/include/libinjection.h"
#include "third_party/include/libinjection_sqli.h"
#include "third_party/include/libinjection_xss.h"
+#include "third_party/include/rce_injection.h"
#define NDPI_CONST_GENERIC_PROTOCOL_NAME "GenericProtocol"
@@ -1213,6 +1214,111 @@ static int ndpi_is_xss_injection(char* query) {
/* ********************************** */
+#ifdef HAVE_PCRE
+
+static void ndpi_compile_rce_regex() {
+ const char *pcreErrorStr;
+ int pcreErrorOffset;
+
+ for(int i = 0; i < N_RCE_REGEX; i++) {
+ comp_rx[i] = (struct pcre_struct*)ndpi_malloc(sizeof(struct pcre_struct));
+
+ comp_rx[i]->compiled = pcre_compile(rce_regex[i], 0, &pcreErrorStr,
+ &pcreErrorOffset, NULL);
+
+ if(comp_rx[i]->compiled == NULL) {
+ #ifdef DEBUG
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Could not compile '%s': %s\n", rce_regex[i],
+ pcreErrorStr);
+ #endif
+
+ continue;
+ }
+
+ comp_rx[i]->optimized = pcre_study(comp_rx[i]->compiled, 0, &pcreErrorStr);
+
+ #ifdef DEBUG
+ if(pcreErrorStr != NULL) {
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Could not study '%s': %s\n", rce_regex[i],
+ pcreErrorStr);
+ }
+ #endif
+ }
+
+ free((void *)pcreErrorStr);
+}
+
+static int ndpi_is_rce_injection(char* query) {
+ if (!initialized_comp_rx) {
+ ndpi_compile_rce_regex();
+ initialized_comp_rx = 1;
+ }
+
+ int pcreExecRet;
+ int subStrVec[30];
+
+ for(int i = 0; i < N_RCE_REGEX; i++) {
+ unsigned int length = strlen(query);
+
+ pcreExecRet = pcre_exec(comp_rx[i]->compiled,
+ comp_rx[i]->optimized,
+ query, length, 0, 0, subStrVec, 30);
+
+ if (pcreExecRet >= 0) {
+ return 1;
+ }
+ #ifdef DEBUG
+ else {
+ switch(pcreExecRet) {
+ case PCRE_ERROR_NOMATCH:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: String did not match the pattern\n");
+ break;
+ case PCRE_ERROR_NULL:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Something was null\n");
+ break;
+ case PCRE_ERROR_BADOPTION:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: A bad option was passed\n");
+ break;
+ case PCRE_ERROR_BADMAGIC:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Magic number bad (compiled re corrupt?)\n");
+ break;
+ case PCRE_ERROR_UNKNOWN_NODE:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Something kooky in the compiled re\n");
+ break;
+ case PCRE_ERROR_NOMEMORY:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Ran out of memory\n");
+ break;
+ default:
+ NDPI_LOG_ERR(ndpi_str, "ERROR: Unknown error\n");
+ break;
+ }
+ }
+ #endif
+ }
+
+ size_t ushlen = sizeof(ush_commands) / sizeof(ush_commands[0]);
+
+ for(int i = 0; i < ushlen; i++) {
+ if(strstr(query, ush_commands[i]) != NULL) {
+ return 1;
+ }
+ }
+
+ size_t pwshlen = sizeof(pwsh_commands) / sizeof(pwsh_commands[0]);
+
+ for(int i = 0; i < pwshlen; i++) {
+ if(strstr(query, pwsh_commands[i]) != NULL) {
+ return 1;
+ }
+ }
+
+ return 0;
+}
+
+#endif
+
+/* ********************************** */
+
ndpi_url_risk ndpi_validate_url(char *url) {
char *orig_str = NULL, *str = NULL, *question_mark = strchr(url, '?');
ndpi_url_risk rc = ndpi_url_no_problem;
@@ -1248,6 +1354,10 @@ ndpi_url_risk ndpi_validate_url(char *url) {
rc = ndpi_url_possible_xss;
else if(ndpi_is_sql_injection(decoded))
rc = ndpi_url_possible_sql_injection;
+#ifdef HAVE_PCRE
+ else if(ndpi_is_rce_injection(decoded))
+ rc = ndpi_url_possible_rce_injection;
+#endif
#ifdef URL_CHECK_DEBUG
printf("=>> [rc: %u] %s\n", rc, decoded);
diff --git a/src/lib/third_party/include/rce_injection.h b/src/lib/third_party/include/rce_injection.h
new file mode 100644
index 000000000..326edac89
--- /dev/null
+++ b/src/lib/third_party/include/rce_injection.h
@@ -0,0 +1,618 @@
+#ifdef HAVE_PCRE
+
+#ifndef NDPI_RCE_H
+#define NDPI_RCE_H
+
+#endif //NDPI_RCE_H
+
+#define N_RCE_REGEX 7
+
+/* Compiled regex */
+static struct pcre_struct *comp_rx[N_RCE_REGEX];
+
+static unsigned int initialized_comp_rx = 0;
+
+static const char *rce_regex[N_RCE_REGEX] = {
+/**
+ * https://github.com/SpiderLabs/owasp-modsecurity-crs/blob/v3.3/dev/rules/REQUEST-932-APPLICATION-ATTACK-RCE.conf
+ */
+
+/**
+ * [ Unix command injection ]
+ *
+ * This regex detects Unix command injections.
+ * A command injection takes a form such as:
+ *
+ * foo.jpg;uname -a
+ * foo.jpg||uname -a
+ *
+ * The vulnerability exists when an application executes a shell command
+ * without proper input escaping/validation.
+ *
+ * This regex is also triggered by an Oracle WebLogic Remote Command Execution exploit: [ Oracle WebLogic vulnerability CVE-2017-10271 - Exploit tested: https://www.exploit-db.com/exploits/43458 ]
+ *
+ * To prevent false positives, we look for a 'starting sequence' that
+ * precedes a command in shell syntax, such as: ; | & $( ` <( >(
+ * Anatomy of the regexp with examples of patterns caught:
+ *
+ * 1. Starting tokens
+ *
+ * ; ;ifconfig
+ * \{ {ifconfig}
+ * \| |ifconfig
+ * \|\| ||ifconfig
+ * & &ifconfig
+ * && &&ifconfig
+ * \n ;\nifconfig
+ * \r ;\rifconfig
+ * \$\( $(ifconfig)
+ * $\(\( $((ifconfig))
+ * ` `ifconfig`
+ * \${ ${ifconfig}
+ * <\( <( ifconfig )
+ * >\( >( ifconfig )
+ * \(\s*\) a() ( ifconfig; ); a
+ *
+ * 2. Command prefixes
+ *
+ * { { ifconfig }
+ * \s*\(\s* ( ifconfig )
+ * \w+=(?:[^\s]*|\$.*|\$.*|<.*|>.*|\'.*\'|\".*\")\s+ VARNAME=xyz ifconfig
+ * !\s* ! ifconfig
+ * \$ $ifconfig
+ *
+ * 3. Quoting
+ *
+ * ' 'ifconfig'
+ * \" "ifconfig"
+ *
+ * 4. Paths
+ *
+ * [\?\*\[\]\(\)\-\|+\w'\"\./\\\\]+/ /sbin/ifconfig, /s?in/./ifconfig, /s[a-b]in/ifconfig etc.
+ *
+ * This regex is case-sensitive to prevent FP ("Cat" vs. "cat").
+ *
+ * An effort was made to combat evasions by shell quoting (e.g. 'ls',
+ * 'l'"s", \l\s are all valid).
+ *
+ * This is the base regex to prevent Unix Command Injection
+ */
+
+ "(?:;|\\{|\\||\\|\\||&|&&|\\n|\\r|\\$\\(|\\$\\(\\(|`|\\${|<\\(|>\\(|\\(\\s*\\))\\s*(?:{|\\s*\\(\\s*|\\w+=(?:[^\\s]*|\\$.*|\\$.*|<.*|>.*|\\'.*\\'|\\\".*\\\")\\s+|!\\s*|\\$)*\\s*(?:'|\\\")*(?:[\\?\\*\\[\\]\\(\\)\\-\\|+\\w'\\\"\\./\\\\\\\\]+/)?[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*(?:w[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*w[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d|u[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*p)|r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*q[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r)|s(?:[\\\\\\\\'\\\"]*(?:b[\\\\\\\\'\\\"]*_[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*e|c[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*u|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*d|p[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*i|u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*b|-[\\\\\\\\'\\\"]*F|h[\\\\\\\\'\\\"]*w|o[\\\\\\\\'\\\"]*f))?|z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|m[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|a)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s)|e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*(?:(?:f[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l|p[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*p)[\\\\\\\\'\\\"]*e|e[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o|(?:\\s|<|>).*)|a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*g(?:[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n)?|c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*m|(?:\\s|<|>).*)|o[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*e|l)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|g[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e)|d[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*g|d[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|f[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t)?|(?:[np]|y[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*x)[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|b[\\\\\\\\'\\\"]*(?:z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|i[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*2)|s[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r)|a[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*(?:\\s|<|>).*|s[\\\\\\\\'\\\"]*h)|r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*k[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*w|u[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n)|c[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*(?:m[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*d)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|p[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*c)|h[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*(?:\\s|<|>).*|f[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*s|a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*r|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*d)|r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*b|(?:[cp]|a[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|u[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*l|s[\\\\\\\\'\\\"]*h)|f[\\\\\\\\'\\\"]*(?:i(?:[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t|(?:\\s|<|>).*)|n[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*(?:\\s|<|>).*))?|t[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*(?:s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*s|w[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o|(?:\\s|<|>).*)|u[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n|(?:e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h|c)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h|g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p)|e[\\\\\\\\'\\\"]*(?:n[\\\\\\\\'\\\"]*(?:v(?:[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e)?|d[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*f|s[\\\\\\\\'\\\"]*w))|x[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*d|o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*t|r)|e[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*(?:\\s|<|>).*|g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|s[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c|v[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*l)|h[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t|p[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*w[\\\\\\\\'\\\"]*d)|o[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e|i[\\\\\\\\'\\\"]*d)|(?:e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d|u[\\\\\\\\'\\\"]*p)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|i[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*y)|i[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*(?:(?:6[\\\\\\\\'\\\"]*)?t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s|c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*g)|r[\\\\\\\\'\\\"]*b(?:[\\\\\\\\'\\\"]*(?:1(?:[\\\\\\\\'\\\"]*[89])?|2[\\\\\\\\'\\\"]*[012]))?|f[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*g|d[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|g[\\\\\\\\'\\\"]*(?:(?:e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*l|r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*c|i[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|z[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|i[\\\\\\\\'\\\"]*p)|u[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*z[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*p|d[\\\\\\\\'\\\"]*b)|a[\\\\\\\\'\\\"]*(?:(?:l[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*s|w[\\\\\\\\'\\\"]*k)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|d[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r|p[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|r[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*(?:\\s|<|>).*|p))|d[\\\\\\\\'\\\"]*(?:h[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t|(?:i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|u)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|(?:m[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s|p[\\\\\\\\'\\\"]*k)[\\\\\\\\'\\\"]*g|o[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*s|n[\\\\\\\\'\\\"]*e)|a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*h)|m[\\\\\\\\'\\\"]*(?:(?:k[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*r|o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|a[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*(?:x[\\\\\\\\'\\\"]*(?:\\s|<|>).*|q)|l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e)|j[\\\\\\\\'\\\"]*(?:(?:a[\\\\\\\\'\\\"]*v[\\\\\\\\'\\\"]*a|o[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*s)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|e[\\\\\\\\'\\\"]*x[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*c)|k[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*l|(?:\\s|<|>).*)|(?:G[\\\\\\\\'\\\"]*E[\\\\\\\\'\\\"]*T[\\\\\\\\'\\\"]*(?:\\s|<|>)|\\.\\s).*|7[\\\\\\\\'\\\"]*z(?:[\\\\\\\\'\\\"]*[ar])?)\\b",
+
+ "(?:;|\\{|\\||\\|\\||&|&&|\\n|\\r|\\$\\(|\\$\\(\\(|`|\\${|<\\(|>\\(|\\(\\s*\\))\\s*(?:{|\\s*\\(\\s*|\\w+=(?:[^\\s]*|\\$.*|\\$.*|<.*|>.*|\\'.*\\'|\\\".*\\\")\\s+|!\\s*|\\$)*\\s*(?:'|\\\")*(?:[\\?\\*\\[\\]\\(\\)\\-\\|+\\w'\\\"\\./\\\\\\\\]+/)?[\\\\\\\\'\\\"]*(?:s[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*(?:(?:f[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*)?(?:\\s|<|>).*|e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*v|s[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*d)|n[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l|d[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|h[\\\\\\\\'\\\"]*(?:\\.[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*b|u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w[\\\\\\\\'\\\"]*n|(?:\\s|<|>).*)|o[\\\\\\\\'\\\"]*(?:(?:u[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e|r[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|c[\\\\\\\\'\\\"]*(?:h[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*d|p[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*s|(?:l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*e|f[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*p|y[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*l|u[\\\\\\\\'\\\"]*(?:(?:\\s|<|>).*|d[\\\\\\\\'\\\"]*o)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|s[\\\\\\\\'\\\"]*h|v[\\\\\\\\'\\\"]*n)|p[\\\\\\\\'\\\"]*(?:k[\\\\\\\\'\\\"]*(?:g(?:(?:[\\\\\\\\'\\\"]*_)?[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*o)?|e[\\\\\\\\'\\\"]*x[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*c|i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*l)|t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r(?:[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p))?|a[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*(?:\\s|<|>).*|s[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*w[\\\\\\\\'\\\"]*d)|r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*v|f[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|y[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n(?:[\\\\\\\\'\\\"]*(?:3(?:[\\\\\\\\'\\\"]*m)?|2))?|e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*(?:l(?:[\\\\\\\\'\\\"]*(?:s[\\\\\\\\'\\\"]*h|5))?|m[\\\\\\\\'\\\"]*s)|(?:g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|f[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*p|(?:u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*h|o[\\\\\\\\'\\\"]*p)[\\\\\\\\'\\\"]*d|h[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*[57])?|i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g|s[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|n[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*(?:\\.[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*l|o[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*d)|(?:\\s|<|>).*|a[\\\\\\\\'\\\"]*t)|e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:k[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*p|(?:s[\\\\\\\\'\\\"]*t|c)[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|(?:\\s|<|>).*)|s[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*k[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*p|t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|(?:a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*o|i[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|(?:o[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*u|m[\\\\\\\\'\\\"]*a)[\\\\\\\\'\\\"]*p|p[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g)|r[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*(?:(?:p[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e|e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|a[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*h)|m[\\\\\\\\'\\\"]*(?:(?:d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*)?(?:\\s|<|>).*|u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r)|u[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*y(?:[\\\\\\\\'\\\"]*(?:1(?:[\\\\\\\\'\\\"]*[89])?|2[\\\\\\\\'\\\"]*[012]))?|(?:a[\\\\\\\\'\\\"]*r|c[\\\\\\\\'\\\"]*p|p[\\\\\\\\'\\\"]*m)[\\\\\\\\'\\\"]*(?:\\s|<|>).*|n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*o|o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e|s[\\\\\\\\'\\\"]*y[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*c)|t[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e|i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g)|s[\\\\\\\\'\\\"]*h)|r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e(?:[\\\\\\\\'\\\"]*6)?|e[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|e[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|i[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t|(?:\\s|<|>).*)|a[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*l(?:[\\\\\\\\'\\\"]*f)?|r[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|o[\\\\\\\\'\\\"]*(?:u[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*(?:\\s|<|>).*|p))|u[\\\\\\\\'\\\"]*(?:n[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*k[\\\\\\\\'\\\"]*(?:\\s|<|>).*|z[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*a)|c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e|r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r|s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|z[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*p|x[\\\\\\\\'\\\"]*z)|s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*(?:(?:a[\\\\\\\\'\\\"]*d|m[\\\\\\\\'\\\"]*o)[\\\\\\\\'\\\"]*d|d[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*l)|l[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|m[\\\\\\\\'\\\"]*(?:y[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*q[\\\\\\\\'\\\"]*l(?:[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w)?|h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*y|a[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n|s[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w))?|(?:(?:o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*n|u[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*t|v)[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|x[\\\\\\\\'\\\"]*(?:z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|d[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|e[\\\\\\\\'\\\"]*c)|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|(?:\\s|<|>).*)|a[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*s|t[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*m|x[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*(?:\\s|<|>).*)|z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|i[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*(?:\\s|<|>).*|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|r[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*n|s[\\\\\\\\'\\\"]*h)|o[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*l|n[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*r)|w[\\\\\\\\'\\\"]*(?:h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*i|(?:\\s|<|>).*)|g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|3[\\\\\\\\'\\\"]*m)|v[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*(?:m[\\\\\\\\'\\\"]*(?:\\s|<|>).*|g[\\\\\\\\'\\\"]*r|p[\\\\\\\\'\\\"]*w)|y[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*m)\\b",
+
+/* ********************************** */
+
+/**
+ * [ Windows command injection ]
+ *
+ * This regex detects Windows shell command injections.
+ *
+ * A command injection takes a form such as:
+ *
+ * foo.jpg&ver /r
+ * foo.jpg|ver /r
+ *
+ * The vulnerability exists when an application executes a shell command
+ * without proper input escaping/validation.
+ *
+ * To prevent false positives, we look for a 'starting sequence' that
+ * precedes a command in CMD syntax, such as: ; | & `
+ *
+ * Anatomy of the regexp:
+ *
+ * 1. Starting tokens
+ *
+ * ; ;cmd
+ * \{ {cmd
+ * \| |cmd
+ * \|\| ||cmd
+ * & &cmd
+ * && &&cmd
+ * \n \ncmd
+ * \r \rcmd
+ * ` `cmd
+ *
+ * 2. Command prefixes
+ *
+ * ( (cmd)
+ * , ,cmd
+ * @ @cmd
+ * ' 'cmd'
+ * " "cmd"
+ * \s spacing+cmd
+ *
+ * 3. Paths
+ *
+ * [\w'\"\./]+/ /path/cmd
+ * [\\\\'\"\^]*\w[\\\\'\"\^]*:.*\\\\ C:\Program Files\cmd
+ * [\^\.\w '\"/\\\\]*\\\\)?[\"\^]* \\net\share\dir\cmd
+ *
+ * 4. Quoting
+ *
+ * \" "cmd"
+ * \^ ^cmd
+ *
+ * 5. Extension/switches
+ *
+ * \.[\"\^]*\w+ cmd.com, cmd.exe, etc.
+ * /b cmd/h
+ *
+ * An effort is made to combat evasions by CMD syntax; for example,
+ * the following strings are valid: c^md, @cmd, "c"md.
+ *
+ * This regex is case-insensitive.
+ */
+
+ "(?i)(?:;|\\{|\\||\\|\\||&|&&|\\n|\\r|`)\\s*[\\(,@\\'\\\"\\s]*(?:[\\w'\\\"\\./]+/|[\\\\\\\\'\\\"\\^]*\\w[\\\\\\\\'\\\"\\^]*:.*\\\\\\\\|[\\^\\.\\w '\\\"/\\\\\\\\]*\\\\\\\\)?[\\\"\\^]*(?:m[\\\"\\^]*(?:y[\\\"\\^]*s[\\\"\\^]*q[\\\"\\^]*l(?:[\\\"\\^]*(?:d[\\\"\\^]*u[\\\"\\^]*m[\\\"\\^]*p(?:[\\\"\\^]*s[\\\"\\^]*l[\\\"\\^]*o[\\\"\\^]*w)?|h[\\\"\\^]*o[\\\"\\^]*t[\\\"\\^]*c[\\\"\\^]*o[\\\"\\^]*p[\\\"\\^]*y|a[\\\"\\^]*d[\\\"\\^]*m[\\\"\\^]*i[\\\"\\^]*n|s[\\\"\\^]*h[\\\"\\^]*o[\\\"\\^]*w))?|s[\\\"\\^]*(?:i[\\\"\\^]*(?:n[\\\"\\^]*f[\\\"\\^]*o[\\\"\\^]*3[\\\"\\^]*2|e[\\\"\\^]*x[\\\"\\^]*e[\\\"\\^]*c)|c[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*i[\\\"\\^]*g|g[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|t[\\\"\\^]*s[\\\"\\^]*c)|o[\\\"\\^]*(?:u[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*(?:(?:[\\s,;]|\\.|/|<|>).*|v[\\\"\\^]*o[\\\"\\^]*l)|v[\\\"\\^]*e[\\\"\\^]*u[\\\"\\^]*s[\\\"\\^]*e[\\\"\\^]*r|[dr][\\\"\\^]*e[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)|k[\\\"\\^]*(?:d[\\\"\\^]*i[\\\"\\^]*r[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|l[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*k)|d[\\\"\\^]*(?:s[\\\"\\^]*c[\\\"\\^]*h[\\\"\\^]*e[\\\"\\^]*d|(?:[\\s,;]|\\.|/|<|>).*)|a[\\\"\\^]*p[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*d|b[\\\"\\^]*s[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*l[\\\"\\^]*i|e[\\\"\\^]*a[\\\"\\^]*s[\\\"\\^]*u[\\\"\\^]*r[\\\"\\^]*e|m[\\\"\\^]*s[\\\"\\^]*y[\\\"\\^]*s)|d[\\\"\\^]*(?:i[\\\"\\^]*(?:s[\\\"\\^]*k[\\\"\\^]*(?:(?:m[\\\"\\^]*g[\\\"\\^]*m|p[\\\"\\^]*a[\\\"\\^]*r)[\\\"\\^]*t|s[\\\"\\^]*h[\\\"\\^]*a[\\\"\\^]*d[\\\"\\^]*o[\\\"\\^]*w)|r[\\\"\\^]*(?:(?:[\\s,;]|\\.|/|<|>).*|u[\\\"\\^]*s[\\\"\\^]*e)|f[\\\"\\^]*f[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)|e[\\\"\\^]*(?:l[\\\"\\^]*(?:p[\\\"\\^]*r[\\\"\\^]*o[\\\"\\^]*f|t[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*e|(?:[\\s,;]|\\.|/|<|>).*)|v[\\\"\\^]*(?:m[\\\"\\^]*g[\\\"\\^]*m[\\\"\\^]*t|c[\\\"\\^]*o[\\\"\\^]*n)|(?:f[\\\"\\^]*r[\\\"\\^]*a|b[\\\"\\^]*u)[\\\"\\^]*g)|s[\\\"\\^]*(?:a[\\\"\\^]*(?:c[\\\"\\^]*l[\\\"\\^]*s|d[\\\"\\^]*d)|q[\\\"\\^]*u[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*y|m[\\\"\\^]*o[\\\"\\^]*(?:v[\\\"\\^]*e|d)|g[\\\"\\^]*e[\\\"\\^]*t|r[\\\"\\^]*m)|(?:r[\\\"\\^]*i[\\\"\\^]*v[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*q[\\\"\\^]*u[\\\"\\^]*e[\\\"\\^]*r|o[\\\"\\^]*s[\\\"\\^]*k[\\\"\\^]*e)[\\\"\\^]*y|(?:c[\\\"\\^]*o[\\\"\\^]*m[\\\"\\^]*c[\\\"\\^]*n[\\\"\\^]*f|x[\\\"\\^]*d[\\\"\\^]*i[\\\"\\^]*a)[\\\"\\^]*g|a[\\\"\\^]*t[\\\"\\^]*e[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|n[\\\"\\^]*s[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*a[\\\"\\^]*t)|c[\\\"\\^]*(?:o[\\\"\\^]*(?:m[\\\"\\^]*(?:p[\\\"\\^]*(?:(?:a[\\\"\\^]*c[\\\"\\^]*t[\\\"\\^]*)?(?:[\\s,;]|\\.|/|<|>).*|m[\\\"\\^]*g[\\\"\\^]*m[\\\"\\^]*t)|e[\\\"\\^]*x[\\\"\\^]*p)|n[\\\"\\^]*(?:2[\\\"\\^]*p|v[\\\"\\^]*e)[\\\"\\^]*r[\\\"\\^]*t|p[\\\"\\^]*y)|l[\\\"\\^]*(?:e[\\\"\\^]*a[\\\"\\^]*(?:n[\\\"\\^]*m[\\\"\\^]*g[\\\"\\^]*r|r[\\\"\\^]*m[\\\"\\^]*e[\\\"\\^]*m)|u[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*e[\\\"\\^]*r)|h[\\\"\\^]*(?:k[\\\"\\^]*(?:n[\\\"\\^]*t[\\\"\\^]*f[\\\"\\^]*s|d[\\\"\\^]*s[\\\"\\^]*k)|d[\\\"\\^]*i[\\\"\\^]*r[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)|s[\\\"\\^]*(?:c[\\\"\\^]*(?:r[\\\"\\^]*i[\\\"\\^]*p[\\\"\\^]*t|c[\\\"\\^]*m[\\\"\\^]*d)|v[\\\"\\^]*d[\\\"\\^]*e)|e[\\\"\\^]*r[\\\"\\^]*t[\\\"\\^]*(?:u[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*l|r[\\\"\\^]*e[\\\"\\^]*q)|a[\\\"\\^]*(?:l[\\\"\\^]*l[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|c[\\\"\\^]*l[\\\"\\^]*s)|m[\\\"\\^]*d(?:[\\\"\\^]*k[\\\"\\^]*e[\\\"\\^]*y)?|i[\\\"\\^]*p[\\\"\\^]*h[\\\"\\^]*e[\\\"\\^]*r|u[\\\"\\^]*r[\\\"\\^]*l)|f[\\\"\\^]*(?:o[\\\"\\^]*r[\\\"\\^]*(?:m[\\\"\\^]*a[\\\"\\^]*t[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|f[\\\"\\^]*i[\\\"\\^]*l[\\\"\\^]*e[\\\"\\^]*s|e[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*h)|i[\\\"\\^]*n[\\\"\\^]*d[\\\"\\^]*(?:(?:[\\s,;]|\\.|/|<|>).*|s[\\\"\\^]*t[\\\"\\^]*r)|s[\\\"\\^]*(?:m[\\\"\\^]*g[\\\"\\^]*m[\\\"\\^]*t|u[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*l)|t[\\\"\\^]*(?:p[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|y[\\\"\\^]*p[\\\"\\^]*e)|r[\\\"\\^]*e[\\\"\\^]*e[\\\"\\^]*d[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*k|c[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|g[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*p)|n[\\\"\\^]*(?:e[\\\"\\^]*t[\\\"\\^]*(?:s[\\\"\\^]*(?:t[\\\"\\^]*a[\\\"\\^]*t|v[\\\"\\^]*c|h)|(?:[\\s,;]|\\.|/|<|>).*|c[\\\"\\^]*a[\\\"\\^]*t|d[\\\"\\^]*o[\\\"\\^]*m)|t[\\\"\\^]*(?:b[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*k[\\\"\\^]*u[\\\"\\^]*p|r[\\\"\\^]*i[\\\"\\^]*g[\\\"\\^]*h[\\\"\\^]*t[\\\"\\^]*s)|(?:s[\\\"\\^]*l[\\\"\\^]*o[\\\"\\^]*o[\\\"\\^]*k[\\\"\\^]*u|m[\\\"\\^]*a)[\\\"\\^]*p|c[\\\"\\^]*(?:(?:[\\s,;]|\\.|/|<|>).*|a[\\\"\\^]*t)|b[\\\"\\^]*t[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*a[\\\"\\^]*t)|e[\\\"\\^]*(?:x[\\\"\\^]*p[\\\"\\^]*(?:a[\\\"\\^]*n[\\\"\\^]*d[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|l[\\\"\\^]*o[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*r)|v[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*(?:c[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*a[\\\"\\^]*t[\\\"\\^]*e|v[\\\"\\^]*w[\\\"\\^]*r)|n[\\\"\\^]*d[\\\"\\^]*l[\\\"\\^]*o[\\\"\\^]*c[\\\"\\^]*a[\\\"\\^]*l|g[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*p|r[\\\"\\^]*a[\\\"\\^]*s[\\\"\\^]*e|c[\\\"\\^]*h[\\\"\\^]*o)|g[\\\"\\^]*(?:a[\\\"\\^]*t[\\\"\\^]*h[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*n[\\\"\\^]*e[\\\"\\^]*t[\\\"\\^]*w[\\\"\\^]*o[\\\"\\^]*r[\\\"\\^]*k[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*o|p[\\\"\\^]*(?:(?:r[\\\"\\^]*e[\\\"\\^]*s[\\\"\\^]*u[\\\"\\^]*l|e[\\\"\\^]*d[\\\"\\^]*i)[\\\"\\^]*t|u[\\\"\\^]*p[\\\"\\^]*d[\\\"\\^]*a[\\\"\\^]*t[\\\"\\^]*e)|i[\\\"\\^]*t[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|e[\\\"\\^]*t[\\\"\\^]*m[\\\"\\^]*a[\\\"\\^]*c)|i[\\\"\\^]*(?:r[\\\"\\^]*b(?:[\\\"\\^]*(?:1(?:[\\\"\\^]*[89])?|2[\\\"\\^]*[012]))?|f[\\\"\\^]*m[\\\"\\^]*e[\\\"\\^]*m[\\\"\\^]*b[\\\"\\^]*e[\\\"\\^]*r|p[\\\"\\^]*c[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*i[\\\"\\^]*g|n[\\\"\\^]*e[\\\"\\^]*t[\\\"\\^]*c[\\\"\\^]*p[\\\"\\^]*l|c[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*l[\\\"\\^]*s)|a[\\\"\\^]*(?:d[\\\"\\^]*(?:d[\\\"\\^]*u[\\\"\\^]*s[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*s|m[\\\"\\^]*o[\\\"\\^]*d[\\\"\\^]*c[\\\"\\^]*m[\\\"\\^]*d)|r[\\\"\\^]*p[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|t[\\\"\\^]*t[\\\"\\^]*r[\\\"\\^]*i[\\\"\\^]*b|s[\\\"\\^]*s[\\\"\\^]*o[\\\"\\^]*c|z[\\\"\\^]*m[\\\"\\^]*a[\\\"\\^]*n)|l[\\\"\\^]*(?:o[\\\"\\^]*g[\\\"\\^]*(?:e[\\\"\\^]*v[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*t|t[\\\"\\^]*i[\\\"\\^]*m[\\\"\\^]*e|m[\\\"\\^]*a[\\\"\\^]*n|o[\\\"\\^]*f[\\\"\\^]*f)|a[\\\"\\^]*b[\\\"\\^]*e[\\\"\\^]*l[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|u[\\\"\\^]*s[\\\"\\^]*r[\\\"\\^]*m[\\\"\\^]*g[\\\"\\^]*r)|b[\\\"\\^]*(?:(?:c[\\\"\\^]*d[\\\"\\^]*(?:b[\\\"\\^]*o[\\\"\\^]*o|e[\\\"\\^]*d[\\\"\\^]*i)|r[\\\"\\^]*o[\\\"\\^]*w[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*a)[\\\"\\^]*t|i[\\\"\\^]*t[\\\"\\^]*s[\\\"\\^]*a[\\\"\\^]*d[\\\"\\^]*m[\\\"\\^]*i[\\\"\\^]*n|o[\\\"\\^]*o[\\\"\\^]*t[\\\"\\^]*c[\\\"\\^]*f[\\\"\\^]*g)|h[\\\"\\^]*(?:o[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*n[\\\"\\^]*a[\\\"\\^]*m[\\\"\\^]*e|d[\\\"\\^]*w[\\\"\\^]*w[\\\"\\^]*i[\\\"\\^]*z)|j[\\\"\\^]*a[\\\"\\^]*v[\\\"\\^]*a[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|7[\\\"\\^]*z(?:[\\\"\\^]*[ar])?)(?:\\.[\\\"\\^]*\\w+)?\\b",
+
+/* ********************************** */
+
+/**
+ *This regex is also triggered by an Oracle WebLogic Remote Command Execution exploit:
+ *[ Oracle WebLogic vulnerability CVE-2017-10271 - Exploit tested: https://www.exploit-db.com/exploits/43458 ]
+ */
+
+ "(?i)(?:;|\\{|\\||\\|\\||&|&&|\\n|\\r|`)\\s*[\\(,@\\'\\\"\\s]*(?:[\\w'\\\"\\./]+/|[\\\\\\\\'\\\"\\^]*\\w[\\\\\\\\'\\\"\\^]*:.*\\\\\\\\|[\\^\\.\\w '\\\"/\\\\\\\\]*\\\\\\\\)?[\\\"\\^]*(?:s[\\\"\\^]*(?:y[\\\"\\^]*s[\\\"\\^]*(?:t[\\\"\\^]*e[\\\"\\^]*m[\\\"\\^]*(?:p[\\\"\\^]*r[\\\"\\^]*o[\\\"\\^]*p[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*e[\\\"\\^]*s[\\\"\\^]*(?:d[\\\"\\^]*a[\\\"\\^]*t[\\\"\\^]*a[\\\"\\^]*e[\\\"\\^]*x[\\\"\\^]*e[\\\"\\^]*c[\\\"\\^]*u[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*p[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*v[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*o[\\\"\\^]*n|(?:p[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*f[\\\"\\^]*o[\\\"\\^]*r[\\\"\\^]*m[\\\"\\^]*a[\\\"\\^]*n[\\\"\\^]*c|h[\\\"\\^]*a[\\\"\\^]*r[\\\"\\^]*d[\\\"\\^]*w[\\\"\\^]*a[\\\"\\^]*r)[\\\"\\^]*e|a[\\\"\\^]*d[\\\"\\^]*v[\\\"\\^]*a[\\\"\\^]*n[\\\"\\^]*c[\\\"\\^]*e[\\\"\\^]*d)|i[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*o)|k[\\\"\\^]*e[\\\"\\^]*y|d[\\\"\\^]*m)|h[\\\"\\^]*(?:o[\\\"\\^]*(?:w[\\\"\\^]*(?:g[\\\"\\^]*r[\\\"\\^]*p|m[\\\"\\^]*b[\\\"\\^]*r)[\\\"\\^]*s|r[\\\"\\^]*t[\\\"\\^]*c[\\\"\\^]*u[\\\"\\^]*t)|e[\\\"\\^]*l[\\\"\\^]*l[\\\"\\^]*r[\\\"\\^]*u[\\\"\\^]*n[\\\"\\^]*a[\\\"\\^]*s|u[\\\"\\^]*t[\\\"\\^]*d[\\\"\\^]*o[\\\"\\^]*w[\\\"\\^]*n|r[\\\"\\^]*p[\\\"\\^]*u[\\\"\\^]*b[\\\"\\^]*w|a[\\\"\\^]*r[\\\"\\^]*e|i[\\\"\\^]*f[\\\"\\^]*t)|e[\\\"\\^]*(?:t[\\\"\\^]*(?:(?:x[\\\"\\^]*)?(?:[\\s,;]|\\.|/|<|>).*|l[\\\"\\^]*o[\\\"\\^]*c[\\\"\\^]*a[\\\"\\^]*l)|c[\\\"\\^]*p[\\\"\\^]*o[\\\"\\^]*l|l[\\\"\\^]*e[\\\"\\^]*c[\\\"\\^]*t)|c[\\\"\\^]*(?:h[\\\"\\^]*t[\\\"\\^]*a[\\\"\\^]*s[\\\"\\^]*k[\\\"\\^]*s|l[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*t)|u[\\\"\\^]*b[\\\"\\^]*(?:i[\\\"\\^]*n[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*l|s[\\\"\\^]*t)|t[\\\"\\^]*a[\\\"\\^]*r[\\\"\\^]*t[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|i[\\\"\\^]*g[\\\"\\^]*v[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*i[\\\"\\^]*f|l[\\\"\\^]*(?:e[\\\"\\^]*e[\\\"\\^]*p|m[\\\"\\^]*g[\\\"\\^]*r)|o[\\\"\\^]*r[\\\"\\^]*t|f[\\\"\\^]*c|v[\\\"\\^]*n)|p[\\\"\\^]*(?:s[\\\"\\^]*(?:s[\\\"\\^]*(?:h[\\\"\\^]*u[\\\"\\^]*t[\\\"\\^]*d[\\\"\\^]*o[\\\"\\^]*w[\\\"\\^]*n|e[\\\"\\^]*r[\\\"\\^]*v[\\\"\\^]*i[\\\"\\^]*c[\\\"\\^]*e|u[\\\"\\^]*s[\\\"\\^]*p[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*d)|l[\\\"\\^]*(?:o[\\\"\\^]*g[\\\"\\^]*(?:g[\\\"\\^]*e[\\\"\\^]*d[\\\"\\^]*o[\\\"\\^]*n|l[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*t)|i[\\\"\\^]*s[\\\"\\^]*t)|p[\\\"\\^]*(?:a[\\\"\\^]*s[\\\"\\^]*s[\\\"\\^]*w[\\\"\\^]*d|i[\\\"\\^]*n[\\\"\\^]*g)|g[\\\"\\^]*e[\\\"\\^]*t[\\\"\\^]*s[\\\"\\^]*i[\\\"\\^]*d|e[\\\"\\^]*x[\\\"\\^]*e[\\\"\\^]*c|f[\\\"\\^]*i[\\\"\\^]*l[\\\"\\^]*e|i[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*o|k[\\\"\\^]*i[\\\"\\^]*l[\\\"\\^]*l)|o[\\\"\\^]*(?:w[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*(?:s[\\\"\\^]*h[\\\"\\^]*e[\\\"\\^]*l[\\\"\\^]*l(?:[\\\"\\^]*_[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*e)?|c[\\\"\\^]*f[\\\"\\^]*g)|r[\\\"\\^]*t[\\\"\\^]*q[\\\"\\^]*r[\\\"\\^]*y|p[\\\"\\^]*d)|r[\\\"\\^]*(?:i[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*(?:(?:[\\s,;]|\\.|/|<|>).*|b[\\\"\\^]*r[\\\"\\^]*m)|n[\\\"\\^]*(?:c[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*g|m[\\\"\\^]*n[\\\"\\^]*g[\\\"\\^]*r)|o[\\\"\\^]*m[\\\"\\^]*p[\\\"\\^]*t)|a[\\\"\\^]*t[\\\"\\^]*h[\\\"\\^]*(?:p[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*g|(?:[\\s,;]|\\.|/|<|>).*)|e[\\\"\\^]*r[\\\"\\^]*(?:l(?:[\\\"\\^]*(?:s[\\\"\\^]*h|5))?|f[\\\"\\^]*m[\\\"\\^]*o[\\\"\\^]*n)|y[\\\"\\^]*t[\\\"\\^]*h[\\\"\\^]*o[\\\"\\^]*n(?:[\\\"\\^]*(?:3(?:[\\\"\\^]*m)?|2))?|k[\\\"\\^]*g[\\\"\\^]*m[\\\"\\^]*g[\\\"\\^]*r|h[\\\"\\^]*p(?:[\\\"\\^]*[57])?|u[\\\"\\^]*s[\\\"\\^]*h[\\\"\\^]*d|i[\\\"\\^]*n[\\\"\\^]*g)|r[\\\"\\^]*(?:e[\\\"\\^]*(?:(?:p[\\\"\\^]*l[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*e|n(?:[\\\"\\^]*a[\\\"\\^]*m[\\\"\\^]*e)?|s[\\\"\\^]*e[\\\"\\^]*t)[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|g[\\\"\\^]*(?:s[\\\"\\^]*v[\\\"\\^]*r[\\\"\\^]*3[\\\"\\^]*2|e[\\\"\\^]*d[\\\"\\^]*i[\\\"\\^]*t|(?:[\\s,;]|\\.|/|<|>).*|i[\\\"\\^]*n[\\\"\\^]*i)|c[\\\"\\^]*(?:d[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*c|o[\\\"\\^]*v[\\\"\\^]*e[\\\"\\^]*r)|k[\\\"\\^]*e[\\\"\\^]*y[\\\"\\^]*w[\\\"\\^]*i[\\\"\\^]*z)|u[\\\"\\^]*(?:n[\\\"\\^]*(?:d[\\\"\\^]*l[\\\"\\^]*l[\\\"\\^]*3[\\\"\\^]*2|a[\\\"\\^]*s)|b[\\\"\\^]*y[\\\"\\^]*(?:1(?:[\\\"\\^]*[89])?|2[\\\"\\^]*[012]))|a[\\\"\\^]*(?:s[\\\"\\^]*(?:p[\\\"\\^]*h[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*e|d[\\\"\\^]*i[\\\"\\^]*a[\\\"\\^]*l)|r[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)|m[\\\"\\^]*(?:(?:d[\\\"\\^]*i[\\\"\\^]*r[\\\"\\^]*)?(?:[\\s,;]|\\.|/|<|>).*|t[\\\"\\^]*s[\\\"\\^]*h[\\\"\\^]*a[\\\"\\^]*r[\\\"\\^]*e)|o[\\\"\\^]*(?:u[\\\"\\^]*t[\\\"\\^]*e[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|b[\\\"\\^]*o[\\\"\\^]*c[\\\"\\^]*o[\\\"\\^]*p[\\\"\\^]*y)|s[\\\"\\^]*(?:t[\\\"\\^]*r[\\\"\\^]*u[\\\"\\^]*i|y[\\\"\\^]*n[\\\"\\^]*c)|d[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)|t[\\\"\\^]*(?:a[\\\"\\^]*(?:s[\\\"\\^]*k[\\\"\\^]*(?:k[\\\"\\^]*i[\\\"\\^]*l[\\\"\\^]*l|l[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*t|s[\\\"\\^]*c[\\\"\\^]*h[\\\"\\^]*d|m[\\\"\\^]*g[\\\"\\^]*r)|k[\\\"\\^]*e[\\\"\\^]*o[\\\"\\^]*w[\\\"\\^]*n)|(?:i[\\\"\\^]*m[\\\"\\^]*e[\\\"\\^]*o[\\\"\\^]*u|p[\\\"\\^]*m[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*i|e[\\\"\\^]*l[\\\"\\^]*n[\\\"\\^]*e|l[\\\"\\^]*i[\\\"\\^]*s)[\\\"\\^]*t|s[\\\"\\^]*(?:d[\\\"\\^]*i[\\\"\\^]*s[\\\"\\^]*c[\\\"\\^]*o|s[\\\"\\^]*h[\\\"\\^]*u[\\\"\\^]*t[\\\"\\^]*d)[\\\"\\^]*n|y[\\\"\\^]*p[\\\"\\^]*e[\\\"\\^]*(?:p[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*f|(?:[\\s,;]|\\.|/|<|>).*)|r[\\\"\\^]*(?:a[\\\"\\^]*c[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*t|e[\\\"\\^]*e))|w[\\\"\\^]*(?:i[\\\"\\^]*n[\\\"\\^]*(?:d[\\\"\\^]*i[\\\"\\^]*f[\\\"\\^]*f|m[\\\"\\^]*s[\\\"\\^]*d[\\\"\\^]*p|v[\\\"\\^]*a[\\\"\\^]*r|r[\\\"\\^]*[ms])|u[\\\"\\^]*(?:a[\\\"\\^]*(?:u[\\\"\\^]*c[\\\"\\^]*l[\\\"\\^]*t|p[\\\"\\^]*p)|s[\\\"\\^]*a)|s[\\\"\\^]*c[\\\"\\^]*(?:r[\\\"\\^]*i[\\\"\\^]*p[\\\"\\^]*t|u[\\\"\\^]*i)|e[\\\"\\^]*v[\\\"\\^]*t[\\\"\\^]*u[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*l|m[\\\"\\^]*i[\\\"\\^]*(?:m[\\\"\\^]*g[\\\"\\^]*m[\\\"\\^]*t|c)|a[\\\"\\^]*i[\\\"\\^]*t[\\\"\\^]*f[\\\"\\^]*o[\\\"\\^]*r|h[\\\"\\^]*o[\\\"\\^]*a[\\\"\\^]*m[\\\"\\^]*i|g[\\\"\\^]*e[\\\"\\^]*t)|u[\\\"\\^]*(?:s[\\\"\\^]*(?:e[\\\"\\^]*r[\\\"\\^]*a[\\\"\\^]*c[\\\"\\^]*c[\\\"\\^]*o[\\\"\\^]*u[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*c[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*t[\\\"\\^]*r[\\\"\\^]*o[\\\"\\^]*l[\\\"\\^]*s[\\\"\\^]*e[\\\"\\^]*t[\\\"\\^]*t[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*g[\\\"\\^]*s|r[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*a[\\\"\\^]*t)|n[\\\"\\^]*(?:r[\\\"\\^]*a[\\\"\\^]*r|z[\\\"\\^]*i[\\\"\\^]*p))|q[\\\"\\^]*(?:u[\\\"\\^]*e[\\\"\\^]*r[\\\"\\^]*y[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|p[\\\"\\^]*r[\\\"\\^]*o[\\\"\\^]*c[\\\"\\^]*e[\\\"\\^]*s[\\\"\\^]*s|w[\\\"\\^]*i[\\\"\\^]*n[\\\"\\^]*s[\\\"\\^]*t[\\\"\\^]*a|g[\\\"\\^]*r[\\\"\\^]*e[\\\"\\^]*p)|o[\\\"\\^]*(?:d[\\\"\\^]*b[\\\"\\^]*c[\\\"\\^]*(?:a[\\\"\\^]*d[\\\"\\^]*3[\\\"\\^]*2|c[\\\"\\^]*o[\\\"\\^]*n[\\\"\\^]*f)|p[\\\"\\^]*e[\\\"\\^]*n[\\\"\\^]*f[\\\"\\^]*i[\\\"\\^]*l[\\\"\\^]*e[\\\"\\^]*s)|v[\\\"\\^]*(?:o[\\\"\\^]*l[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*|e[\\\"\\^]*r[\\\"\\^]*i[\\\"\\^]*f[\\\"\\^]*y)|x[\\\"\\^]*c[\\\"\\^]*(?:a[\\\"\\^]*c[\\\"\\^]*l[\\\"\\^]*s|o[\\\"\\^]*p[\\\"\\^]*y)|z[\\\"\\^]*i[\\\"\\^]*p[\\\"\\^]*(?:[\\s,;]|\\.|/|<|>).*)(?:\\.[\\\"\\^]*\\w+)?\\b",
+
+/* ********************************** */
+
+/**
+ * [ Unix shell expressions ]
+ *
+ * Detects the following patterns which are common in Unix shell scripts
+ * and oneliners:
+ *
+ * $(foo) Command substitution
+ * ${foo} Parameter expansion
+ * <(foo) Process substitution
+ * >(foo) Process substitution
+ * $((foo)) Arithmetic expansion
+ */
+
+ "(?:\\$(?:\\((?:\\(.*\\)|.*)\\)|\\{.*\\})|[<>]\\(.*\\))",
+
+/* ********************************** */
+
+/**
+ * [ Windows FOR, IF commands ]
+ *
+ * This regex detects Windows command shell FOR and IF commands.
+ *
+ * Examples:
+ *
+ * FOR %a IN (set) DO
+ * FOR /D %a IN (dirs) DO
+ * FOR /F "options" %a IN (text|"text") DO
+ * FOR /L %a IN (start,step,end) DO
+ * FOR /R C:\dir %A IN (set) DO
+ *
+ * IF [/I] [NOT] EXIST filename | DEFINED define | ERRORLEVEL n | CMDEXTVERSION n
+ * IF [/I] [NOT] item1 [==|EQU|NEQ|LSS|LEQ|GTR|GEQ] item2
+ * IF [/I] [NOT] (item1) [==|EQU|NEQ|LSS|LEQ|GTR|GEQ] (item2)
+ *
+ * http://ss64.com/nt/if.html
+ * http://ss64.com/nt/for.html
+ */
+
+ "\\b(?:if(?:/i)?(?: not)?(?: exist\\b| defined\\b| errorlevel\\b| cmdextversion\\b|(?: |\\().*(?:\\bgeq\\b|\\bequ\\b|\\bneq\\b|\\bleq\\b|\\bgtr\\b|\\blss\\b|==))|for(?:/[dflr].*)? %+[^ ]+ in\\(.*\\)\\s?do)",
+
+/* ********************************** */
+
+/**
+ * [ Unix direct remote command execution ]
+ *
+ * Detects Unix commands at the start of a parameter (direct RCE).
+ * Example: foo=wget%20www.example.com
+ *
+ * This case is different from command injection, where a
+ * command string is appended (injected) to a regular parameter, and then
+ * passed to a shell unescaped.
+ *
+ * This regex is also triggered by an Oracle WebLogic Remote Command Execution exploit:
+ * [ Oracle WebLogic vulnerability CVE-2017-10271 - Exploit tested: https://www.exploit-db.com/exploits/43458 ]
+ */
+
+ "(?:^|=)\\s*(?:{|\\s*\\(\\s*|\\w+=(?:[^\\s]*|\\$.*|\\$.*|<.*|>.*|\\'.*\\'|\\\".*\\\")\\s+|!\\s*|\\$)*\\s*(?:'|\\\")*(?:[\\?\\*\\[\\]\\(\\)\\-\\|+\\w'\\\"\\./\\\\\\\\]+/)?[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*(?:s(?:[\\\\\\\\'\\\"]*(?:b[\\\\\\\\'\\\"]*_[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*e|c[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*u|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*d|p[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*i|u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*b|-[\\\\\\\\'\\\"]*F|o[\\\\\\\\'\\\"]*f))?|z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|m[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|a)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s)|e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*(?:(?:f[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l|p[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*p)[\\\\\\\\'\\\"]*e|e[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o)|a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*g(?:[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n)?|c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*m)|w[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d)?|f[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t)?|y[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*x)|s[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*v|s[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*d)|n[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l|d)|h(?:[\\\\\\\\'\\\"]*\\.[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*b)?|o[\\\\\\\\'\\\"]*(?:u[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e|c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*s|y[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*l|c[\\\\\\\\'\\\"]*(?:h[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*d|p)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|f[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*p|u[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*o|s[\\\\\\\\'\\\"]*h|v[\\\\\\\\'\\\"]*n)|p[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r(?:[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p))?|y[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n(?:[\\\\\\\\'\\\"]*(?:3(?:[\\\\\\\\'\\\"]*m)?|2))?|k[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*x[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*c|i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*l)|r[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*v|(?:g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|f[\\\\\\\\'\\\"]*t)[\\\\\\\\'\\\"]*p|e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*l(?:[\\\\\\\\'\\\"]*5)?|h[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*[57])?|i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g|o[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*d)|n[\\\\\\\\'\\\"]*(?:c(?:[\\\\\\\\'\\\"]*(?:\\.[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*l|o[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*d)|a[\\\\\\\\'\\\"]*t))?|e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*(?:k[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*p|(?:s[\\\\\\\\'\\\"]*t|c)[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|o[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*p|p[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g|s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|t[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e|i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*g)|s[\\\\\\\\'\\\"]*h)|r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e(?:[\\\\\\\\'\\\"]*6)?|i[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e(?:[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*t)?|a[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*l(?:[\\\\\\\\'\\\"]*f)?|r)|e[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t)|r[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*(?:p[\\\\\\\\'\\\"]*(?:l[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*e|e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|a[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*h|n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e)|u[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*y(?:[\\\\\\\\'\\\"]*(?:1(?:[\\\\\\\\'\\\"]*[89])?|2[\\\\\\\\'\\\"]*[012]))?|m[\\\\\\\\'\\\"]*(?:u[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*e|d[\\\\\\\\'\\\"]*i)[\\\\\\\\'\\\"]*r|n[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*o|s[\\\\\\\\'\\\"]*y[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*c|c[\\\\\\\\'\\\"]*p)|b[\\\\\\\\'\\\"]*(?:z[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t)|s[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r)|u[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n|a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*h)|m[\\\\\\\\'\\\"]*(?:y[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*q[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*(?:d[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*p(?:[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w)?|h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*y|a[\\\\\\\\'\\\"]*d[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n|s[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*w)|l[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e|a[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*q)|u[\\\\\\\\'\\\"]*(?:n[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|l[\\\\\\\\'\\\"]*z[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*a|a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*e|r[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*r|s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|z[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*p|x[\\\\\\\\'\\\"]*z)|s[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*(?:(?:a[\\\\\\\\'\\\"]*d|m[\\\\\\\\'\\\"]*o)[\\\\\\\\'\\\"]*d|d[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*l))|x[\\\\\\\\'\\\"]*(?:z(?:[\\\\\\\\'\\\"]*(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|d[\\\\\\\\'\\\"]*(?:i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|e[\\\\\\\\'\\\"]*c)|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e))?|a[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*g[\\\\\\\\'\\\"]*s)|z[\\\\\\\\'\\\"]*(?:(?:(?:[ef][\\\\\\\\'\\\"]*)?g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|i)[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*(?:a[\\\\\\\\'\\\"]*t|m[\\\\\\\\'\\\"]*p)|d[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*s|m[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e|r[\\\\\\\\'\\\"]*u[\\\\\\\\'\\\"]*n|s[\\\\\\\\'\\\"]*h)|f[\\\\\\\\'\\\"]*(?:t[\\\\\\\\'\\\"]*p[\\\\\\\\'\\\"]*(?:s[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*s|w[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o)|i[\\\\\\\\'\\\"]*l[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*t|e[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*c[\\\\\\\\'\\\"]*h|g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p)|c[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*(?:m[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*d|p[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*c)|u[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*l|s[\\\\\\\\'\\\"]*h|c)|e[\\\\\\\\'\\\"]*(?:g[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*h[\\\\\\\\'\\\"]*o|v[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*l|x[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*c|n[\\\\\\\\'\\\"]*v)|d[\\\\\\\\'\\\"]*(?:m[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*g|a[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*h|i[\\\\\\\\'\\\"]*f[\\\\\\\\'\\\"]*f|o[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*s)|g[\\\\\\\\'\\\"]*(?:z[\\\\\\\\'\\\"]*(?:c[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*t|i[\\\\\\\\'\\\"]*p)|r[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*p|c[\\\\\\\\'\\\"]*c)|j[\\\\\\\\'\\\"]*(?:o[\\\\\\\\'\\\"]*b[\\\\\\\\'\\\"]*s[\\\\\\\\'\\\"]*\\s+[\\\\\\\\'\\\"]*-[\\\\\\\\'\\\"]*x|a[\\\\\\\\'\\\"]*v[\\\\\\\\'\\\"]*a)|w[\\\\\\\\'\\\"]*(?:h[\\\\\\\\'\\\"]*o[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*m[\\\\\\\\'\\\"]*i|g[\\\\\\\\'\\\"]*e[\\\\\\\\'\\\"]*t|3[\\\\\\\\'\\\"]*m)|i[\\\\\\\\'\\\"]*r[\\\\\\\\'\\\"]*b(?:[\\\\\\\\'\\\"]*(?:1(?:[\\\\\\\\'\\\"]*[89])?|2[\\\\\\\\'\\\"]*[012]))?|o[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*n[\\\\\\\\'\\\"]*t[\\\\\\\\'\\\"]*r|h[\\\\\\\\'\\\"]*(?:e[\\\\\\\\'\\\"]*a[\\\\\\\\'\\\"]*d|u[\\\\\\\\'\\\"]*p)|v[\\\\\\\\'\\\"]*i[\\\\\\\\'\\\"]*(?:g[\\\\\\\\'\\\"]*r|p[\\\\\\\\'\\\"]*w)|G[\\\\\\\\'\\\"]*E[\\\\\\\\'\\\"]*T)[\\\\\\\\'\\\"]*(?:\\s|;|\\||&|<|>)"
+};
+
+/* ********************************** */
+
+/**
+ * [ Unix shell snippets ]
+ *
+ * Detect some common sequences found in shell commands and scripts.
+ *
+ * This regex is also triggered by an Apache Struts Remote Code Execution exploit:
+ * [ Apache Struts vulnerability CVE-2017-9805 - Exploit tested: https://www.exploit-db.com/exploits/42627 ]
+ *
+ * This regex is also triggered by an Oracle WebLogic Remote Command Execution exploit:
+ * [ Oracle WebLogic vulnerability CVE-2017-10271 - Exploit tested: https://www.exploit-db.com/exploits/43458 ]
+ */
+
+static const char *ush_commands[] = {
+ "${CDPATH}",
+ "${DIRSTACK}",
+ "${HOME}",
+ "${HOSTNAME}",
+ "${IFS}",
+ "${OLDPWD}",
+ "${OSTYPE}",
+ "${PATH}",
+ "${PWD}",
+ "$CDPATH",
+ "$DIRSTACK",
+ "$HOME",
+ "$HOSTNAME",
+ "$IFS",
+ "$OLDPWD",
+ "$OSTYPE",
+ "$PATH",
+ "$PWD",
+ "bin/bash",
+ "bin/cat",
+ "bin/csh",
+ "bin/dash",
+ "bin/du",
+ "bin/echo",
+ "bin/grep",
+ "bin/less",
+ "bin/ls",
+ "bin/mknod",
+ "bin/more",
+ "bin/nc",
+ "bin/ps",
+ "bin/rbash",
+ "bin/sh",
+ "bin/sleep",
+ "bin/su",
+ "bin/tcsh",
+ "bin/uname",
+ "dev/fd/",
+ "dev/null",
+ "dev/stderr",
+ "dev/stdin",
+ "dev/stdout",
+ "dev/tcp/",
+ "dev/udp/",
+ "dev/zero",
+ "etc/group",
+ "etc/master.passwd",
+ "etc/passwd",
+ "etc/pwd.db",
+ "etc/shadow",
+ "etc/shells",
+ "etc/spwd.db",
+ "proc/self/",
+ "usr/bin/awk",
+ "usr/bin/base64",
+ "usr/bin/cat",
+ "usr/bin/cc",
+ "usr/bin/clang",
+ "usr/bin/clang++",
+ "usr/bin/curl",
+ "usr/bin/diff",
+ "usr/bin/env",
+ "usr/bin/fetch",
+ "usr/bin/file",
+ "usr/bin/find",
+ "usr/bin/ftp",
+ "usr/bin/gawk",
+ "usr/bin/gcc",
+ "usr/bin/head",
+ "usr/bin/hexdump",
+ "usr/bin/id",
+ "usr/bin/less",
+ "usr/bin/ln",
+ "usr/bin/mkfifo",
+ "usr/bin/more",
+ "usr/bin/nc",
+ "usr/bin/ncat",
+ "usr/bin/nice",
+ "usr/bin/nmap",
+ "usr/bin/perl",
+ "usr/bin/php",
+ "usr/bin/php5",
+ "usr/bin/php7",
+ "usr/bin/php-cgi",
+ "usr/bin/printf",
+ "usr/bin/psed",
+ "usr/bin/python",
+ "usr/bin/python2",
+ "usr/bin/python3",
+ "usr/bin/ruby",
+ "usr/bin/sed",
+ "usr/bin/socat",
+ "usr/bin/tail",
+ "usr/bin/tee",
+ "usr/bin/telnet",
+ "usr/bin/top",
+ "usr/bin/uname",
+ "usr/bin/wget",
+ "usr/bin/who",
+ "usr/bin/whoami",
+ "usr/bin/xargs",
+ "usr/bin/xxd",
+ "usr/bin/yes",
+ "usr/local/bin/bash",
+ "usr/local/bin/curl",
+ "usr/local/bin/ncat",
+ "usr/local/bin/nmap",
+ "usr/local/bin/perl",
+ "usr/local/bin/php",
+ "usr/local/bin/python",
+ "usr/local/bin/python2",
+ "usr/local/bin/python3",
+ "usr/local/bin/rbash",
+ "usr/local/bin/ruby",
+ "usr/local/bin/wget"
+};
+
+/* ********************************** */
+
+/**
+ * [ Windows PowerShell, cmdlets and options ]
+ *
+ * Detect some common PowerShell commands, cmdlets and options.
+ * These commands should be relatively uncommon in normal text, but
+ * potentially useful for code injection.
+ */
+
+static const char *pwsh_commands[] = {
+ "powershell.exe",
+ "Add-BitsFile",
+ "Add-Computer",
+ "Add-Content",
+ "Add-History",
+ "Add-Member",
+ "Add-PSSnapin",
+ "Add-Type",
+ "Checkpoint-Computer",
+ "Clear-Content",
+ "Clear-EventLog",
+ "Clear-History",
+ "Clear-Item",
+ "Clear-ItemProperty",
+ "Clear-Variable",
+ "Compare-Object",
+ "Complete-BitsTransfer",
+ "Complete-Transaction",
+ "Connect-WSMan",
+ "ConvertFrom-CSV",
+ "ConvertFrom-SecureString",
+ "ConvertFrom-StringData",
+ "Convert-Path",
+ "ConvertTo-CSV",
+ "ConvertTo-Html",
+ "ConvertTo-SecureString",
+ "ConvertTo-XML",
+ "Copy-Item",
+ "Copy-ItemProperty",
+ "Debug-Process",
+ "Disable-ComputerRestore",
+ "Disable-PSBreakpoint",
+ "Disable-PSSessionConfiguration",
+ "Disable-WSManCredSSP",
+ "Disconnect-WSMan",
+ "Enable-ComputerRestore",
+ "Enable-PSBreakpoint",
+ "Enable-PSRemoting",
+ "Enable-PSSessionConfiguration",
+ "Enable-WSManCredSSP",
+ "Enter-PSSession",
+ "Exit-PSSession",
+ "Export-Alias",
+ "Export-Clixml",
+ "Export-Console",
+ "Export-Counter",
+ "Export-CSV",
+ "Export-FormatData",
+ "Export-ModuleMember",
+ "Export-PSSession",
+ "ForEach-Object",
+ "Format-Custom",
+ "Format-List",
+ "Format-Table",
+ "Format-Wide",
+ "Get-Acl",
+ "Get-Alias",
+ "Get-AppLockerFileInformation",
+ "Get-AppLockerPolicy",
+ "Get-AuthenticodeSignature",
+ "Get-BitsTransfer",
+ "Get-ChildItem",
+ "Get-Command",
+ "Get-ComputerRestorePoint",
+ "Get-Content",
+ "Get-Counter",
+ "Get-Credential",
+ "Get-Culture",
+ "Get-Event",
+ "Get-EventLog",
+ "Get-EventSubscriber",
+ "Get-ExecutionPolicy",
+ "Get-FormatData",
+ "Get-History",
+ "Get-Host",
+ "Get-HotFix",
+ "Get-Item",
+ "Get-ItemProperty",
+ "Get-Job",
+ "Get-Location",
+ "Get-Member",
+ "Get-Module",
+ "Get-PfxCertificate",
+ "Get-Process",
+ "Get-PSBreakpoint",
+ "Get-PSCallStack",
+ "Get-PSDrive",
+ "Get-PSProvider",
+ "Get-PSSession",
+ "Get-PSSessionConfiguration",
+ "Get-PSSnapin",
+ "Get-Random",
+ "Get-Service",
+ "Get-TraceSource",
+ "Get-Transaction",
+ "Get-TroubleshootingPack",
+ "Get-UICulture",
+ "Get-Unique",
+ "Get-Variable",
+ "Get-WinEvent",
+ "Get-WmiObject",
+ "Get-WSManCredSSP",
+ "Get-WSManInstance",
+ "Group-Object",
+ "Import-Alias",
+ "Import-Clixml",
+ "Import-Counter",
+ "Import-CSV",
+ "Import-LocalizedData",
+ "Import-Module",
+ "Import-PSSession",
+ "Invoke-Command",
+ "Invoke-Expression",
+ "Invoke-History",
+ "Invoke-Item",
+ "Invoke-TroubleshootingPack",
+ "Invoke-WmiMethod",
+ "Invoke-WSManAction",
+ "Join-Path",
+ "Limit-EventLog",
+ "Measure-Command",
+ "Measure-Object",
+ "Move-Item",
+ "Move-ItemProperty",
+ "New-Alias",
+ "New-AppLockerPolicy",
+ "New-Event",
+ "New-EventLog",
+ "New-Item",
+ "New-ItemProperty",
+ "New-Module",
+ "New-ModuleManifest",
+ "New-Object",
+ "New-PSDrive",
+ "New-PSSession",
+ "New-PSSessionOption",
+ "New-Service",
+ "New-TimeSpan",
+ "New-Variable",
+ "New-WebServiceProxy",
+ "New-WSManInstance",
+ "New-WSManSessionOption",
+ "Out-Default",
+ "Out-File",
+ "Out-GridView",
+ "Out-Host",
+ "Out-Null",
+ "Out-Printer",
+ "Out-String",
+ "Pop-Location",
+ "Push-Location",
+ "Read-Host",
+ "Receive-Job",
+ "Register-EngineEvent",
+ "Register-ObjectEvent",
+ "Register-PSSessionConfiguration",
+ "Register-WmiEvent",
+ "Remove-BitsTransfer",
+ "Remove-Computer",
+ "Remove-Event",
+ "Remove-EventLog",
+ "Remove-Item",
+ "Remove-ItemProperty",
+ "Remove-Job",
+ "Remove-Module",
+ "Remove-PSBreakpoint",
+ "Remove-PSDrive",
+ "Remove-PSSession",
+ "Remove-PSSnapin",
+ "Remove-Variable",
+ "Remove-WmiObject",
+ "Remove-WSManInstance",
+ "Rename-Item",
+ "Rename-ItemProperty",
+ "Reset-ComputerMachinePassword",
+ "Resolve-Path",
+ "Restart-Computer",
+ "Restart-Service",
+ "Restore-Computer",
+ "Resume-BitsTransfer",
+ "Resume-Service",
+ "Select-Object",
+ "Select-String",
+ "Select-XML",
+ "Send-MailMessage",
+ "Set-Acl",
+ "Set-Alias",
+ "Set-AppLockerPolicy",
+ "Set-AuthenticodeSignature",
+ "Set-BitsTransfer",
+ "Set-Content",
+ "Set-Date",
+ "Set-ExecutionPolicy",
+ "Set-Item",
+ "Set-ItemProperty",
+ "Set-Location",
+ "Set-PSBreakpoint",
+ "Set-PSDebug",
+ "Set-PSSessionConfiguration",
+ "Set-Service",
+ "Set-StrictMode",
+ "Set-TraceSource",
+ "Set-Variable",
+ "Set-WmiInstance",
+ "Set-WSManInstance",
+ "Set-WSManQuickConfig",
+ "Show-EventLog",
+ "Sort-Object",
+ "Split-Path",
+ "Start-BitsTransfer",
+ "Start-Job",
+ "Start-Process",
+ "Start-Service",
+ "Start-Sleep",
+ "Start-Transaction",
+ "Start-Transcript",
+ "Stop-Computer",
+ "Stop-Job",
+ "Stop-Process",
+ "Stop-Service",
+ "Stop-Transcript",
+ "Suspend-BitsTransfer",
+ "Suspend-Service",
+ "Tee-Object",
+ "Test-AppLockerPolicy",
+ "Test-ComputerSecureChannel",
+ "Test-Connection",
+ "Test-ModuleManifest",
+ "Test-Path",
+ "Test-WSMan",
+ "Trace-Command",
+ "Undo-Transaction",
+ "Unregister-Event",
+ "Unregister-PSSessionConfiguration",
+ "Update-FormatData",
+ "Update-List",
+ "Update-TypeData",
+ "Use-Transaction",
+ "Wait-Event",
+ "Wait-Job",
+ "Wait-Process",
+ "Where-Object",
+ "Write-Debug",
+ "Write-Error",
+ "Write-EventLog",
+ "Write-Host",
+ "Write-Output",
+ "Write-Progress",
+ "Write-Verbose",
+ "Write-Warning",
+ "-EncodedCommand",
+ "-ExecutionPolicy",
+ "-PSConsoleFile"
+};
+
+#endif //HAVE_PCRE \ No newline at end of file
diff --git a/tests/pcap/WebattackRCE.pcap b/tests/pcap/WebattackRCE.pcap
new file mode 100644
index 000000000..aff445a5d
--- /dev/null
+++ b/tests/pcap/WebattackRCE.pcap
Binary files differ
diff --git a/tests/result/WebattackRCE.pcap.out b/tests/result/WebattackRCE.pcap.out
new file mode 100644
index 000000000..c25dfae92
--- /dev/null
+++ b/tests/result/WebattackRCE.pcap.out
@@ -0,0 +1,800 @@
+HTTP 777 186849 777
+HTTP_Proxy 20 4154 20
+
+ 1 TCP 127.0.0.1:51184 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/651 bytes -> 0 pkts/0 bytes][Goodput ratio: 89.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/vbulletin/ajax/api/hook/decodeArguments?arguments=O%3A12%3A%22vB_dB_Result%22%3A2%3A%7Bs%3A5%3A%22%00%2A%00db%22%3BO%3A17%3A%22vB_Database_MySQL%22%3A1%3A%7Bs%3A9%3A%22functions%22%3Ba%3A1%3A%7Bs%3A11%3A%22free_result%22%3Bs%3A6%3A%22assert%22%3][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007058)][PLAIN TEXT (GET /vbulletin/ajax/api/hook/de)]
+ 2 TCP 127.0.0.1:51182 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/644 bytes -> 0 pkts/0 bytes][Goodput ratio: 89.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/vb/ajax/api/hook/decodeArguments?arguments=O%3A12%3A%22vB_dB_Result%22%3A2%3A%7Bs%3A5%3A%22%00%2A%00db%22%3BO%3A17%3A%22vB_Database_MySQL%22%3A1%3A%7Bs%3A9%3A%22functions%22%3Ba%3A1%3A%7Bs%3A11%3A%22free_result%22%3Bs%3A6%3A%22assert%22%3B%7D%7D][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007058)][PLAIN TEXT (GET /vb/ajax/api/hook/decodeArg)]
+ 3 TCP 127.0.0.1:50946 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/387 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 4 TCP 127.0.0.1:50970 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/387 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 5 TCP 127.0.0.1:50934 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/386 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 6 TCP 127.0.0.1:50958 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/386 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (bGET /postnuke/html/index.php)]
+ 7 TCP 127.0.0.1:50944 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/382 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (YGET /postnuke/index.php)]
+ 8 TCP 127.0.0.1:50968 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/382 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (lGET /postnuke/index.php)]
+ 9 TCP 127.0.0.1:50932 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/381 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (PGET /postnuke/index.php)]
+ 10 TCP 127.0.0.1:50948 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/381 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /modules/index.php)]
+ 11 TCP 127.0.0.1:50956 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/381 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (aGET /postnuke/index.php)]
+ 12 TCP 127.0.0.1:50972 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/381 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (oGET /modules/index.php)]
+ 13 TCP 127.0.0.1:50936 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/380 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (SGET /modules/index.php)]
+ 14 TCP 127.0.0.1:50960 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/380 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (eGET /modules/index.php)]
+ 15 TCP 127.0.0.1:50950 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/379 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /phpBB/index.php)]
+ 16 TCP 127.0.0.1:50952 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/379 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /forum/index.php)]
+ 17 TCP 127.0.0.1:50974 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/379 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (pGET /phpBB/index.php)]
+ 18 TCP 127.0.0.1:50976 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/379 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (rGET /forum/index.php)]
+ 19 TCP 127.0.0.1:50878 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 20 TCP 127.0.0.1:50902 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 21 TCP 127.0.0.1:50938 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (TGET /phpBB/index.php)]
+ 22 TCP 127.0.0.1:50940 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (WGET /forum/index.php)]
+ 23 TCP 127.0.0.1:50962 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (fGET /phpBB/index.php)]
+ 24 TCP 127.0.0.1:50964 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/378 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (hGET /forum/index.php)]
+ 25 TCP 127.0.0.1:50866 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/377 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /postnuke/html/index.php)]
+ 26 TCP 127.0.0.1:50890 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/377 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (/GET /postnuke/html/index.php)]
+ 27 TCP 127.0.0.1:51158 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/376 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpmoadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /phpmoadmin/wu)]
+ 28 TCP 127.0.0.1:51160 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/376 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 29 TCP 127.0.0.1:51170 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/376 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpmoadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /phpmoadmin/wu)]
+ 30 TCP 127.0.0.1:51174 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/376 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 31 TCP 127.0.0.1:50990 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/374 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=PNphpBB2&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001400)][PLAIN TEXT (GET /index.php)]
+ 32 TCP 127.0.0.1:50876 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /postnuke/index.php)]
+ 33 TCP 127.0.0.1:50900 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /postnuke/index.php)]
+ 34 TCP 127.0.0.1:50942 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (GET /index.php)]
+ 35 TCP 127.0.0.1:50966 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?Nikto=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (GET /index.php)]
+ 36 TCP 127.0.0.1:51150 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpmoadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /phpmoadmin/moadmin.php)]
+ 37 TCP 127.0.0.1:51152 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 38 TCP 127.0.0.1:51162 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin/wu)]
+ 39 TCP 127.0.0.1:51168 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpmoadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /phpmoadmin/moadmin.php)]
+ 40 TCP 127.0.0.1:51172 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 41 TCP 127.0.0.1:51178 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/373 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin/wu)]
+ 42 TCP 127.0.0.1:50864 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /postnuke/index.php)]
+ 43 TCP 127.0.0.1:50880 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /modules/index.php)]
+ 44 TCP 127.0.0.1:50888 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /postnuke/index.php)]
+ 45 TCP 127.0.0.1:50904 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /modules/index.php)]
+ 46 TCP 127.0.0.1:50924 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001394)][PLAIN TEXT (GET /index.php)]
+ 47 TCP 127.0.0.1:50926 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001395)][PLAIN TEXT (KGET /index.php)]
+ 48 TCP 127.0.0.1:50930 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=Forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001397)][PLAIN TEXT (OGET /index.php)]
+ 49 TCP 127.0.0.1:50954 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/372 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=forums&file=viewtopic&t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001398)][PLAIN TEXT (GET /index.php)]
+ 50 TCP 127.0.0.1:50868 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/371 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /modules/index.php)]
+ 51 TCP 127.0.0.1:50892 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/371 bytes -> 0 pkts/0 bytes][Goodput ratio: 82.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /modules/index.php)]
+ 52 TCP 127.0.0.1:50882 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /phpBB/index.php)]
+ 53 TCP 127.0.0.1:50884 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /forum/index.php)]
+ 54 TCP 127.0.0.1:50906 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /phpBB/index.php)]
+ 55 TCP 127.0.0.1:50908 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /forum/index.php)]
+ 56 TCP 127.0.0.1:51154 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin/moadmin.php)]
+ 57 TCP 127.0.0.1:51176 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/370 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin/moadmin.php)]
+ 58 TCP 127.0.0.1:50870 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/369 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /phpBB/index.php)]
+ 59 TCP 127.0.0.1:50872 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/369 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT ( GET /forum/index.php)]
+ 60 TCP 127.0.0.1:50894 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/369 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /phpBB/index.php)]
+ 61 TCP 127.0.0.1:50896 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/369 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /forum/index.php)]
+ 62 TCP 127.0.0.1:50922 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/365 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=PNphpBB2&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001393)][PLAIN TEXT (GGET /index.php)]
+ 63 TCP 127.0.0.1:51156 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/365 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 64 TCP 127.0.0.1:51166 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/365 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wu-moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /wu)]
+ 65 TCP 127.0.0.1:50874 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/364 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?Nikto=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /index.php)]
+ 66 TCP 127.0.0.1:50898 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/364 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?Nikto=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /index.php)]
+ 67 TCP 127.0.0.1:50858 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/363 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001388)][PLAIN TEXT (GET /index.php)]
+ 68 TCP 127.0.0.1:50862 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/363 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=Forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001390)][PLAIN TEXT (GET /index.php)]
+ 69 TCP 127.0.0.1:50886 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/363 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?name=forums&file=viewtopic&t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001391)][PLAIN TEXT (GET /index.php)]
+ 70 TCP 127.0.0.1:50982 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/363 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (wGET /postnuke/html/viewtopic.p)]
+ 71 TCP 127.0.0.1:51148 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/362 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin.php)]
+ 72 TCP 127.0.0.1:51164 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/362 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/moadmin.php?collection=secpulse&action=listRows&find=array();phpinfo();exit;][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007011)][PLAIN TEXT (GET /moadmin.php)]
+ 73 TCP 127.0.0.1:50566 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/359 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.action][StatusCode: 0][ContentType: %{#context['com.opensymphony.xwork2.dispatcher.HttpServletRespo][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:strutshock)][PLAIN TEXT (GET /index.action HTTP/1.1)]
+ 74 TCP 127.0.0.1:50568 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/359 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.action][StatusCode: 0][ContentType: %{#context['com.opensymphony.xwork2.dispatcher.HttpServletRespo][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:strutshock)][PLAIN TEXT (GET /login.action HTTP/1.1)]
+ 75 TCP 127.0.0.1:50980 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/358 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (GET /postnuke/viewtopic.php)]
+ 76 TCP 127.0.0.1:50984 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/357 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (yGET /modules/viewtopic.php)]
+ 77 TCP 127.0.0.1:50986 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/355 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (GET /phpBB/viewtopic.php)]
+ 78 TCP 127.0.0.1:50988 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/355 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (GET /forum/viewtopic.php)]
+ 79 TCP 127.0.0.1:50914 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/354 bytes -> 0 pkts/0 bytes][Goodput ratio: 81.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/html/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (AGET /postnuke/html/viewtopic.p)]
+ 80 TCP 127.0.0.1:50912 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/349 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/postnuke/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (GET /postnuke/viewtopic.php)]
+ 81 TCP 127.0.0.1:50928 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/349 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001396)][PLAIN TEXT (GET /viewtopic.php)]
+ 82 TCP 127.0.0.1:50978 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/349 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/viewtopic.php?t=2&rush=%6c%73%20%2d%61%6c&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001399)][PLAIN TEXT (sGET /viewtopic.php)]
+ 83 TCP 127.0.0.1:50916 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/348 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (BGET /modules/viewtopic.php)]
+ 84 TCP 127.0.0.1:50564 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/347 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: %{#context['com.opensymphony.xwork2.dispatcher.HttpServletRespo][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:strutshock)][PLAIN TEXT (GET / HTTP/1.1)]
+ 85 TCP 127.0.0.1:50918 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/346 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpBB/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (GET /phpBB/viewtopic.php)]
+ 86 TCP 127.0.0.1:50920 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/346 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (FGET /forum/viewtopic.php)]
+ 87 TCP 127.0.0.1:51202 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/343 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.cgi?cli=aa%20aa%27cat%20/etc/hosts][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007234)][PLAIN TEXT (GET /login.cgi)]
+ 88 TCP 127.0.0.1:51194 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/341 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/RegistrationRequesterPortType][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007185)][PLAIN TEXT (GET /wls)]
+ 89 TCP 127.0.0.1:50860 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/340 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001389)][PLAIN TEXT (GET /viewtopic.php)]
+ 90 TCP 127.0.0.1:50910 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/340 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/viewtopic.php?t=2&rush=%64%69%72&highlight=%2527.%70%61%73%73%74%68%72%75%28%24%48%54%54%50%5f%47%45%54%5f%56%41%52%53%5b%72%75%73%68%5d%29.%2527][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001392)][PLAIN TEXT (GET /viewtopic.php)]
+ 91 TCP 127.0.0.1:51198 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/337 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/RegistrationPortTypeRPC11][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007187)][PLAIN TEXT (GET /wls)]
+ 92 TCP 127.0.0.1:51190 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/335 bytes -> 0 pkts/0 bytes][Goodput ratio: 80.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/RegistrationPortTypeRPC][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007183)][PLAIN TEXT (GET /wls)]
+ 93 TCP 127.0.0.1:51196 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/333 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/CoordinatorPortType11][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007186)][PLAIN TEXT (GET /wls)]
+ 94 TCP 127.0.0.1:51200 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/333 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/ParticipantPortType11][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007188)][PLAIN TEXT (GET /wls)]
+ 95 TCP 127.0.0.1:51188 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/331 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/CoordinatorPortType][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007182)][PLAIN TEXT (GET /wls)]
+ 96 TCP 127.0.0.1:51192 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/331 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/wls-wsat/ParticipantPortType][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007184)][PLAIN TEXT (GET /wls)]
+ 97 TCP 127.0.0.1:51186 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/326 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/shell?cat%20/etc/passwd][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007084)][PLAIN TEXT (GET /shell)]
+ 98 TCP 127.0.0.1:51204 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/323 bytes -> 0 pkts/0 bytes][Goodput ratio: 79.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/shell?cat+/etc/hosts][StatusCode: 0][ContentType: application/x-www-form-urlencoded][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:007235)][PLAIN TEXT (GET /shell)]
+ 99 TCP 127.0.0.1:51008 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/316 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/community/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /community/calendar.php)]
+ 100 TCP 127.0.0.1:51012 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/316 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/vbulletin/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003040)][PLAIN TEXT (GET /vbulletin/calendar.php)]
+ 101 TCP 127.0.0.1:51004 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/314 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/htforum/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /htforum/calendar.php)]
+ 102 TCP 127.0.0.1:51000 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/313 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forums/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /forums/calendar.php)]
+ 103 TCP 127.0.0.1:51002 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/313 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forumz/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /forumz/calendar.php)]
+ 104 TCP 127.0.0.1:50998 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/312 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forum/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /forum/calendar.php)]
+ 105 TCP 127.0.0.1:51006 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/312 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/board/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /board/calendar.php)]
+ 106 TCP 127.0.0.1:51010 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/309 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/vb/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003040)][PLAIN TEXT (GET /vb/calendar.php)]
+ 107 TCP 127.0.0.1:50996 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/306 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=%22;echo%20'';%20echo%20%60id%20%60;die();echo%22 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003039)][PLAIN TEXT (GET /calendar.php)]
+ 108 TCP 127.0.0.1:49774 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/304 bytes -> 0 pkts/0 bytes][Goodput ratio: 78.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/HASH(0x5559e84fbc40)%00][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 109 TCP 127.0.0.1:49778 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/299 bytes -> 0 pkts/0 bytes][Goodput ratio: 77.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/windows/win.ini%00][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 110 TCP 127.0.0.1:49776 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/297 bytes -> 0 pkts/0 bytes][Goodput ratio: 77.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/winnt/win.ini%00][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 111 TCP 127.0.0.1:49780 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/294 bytes -> 0 pkts/0 bytes][Goodput ratio: 77.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd%00 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 112 TCP 127.0.0.1:49772 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/293 bytes -> 0 pkts/0 bytes][Goodput ratio: 77.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/hosts%00][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 113 TCP 127.0.0.1:49770 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/292 bytes -> 0 pkts/0 bytes][Goodput ratio: 77.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/typo3/dev/translations.php?ONLY=%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/boot.ini%00][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Directory traversal check)][PLAIN TEXT (GET /typo)]
+ 114 TCP 127.0.0.1:50464 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/289 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/defaultwebpage.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /defaultwebpage.c)]
+ 115 TCP 127.0.0.1:50478 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/289 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/FormMail-clone.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /FormMail)]
+ 116 TCP 127.0.0.1:50518 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/289 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/restore_config.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /restore)]
+ 117 TCP 127.0.0.1:50444 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/288 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/administrator.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /administrator.cgi HTTP/1.1)]
+ 118 TCP 127.0.0.1:50468 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/288 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/entropysearch.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /entropysearch.cgi HTTP/1.1)]
+ 119 TCP 127.0.0.1:50472 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/286 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/environment.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /environment.cgi HTTP/1.1)]
+ 120 TCP 127.0.0.1:50446 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/284 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/authLogin.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /authLogin.cgi HTTP/1.1)]
+ 121 TCP 127.0.0.1:50480 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/284 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/guestbook.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /guestbook.cgi HTTP/1.1)]
+ 122 TCP 127.0.0.1:50550 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/284 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/tmUnblock.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /tmUnblock.cgi HTTP/1.1)]
+ 123 TCP 127.0.0.1:50466 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/download.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /download.c)]
+ 124 TCP 127.0.0.1:50474 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ezmlm-browse][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /ezmlm)]
+ 125 TCP 127.0.0.1:50476 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/formmail.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /formmail.c)]
+ 126 TCP 127.0.0.1:50482 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/helpdesk.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /helpdesk.c)]
+ 127 TCP 127.0.0.1:50494 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/loadpage.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /loadpage.c)]
+ 128 TCP 127.0.0.1:50538 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test_cgi.php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test)]
+ 129 TCP 127.0.0.1:50540 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/283 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test.cgi.php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test.c)]
+ 130 TCP 127.0.0.1:50454 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgiinfo.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /cgiinfo.cgi HTTP/1.1)]
+ 131 TCP 127.0.0.1:50458 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi_wrapper][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /cgi)]
+ 132 TCP 127.0.0.1:50460 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/contact.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /contact.cgi HTTP/1.1)]
+ 133 TCP 127.0.0.1:50502 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/pathtest.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /pathtest.pl HTTP/1.1)]
+ 134 TCP 127.0.0.1:50542 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test_cgi.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test)]
+ 135 TCP 127.0.0.1:50544 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test-cgi.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test)]
+ 136 TCP 127.0.0.1:50554 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/282 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/viewcvs.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /viewcvs.cgi HTTP/1.1)]
+ 137 TCP 127.0.0.1:50448 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/bb-hist.sh][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /bb)]
+ 138 TCP 127.0.0.1:50450 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/banner.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /banner.c)]
+ 139 TCP 127.0.0.1:50456 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgitest.py][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /cgitest.py HTTP/1.1)]
+ 140 TCP 127.0.0.1:50524 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/search.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /search.c)]
+ 141 TCP 127.0.0.1:50526 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/server.php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /server.php HTTP/1.1)]
+ 142 TCP 127.0.0.1:50530 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/281 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/sysinfo.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /sysinfo.pl HTTP/1.1)]
+ 143 TCP 127.0.0.1:50442 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /admin.cgi HTTP/1.1)]
+ 144 TCP 127.0.0.1:50462 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/count.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /count.cgi HTTP/1.1)]
+ 145 TCP 127.0.0.1:50484 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /index.cgi HTTP/1.1)]
+ 146 TCP 127.0.0.1:50486 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /index.php HTTP/1.1)]
+ 147 TCP 127.0.0.1:50496 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /login.cgi HTTP/1.1)]
+ 148 TCP 127.0.0.1:50498 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /login.php HTTP/1.1)]
+ 149 TCP 127.0.0.1:50552 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/uname.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /uname.cgi HTTP/1.1)]
+ 150 TCP 127.0.0.1:50558 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/280 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/whois.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /whois.cgi HTTP/1.1)]
+ 151 TCP 127.0.0.1:50452 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/book.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /book.c)]
+ 152 TCP 127.0.0.1:50488 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /index.pl HTTP/1.1)]
+ 153 TCP 127.0.0.1:50490 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/info.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /info.c)]
+ 154 TCP 127.0.0.1:50500 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.pl][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /login.pl HTTP/1.1)]
+ 155 TCP 127.0.0.1:50514 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php.fcgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php.fc)]
+ 156 TCP 127.0.0.1:50516 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/printenv][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /printenv HTTP/1.1)]
+ 157 TCP 127.0.0.1:50534 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test-cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test)]
+ 158 TCP 127.0.0.1:50536 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/279 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test.c)]
+ 159 TCP 127.0.0.1:50470 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/env.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /env.cgi HTTP/1.1)]
+ 160 TCP 127.0.0.1:50492 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/info.sh][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /info.sh HTTP/1.1)]
+ 161 TCP 127.0.0.1:50510 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php-cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php)]
+ 162 TCP 127.0.0.1:50512 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php.cgi][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php.cgi HTTP/1.1)]
+ 163 TCP 127.0.0.1:50520 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ruby.rb][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /ruby.rb HTTP/1.1)]
+ 164 TCP 127.0.0.1:50546 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test.py][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test.py HTTP/1.1)]
+ 165 TCP 127.0.0.1:50548 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test.sh][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test.sh HTTP/1.1)]
+ 166 TCP 127.0.0.1:50556 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/welcome][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /welcome HTTP/1.1)]
+ 167 TCP 127.0.0.1:51070 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/278 bytes -> 0 pkts/0 bytes][Goodput ratio: 76.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/reports/rwservlet?server=repserv+report=/tmp/hacker.rdf+destype=cache+desformat=PDF][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003437)][PLAIN TEXT (GET /reports/rwservlet)]
+ 168 TCP 127.0.0.1:50522 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/277 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/search][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /search HTTP/1.1)]
+ 169 TCP 127.0.0.1:50528 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/277 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/status][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /status HTTP/1.1)]
+ 170 TCP 127.0.0.1:50506 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/275 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php4][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php4 HTTP/1.1)]
+ 171 TCP 127.0.0.1:50508 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/275 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php5][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php5 HTTP/1.1)]
+ 172 TCP 127.0.0.1:50532 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/275 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/test][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /test HTTP/1.1)]
+ 173 TCP 127.0.0.1:51064 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/275 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/_vti_bin/..%255c..%255c..%255c..%255c..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003302)][PLAIN TEXT (bin/..)]
+ 174 TCP 127.0.0.1:50504 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/274 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/php][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET /php HTTP/1.1)]
+ 175 TCP 127.0.0.1:50662 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/272 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpnuke/modules.php?name=Network_Tools&file=index&func=ping_host&hinput=%3Bid][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001164)][PLAIN TEXT (GET /phpnuke/modules.php)]
+ 176 TCP 127.0.0.1:50438 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/271 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET / HTTP/1.1)]
+ 177 TCP 127.0.0.1:50440 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/271 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET / HTTP/1.1)]
+ 178 TCP 127.0.0.1:50560 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/271 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: () { :; }; echo 93e4r0-CVE-2014-6271: true;echo;echo;][PLAIN TEXT (GET / HTTP/1.1)]
+ 179 TCP 127.0.0.1:50660 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/270 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpnuke/html/.php?name=Network_Tools&file=index&func=ping_host&hinput=%3Bid][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001163)][PLAIN TEXT (GET /phpnuke/html/.php)]
+ 180 TCP 127.0.0.1:50656 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/269 bytes -> 0 pkts/0 bytes][Goodput ratio: 75.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/nuke/modules.php?name=Network_Tools&file=index&func=ping_host&hinput=%3Bid][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001161)][PLAIN TEXT (GET /nuke/modules.php)]
+ 181 TCP 127.0.0.1:50620 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/266 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir+c:%5c][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000494)][PLAIN TEXT (GET /msadc/..)]
+ 182 TCP 127.0.0.1:50622 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/266 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir+c:%5c][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000495)][PLAIN TEXT (GET /msadc/..)]
+ 183 TCP 127.0.0.1:51036 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/266 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/_vti_bin/..%c0%af../..%c0%af../..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003199)][PLAIN TEXT (bin/..)]
+ 184 TCP 127.0.0.1:51094 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/265 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/awcuser/cgi-bin/vcs?xsl=/vcs/vcs_home.xsl%26cat%20%22/etc/passwd%22%26 ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006994)][PLAIN TEXT (GET /awcuser/cgi)]
+ 185 TCP 127.0.0.1:50654 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/264 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/modules.php?name=Network_Tools&file=index&func=ping_host&hinput=%3Bid][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001160)][PLAIN TEXT (YGET /modules.php)]
+ 186 TCP 127.0.0.1:50688 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/261 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/level/16/exec//show/running-config/interface/FastEthernet][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001262)][PLAIN TEXT (rGET /level/16/level/16/exec//s)]
+ 187 TCP 127.0.0.1:51054 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/258 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/..%255c..%255c..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003297)][PLAIN TEXT (GET /msadc/..)]
+ 188 TCP 127.0.0.1:50594 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/257 bytes -> 0 pkts/0 bytes][Goodput ratio: 74.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/forumdisplay.php?GLOBALS\[\]=1&f=2&comma=\".system\('id'\)\.\"][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000070)][PLAIN TEXT (GET /forumdisplay.php)]
+ 189 TCP 127.0.0.1:51026 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/255 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/pbserver/..%c0%af../..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003194)][PLAIN TEXT (GET /pbserver/..)]
+ 190 TCP 127.0.0.1:51020 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/254 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/..%c0%af../..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003191)][PLAIN TEXT (GET /cgi)]
+ 191 TCP 127.0.0.1:51056 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/254 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/pbserver/..%255c..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003298)][PLAIN TEXT (GET /pbserver/..)]
+ 192 TCP 127.0.0.1:51050 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/253 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/..%255c..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003295)][PLAIN TEXT (GET /cgi)]
+ 193 TCP 127.0.0.1:51024 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/252 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/..%c0%af../..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003193)][PLAIN TEXT (GET /msadc/..)]
+ 194 TCP 127.0.0.1:50632 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/250 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/handler/netsonar;cat /etc/passwd|?data=Download][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001070)][PLAIN TEXT (HGET /c)]
+ 195 TCP 127.0.0.1:51028 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/250 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/rpc/..%c0%af../..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003195)][PLAIN TEXT (GET /rpc/..)]
+ 196 TCP 127.0.0.1:51034 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/248 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir+c:\"][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003198)][PLAIN TEXT (GET /scripts/..)]
+ 197 TCP 127.0.0.1:51052 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/248 bytes -> 0 pkts/0 bytes][Goodput ratio: 73.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/iisadmpwd/..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003296)][PLAIN TEXT (GET /iisadmpwd/..)]
+ 198 TCP 127.0.0.1:51060 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/246 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003300)][PLAIN TEXT (GET /scripts/..)]
+ 199 TCP 127.0.0.1:51062 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/246 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/..%255c..%255cwinnt/system32/cmd.exe?/c+ver][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003301)][PLAIN TEXT (GET /scripts/..)]
+ 200 TCP 127.0.0.1:50562 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/245 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/../../../../../../../../../../../../etc/shadow][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:dishwasher)][PLAIN TEXT (GET /../../../../../../../../..)]
+ 201 TCP 127.0.0.1:51022 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/245 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/iisadmpwd/..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003192)][PLAIN TEXT (GET /iisadmpwd/..)]
+ 202 TCP 127.0.0.1:49768 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/243 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:apache_expect_xss)][PLAIN TEXT (GET / HTTP/1.1)]
+ 203 TCP 127.0.0.1:51018 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/243 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/certsrv/..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003190)][PLAIN TEXT (GET /certsrv/..)]
+ 204 TCP 127.0.0.1:51030 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/243 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003196)][PLAIN TEXT (GET /scripts/..)]
+ 205 TCP 127.0.0.1:51032 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/243 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003197)][PLAIN TEXT (GET /scripts/..)]
+ 206 TCP 127.0.0.1:51058 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/242 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/rpc/..%255c..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003299)][PLAIN TEXT (GET /rpc/..)]
+ 207 TCP 127.0.0.1:51082 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/242 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/3rdparty/phpMyAdmin/server_sync.php?c=phpinfo()][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006608)][PLAIN TEXT (GET /3rdparty/phpMyAdmin/server)]
+ 208 TCP 127.0.0.1:51086 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/242 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/3rdparty/phpmyadmin/server_sync.php?c=phpinfo()][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006608)][PLAIN TEXT (GET /3rdparty/phpmyadmin/server)]
+ 209 TCP 127.0.0.1:49718 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/241 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: BREACH Test)][PLAIN TEXT (eGET / HTTP/1.1)]
+ 210 TCP 127.0.0.1:50684 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/241 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/level/16/exec//show/interfaces/status][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001260)][PLAIN TEXT (oGET /level/16/level/16/exec//s)]
+ 211 TCP 127.0.0.1:49764 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/240 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:negotiate)][PLAIN TEXT (GET /index HTTP/1.1)]
+ 212 TCP 127.0.0.1:50658 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/240 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/perl/-e%20%22system('cat%20/etc/passwd');\%22][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001162)][PLAIN TEXT (GET /perl/)]
+ 213 TCP 127.0.0.1:51048 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/239 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/certsrv/..%255cwinnt/system32/cmd.exe?/c+dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003294)][PLAIN TEXT (GET /certsrv/..)]
+ 214 TCP 127.0.0.1:51068 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/239 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ans/ans.pl?p=../../../../../usr/bin/id|&blah ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003371)][PLAIN TEXT (GET /ans/ans.pl)]
+ 215 TCP 127.0.0.1:49550 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/238 bytes -> 0 pkts/0 bytes][Goodput ratio: 72.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.rdf+destype=cache+desformat=PDF][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 216 TCP 127.0.0.1:50680 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/237 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/level/16/exec//show/configuration][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001258)][PLAIN TEXT (lGET /level/16/level/16/exec//s)]
+ 217 TCP 127.0.0.1:49690 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/235 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.6/0.0][< 1 sec][PLAIN TEXT (OGET /Microsoft)]
+ 218 TCP 127.0.0.1:49702 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/235 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.6/0.0][< 1 sec][PLAIN TEXT (GET /Microsoft)]
+ 219 TCP 127.0.0.1:50626 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/235 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/athenareg.php?pass=%20;cat%20/etc/passwd ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000667)][PLAIN TEXT (@GET /athenareg.php)]
+ 220 TCP 127.0.0.1:51066 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/235 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ans.pl?p=../../../../../usr/bin/id|&blah ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003370)][PLAIN TEXT (GET /ans.pl)]
+ 221 TCP 127.0.0.1:50608 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/234 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-local/cgiemail-1.6/cgicso?query=AAA][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000344)][PLAIN TEXT (GET /cgi)]
+ 222 TCP 127.0.0.1:50682 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/234 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/level/16/exec//show/interfaces][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001259)][PLAIN TEXT (nGET /level/16/level/16/exec//s)]
+ 223 TCP 127.0.0.1:51038 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/234 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin/system.php3?cmd=cat%20/etc/passwd ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003216)][PLAIN TEXT (GET /admin/system.php)]
+ 224 TCP 127.0.0.1:49664 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/233 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:origin_reflection)][PLAIN TEXT (GET / HTTP/1.1)]
+ 225 TCP 127.0.0.1:51084 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/233 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpMyAdmin/server_sync.php?c=phpinfo()][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006608)][PLAIN TEXT (GET /phpMyAdmin/server)]
+ 226 TCP 127.0.0.1:51088 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/233 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/phpmyadmin/server_sync.php?c=phpinfo()][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006608)][PLAIN TEXT (GET /phpmyadmin/server)]
+ 227 TCP 127.0.0.1:51042 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/232 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin/exec.php3?cmd=cat%20/etc/passwd ** RCE Injection **][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003218)][PLAIN TEXT (GET /admin/exec.php)]
+ 228 TCP 127.0.0.1:50574 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/231 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cfdocs/examples/cvbeans/beaninfo.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000014)][PLAIN TEXT (GET /cfdocs/examples/cv)]
+ 229 TCP 127.0.0.1:50644 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/231 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cfdocs/snippets/gettempdirectory.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001076)][PLAIN TEXT (GET /cfdocs/snippets/gettempdir)]
+ 230 TCP 127.0.0.1:50652 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/231 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/mods/apage/apage.cgi?f=file.htm.|id|][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001159)][PLAIN TEXT (GET /mods/apage/apage.c)]
+ 231 TCP 127.0.0.1:50672 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/231 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/exec/-///show/configuration][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001254)][PLAIN TEXT (fGET /level/16/exec/)]
+ 232 TCP 127.0.0.1:50686 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/231 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/level/16/exec//show/version][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001261)][PLAIN TEXT (GET /level/16/level/16/exec//sh)]
+ 233 TCP 127.0.0.1:50618 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/230 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/c/winnt/system32/cmd.exe?/c+dir+/OG][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000491)][PLAIN TEXT (GET /c/winnt/system)]
+ 234 TCP 127.0.0.1:50668 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/230 bytes -> 0 pkts/0 bytes][Goodput ratio: 71.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/pls/simpledad/admin_/dadentries.htm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001167)][PLAIN TEXT (GET /pls/simpledad/admin)]
+ 235 TCP 127.0.0.1:49644 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/229 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/clientaccesspolicy.xml][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:clientaccesspolicy)][PLAIN TEXT (GET /clientaccesspolicy.xml HTT)]
+ 236 TCP 127.0.0.1:49666 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/228 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:origin_reflection)][PLAIN TEXT (GET / HTTP/1.1)]
+ 237 TCP 127.0.0.1:50612 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/228 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/servlet/sunexamples.BBoardServlet][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000346)][PLAIN TEXT (GET /servlet/sunexamples.BBoard)]
+ 238 TCP 127.0.0.1:50576 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/227 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cfdocs/examples/parks/detail.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000015)][PLAIN TEXT (GET /cfdocs/examples/parks/deta)]
+ 239 TCP 127.0.0.1:50678 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/227 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/exec//show/access-lists][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001257)][PLAIN TEXT (GET /level/16/exec//show/access)]
+ 240 TCP 127.0.0.1:51040 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/227 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin/system.php3?cmd=dir%20c:\\][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003217)][PLAIN TEXT (GET /admin/system.php)]
+ 241 TCP 127.0.0.1:51090 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/226 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/pma/server_sync.php?c=phpinfo()][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006608)][PLAIN TEXT (GET /pma/server)]
+ 242 TCP 127.0.0.1:49684 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/225 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.4/0.0][< 1 sec][PLAIN TEXT (KGET /Autodiscover/Autodiscover)]
+ 243 TCP 127.0.0.1:50646 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/225 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/dostuff.php?action=modify_user][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001091)][PLAIN TEXT (SGET /dostuff.php)]
+ 244 TCP 127.0.0.1:51044 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/225 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin/exec.php3?cmd=dir%20c:\\][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003219)][PLAIN TEXT (GET /admin/exec.php)]
+ 245 TCP 127.0.0.1:49674 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/224 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/junk988.aspx][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (BGET /junk988.asp)]
+ 246 TCP 127.0.0.1:50598 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/224 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/html/cgi-bin/cgicso?query=AAA][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000072)][PLAIN TEXT (GET /html/c)]
+ 247 TCP 127.0.0.1:49670 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/223 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/junk999.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (@GET /junk999.asp HTTP/1.1)]
+ 248 TCP 127.0.0.1:49688 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/223 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.1/0.0][< 1 sec][PLAIN TEXT (NGET /Microsoft)]
+ 249 TCP 127.0.0.1:49672 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.aspx][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (AGET /index.asp)]
+ 250 TCP 127.0.0.1:49678 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.aspx][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (EGET /login.asp)]
+ 251 TCP 127.0.0.1:50592 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/samples/details.idc][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000023)][PLAIN TEXT (GET /scripts/samples/details.id)]
+ 252 TCP 127.0.0.1:50604 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 70.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/Carello/Carello.dll][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000144)][PLAIN TEXT (/GET /scripts/Carello/Carello.d)]
+ 253 TCP 127.0.0.1:49668 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/221 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (GET /index.asp HTTP/1.1)]
+ 254 TCP 127.0.0.1:49676 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/221 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:headers: Translate-f #1)][PLAIN TEXT (DGET /login.asp HTTP/1.1)]
+ 255 TCP 127.0.0.1:50614 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/221 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/servlets/SchedulerTransfer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000347)][PLAIN TEXT (GET /servlets/SchedulerTransfer)]
+ 256 TCP 127.0.0.1:50638 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/221 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ews/ews/architext_query.pl][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001073)][PLAIN TEXT (LGET /ews/ews/architext)]
+ 257 TCP 127.0.0.1:50642 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/221 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/instantwebmail/message.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001075)][PLAIN TEXT (PGET /instantwebmail/message.ph)]
+ 258 TCP 127.0.0.1:49562 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/220 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.BBoardServlet][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 259 TCP 127.0.0.1:49660 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/220 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/nonexistent.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (GET /nonexistent.nsf HTTP/1.1)]
+ 260 TCP 127.0.0.1:50610 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/220 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/servlet/SchedulerTransfer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000345)][PLAIN TEXT (GET /servlet/SchedulerTransfer )]
+ 261 TCP 127.0.0.1:50624 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/220 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/samples/adctest.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000496)][PLAIN TEXT (GET /msadc/samples/adctest.asp )]
+ 262 TCP 127.0.0.1:50628 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/220 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cd-cgi/sscd_suncourier.pl][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001067)][PLAIN TEXT (EGET /cd)]
+ 263 TCP 127.0.0.1:50596 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/219 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/guestbook/guestbook.html][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000071)][PLAIN TEXT (GET /guestbook/guestbook.html H)]
+ 264 TCP 127.0.0.1:50616 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/218 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/perl/-e%20print%20Hello][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000352)][PLAIN TEXT (GET /perl/)]
+ 265 TCP 127.0.0.1:49658 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/217 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/webadmin.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (GET /webadmin.nsf HTTP/1.1)]
+ 266 TCP 127.0.0.1:50636 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/217 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/DB4Web/10.10.10.10:100][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001072)][PLAIN TEXT (GET /DB)]
+ 267 TCP 127.0.0.1:49766 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/~bin][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:apacheusers: known user)][PLAIN TEXT (bin HTTP/1.1)]
+ 268 TCP 127.0.0.1:49886 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.lzma HTTP/1.)]
+ 269 TCP 127.0.0.1:49888 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.lzma HTTP/1.)]
+ 270 TCP 127.0.0.1:50290 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 271 TCP 127.0.0.1:50292 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 272 TCP 127.0.0.1:50408 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicons/favicon.ico][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicons/favicon.ico HTTP/)]
+ 273 TCP 127.0.0.1:50412 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicons/favicon.gif][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicons/favicon.gif HTTP/)]
+ 274 TCP 127.0.0.1:50416 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicons/favicon.png][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicons/favicon.png HTTP/)]
+ 275 TCP 127.0.0.1:50590 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/tiki/tiki-install.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000022)][PLAIN TEXT (GET /tiki/tiki)]
+ 276 TCP 127.0.0.1:50670 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/216 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/exec/-///pwd][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001253)][PLAIN TEXT (eGET /level/16/exec/)]
+ 277 TCP 127.0.0.1:49646 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/crossdomain.xml][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:crossdomain)][PLAIN TEXT (GET /crossdomain.xml HTTP/1.1)]
+ 278 TCP 127.0.0.1:49650 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/domcfg.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (.GET /domcfg.nsf HTTP/1.1)]
+ 279 TCP 127.0.0.1:49654 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin4.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (GET /admin4.nsf HTTP/1.1)]
+ 280 TCP 127.0.0.1:49656 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin5.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (GET /admin5.nsf HTTP/1.1)]
+ 281 TCP 127.0.0.1:49750 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/default.aspx][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /default.aspx HTTP/1.1)]
+ 282 TCP 127.0.0.1:50022 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (YGET /127)]
+ 283 TCP 127.0.0.1:50024 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 284 TCP 127.0.0.1:50146 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.bz)]
+ 285 TCP 127.0.0.1:50148 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.bz)]
+ 286 TCP 127.0.0.1:51014 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/215 bytes -> 0 pkts/0 bytes][Goodput ratio: 69.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/_vti_bin/fpcount.exe][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003089)][PLAIN TEXT (bin/fpcount.exe HTTP/1.1)]
+ 287 TCP 127.0.0.1:49592 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.exe|dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 288 TCP 127.0.0.1:49638 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin-sdb/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 289 TCP 127.0.0.1:49652 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/admin.nsf][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Domino detection)][PLAIN TEXT (/GET /admin.nsf HTTP/1.1)]
+ 290 TCP 127.0.0.1:49736 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.shtml][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (uGET /index.shtml HTTP/1.1)]
+ 291 TCP 127.0.0.1:49748 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/default.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /default.asp HTTP/1.1)]
+ 292 TCP 127.0.0.1:49752 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/default.htm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /default.htm HTTP/1.1)]
+ 293 TCP 127.0.0.1:49756 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.jhtml][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.jhtml HTTP/1.1)]
+ 294 TCP 127.0.0.1:49874 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.lzma HTTP/1.1)]
+ 295 TCP 127.0.0.1:49876 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.lzma HTTP/1.1)]
+ 296 TCP 127.0.0.1:49914 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 297 TCP 127.0.0.1:49916 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 298 TCP 127.0.0.1:50262 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.gz HTTP/1.1)]
+ 299 TCP 127.0.0.1:50264 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar.gz HTTP/1.1)]
+ 300 TCP 127.0.0.1:50634 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/webdist.cgi][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001071)][PLAIN TEXT (IGET /c)]
+ 301 TCP 127.0.0.1:50640 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/exec/show/config/cr][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001074)][PLAIN TEXT (NGET /exec/show/config/cr HTTP/)]
+ 302 TCP 127.0.0.1:50648 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/logjam/showhits.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001157)][PLAIN TEXT (UGET /logjam/showhits.php HTTP/)]
+ 303 TCP 127.0.0.1:50690 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001263)][PLAIN TEXT (tGET /level/16/exec//show HTTP/)]
+ 304 TCP 127.0.0.1:50692 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/17/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001264)][PLAIN TEXT (uGET /level/17/exec//show HTTP/)]
+ 305 TCP 127.0.0.1:50694 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/18/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001265)][PLAIN TEXT (wGET /level/18/exec//show HTTP/)]
+ 306 TCP 127.0.0.1:50696 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/19/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001266)][PLAIN TEXT (GET /level/19/exec//show HTTP/1)]
+ 307 TCP 127.0.0.1:50698 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/20/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001267)][PLAIN TEXT (GET /level/20/exec//show HTTP/1)]
+ 308 TCP 127.0.0.1:50700 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/21/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001268)][PLAIN TEXT (GET /level/21/exec//show HTTP/1)]
+ 309 TCP 127.0.0.1:50702 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/22/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001269)][PLAIN TEXT (GET /level/22/exec//show HTTP/1)]
+ 310 TCP 127.0.0.1:50704 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/23/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001270)][PLAIN TEXT (GET /level/23/exec//show HTTP/1)]
+ 311 TCP 127.0.0.1:50706 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/24/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001271)][PLAIN TEXT (GET /level/24/exec//show HTTP/1)]
+ 312 TCP 127.0.0.1:50708 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/25/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001272)][PLAIN TEXT (GET /level/25/exec//show HTTP/1)]
+ 313 TCP 127.0.0.1:50710 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/26/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001273)][PLAIN TEXT (GET /level/26/exec//show HTTP/1)]
+ 314 TCP 127.0.0.1:50712 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/27/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001274)][PLAIN TEXT (GET /level/27/exec//show HTTP/1)]
+ 315 TCP 127.0.0.1:50714 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/28/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001275)][PLAIN TEXT (GET /level/28/exec//show HTTP/1)]
+ 316 TCP 127.0.0.1:50716 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/29/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001276)][PLAIN TEXT (GET /level/29/exec//show HTTP/1)]
+ 317 TCP 127.0.0.1:50718 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/30/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001277)][PLAIN TEXT (GET /level/30/exec//show HTTP/1)]
+ 318 TCP 127.0.0.1:50720 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/31/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001278)][PLAIN TEXT (GET /level/31/exec//show HTTP/1)]
+ 319 TCP 127.0.0.1:50722 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/32/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001279)][PLAIN TEXT (GET /level/32/exec//show HTTP/1)]
+ 320 TCP 127.0.0.1:50724 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/33/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001280)][PLAIN TEXT (GET /level/33/exec//show HTTP/1)]
+ 321 TCP 127.0.0.1:50726 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/34/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001281)][PLAIN TEXT (GET /level/34/exec//show HTTP/1)]
+ 322 TCP 127.0.0.1:50728 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/35/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001282)][PLAIN TEXT (GET /level/35/exec//show HTTP/1)]
+ 323 TCP 127.0.0.1:50730 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/36/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001283)][PLAIN TEXT (GET /level/36/exec//show HTTP/1)]
+ 324 TCP 127.0.0.1:50732 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/37/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001284)][PLAIN TEXT (GET /level/37/exec//show HTTP/1)]
+ 325 TCP 127.0.0.1:50734 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/38/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001285)][PLAIN TEXT (GET /level/38/exec//show HTTP/1)]
+ 326 TCP 127.0.0.1:50736 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/39/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001286)][PLAIN TEXT (GET /level/39/exec//show HTTP/1)]
+ 327 TCP 127.0.0.1:50738 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/40/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001287)][PLAIN TEXT (GET /level/40/exec//show HTTP/1)]
+ 328 TCP 127.0.0.1:50740 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/41/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001288)][PLAIN TEXT (GET /level/41/exec//show HTTP/1)]
+ 329 TCP 127.0.0.1:50742 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/42/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001289)][PLAIN TEXT (GET /level/42/exec//show HTTP/1)]
+ 330 TCP 127.0.0.1:50744 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/43/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001290)][PLAIN TEXT (GET /level/43/exec//show HTTP/1)]
+ 331 TCP 127.0.0.1:50746 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/44/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001291)][PLAIN TEXT (GET /level/44/exec//show HTTP/1)]
+ 332 TCP 127.0.0.1:50748 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/45/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001292)][PLAIN TEXT (GET /level/45/exec//show HTTP/1)]
+ 333 TCP 127.0.0.1:50750 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/46/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001293)][PLAIN TEXT (GET /level/46/exec//show HTTP/1)]
+ 334 TCP 127.0.0.1:50752 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/47/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001294)][PLAIN TEXT (GET /level/47/exec//show HTTP/1)]
+ 335 TCP 127.0.0.1:50754 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/48/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001295)][PLAIN TEXT (GET /level/48/exec//show HTTP/1)]
+ 336 TCP 127.0.0.1:50756 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/49/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001296)][PLAIN TEXT (GET /level/49/exec//show HTTP/1)]
+ 337 TCP 127.0.0.1:50758 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/50/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001297)][PLAIN TEXT (GET /level/50/exec//show HTTP/1)]
+ 338 TCP 127.0.0.1:50760 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/51/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001298)][PLAIN TEXT (GET /level/51/exec//show HTTP/1)]
+ 339 TCP 127.0.0.1:50762 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/52/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001299)][PLAIN TEXT (GET /level/52/exec//show HTTP/1)]
+ 340 TCP 127.0.0.1:50764 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/53/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001300)][PLAIN TEXT (GET /level/53/exec//show HTTP/1)]
+ 341 TCP 127.0.0.1:50766 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/54/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001301)][PLAIN TEXT (GET /level/54/exec//show HTTP/1)]
+ 342 TCP 127.0.0.1:50768 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/55/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001302)][PLAIN TEXT (GET /level/55/exec//show HTTP/1)]
+ 343 TCP 127.0.0.1:50770 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/56/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001303)][PLAIN TEXT (GET /level/56/exec//show HTTP/1)]
+ 344 TCP 127.0.0.1:50772 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/57/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001304)][PLAIN TEXT (GET /level/57/exec//show HTTP/1)]
+ 345 TCP 127.0.0.1:50774 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/58/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001305)][PLAIN TEXT (GET /level/58/exec//show HTTP/1)]
+ 346 TCP 127.0.0.1:50776 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/59/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001306)][PLAIN TEXT (GET /level/59/exec//show HTTP/1)]
+ 347 TCP 127.0.0.1:50778 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/60/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001307)][PLAIN TEXT (GET /level/60/exec//show HTTP/1)]
+ 348 TCP 127.0.0.1:50780 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/61/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001308)][PLAIN TEXT (GET /level/61/exec//show HTTP/1)]
+ 349 TCP 127.0.0.1:50782 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/62/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001309)][PLAIN TEXT (GET /level/62/exec//show HTTP/1)]
+ 350 TCP 127.0.0.1:50784 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/63/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001310)][PLAIN TEXT (GET /level/63/exec//show HTTP/1)]
+ 351 TCP 127.0.0.1:50786 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/64/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001311)][PLAIN TEXT (GET /level/64/exec//show HTTP/1)]
+ 352 TCP 127.0.0.1:50788 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/65/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001312)][PLAIN TEXT (GET /level/65/exec//show HTTP/1)]
+ 353 TCP 127.0.0.1:50790 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/66/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001313)][PLAIN TEXT (GET /level/66/exec//show HTTP/1)]
+ 354 TCP 127.0.0.1:50792 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/67/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001314)][PLAIN TEXT (GET /level/67/exec//show HTTP/1)]
+ 355 TCP 127.0.0.1:50794 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/68/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001315)][PLAIN TEXT (GET /level/68/exec//show HTTP/1)]
+ 356 TCP 127.0.0.1:50796 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/69/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001316)][PLAIN TEXT (GET /level/69/exec//show HTTP/1)]
+ 357 TCP 127.0.0.1:50798 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/70/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001317)][PLAIN TEXT (GET /level/70/exec//show HTTP/1)]
+ 358 TCP 127.0.0.1:50800 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/71/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001318)][PLAIN TEXT (GET /level/71/exec//show HTTP/1)]
+ 359 TCP 127.0.0.1:50802 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/72/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001319)][PLAIN TEXT (GET /level/72/exec//show HTTP/1)]
+ 360 TCP 127.0.0.1:50804 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/73/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001320)][PLAIN TEXT (GET /level/73/exec//show HTTP/1)]
+ 361 TCP 127.0.0.1:50806 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/74/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001321)][PLAIN TEXT (GET /level/74/exec//show HTTP/1)]
+ 362 TCP 127.0.0.1:50808 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/75/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001322)][PLAIN TEXT (GET /level/75/exec//show HTTP/1)]
+ 363 TCP 127.0.0.1:50810 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/76/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001323)][PLAIN TEXT (GET /level/76/exec//show HTTP/1)]
+ 364 TCP 127.0.0.1:50812 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/77/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001324)][PLAIN TEXT (GET /level/77/exec//show HTTP/1)]
+ 365 TCP 127.0.0.1:50814 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/78/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001325)][PLAIN TEXT (GET /level/78/exec//show HTTP/1)]
+ 366 TCP 127.0.0.1:50816 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/79/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001326)][PLAIN TEXT (GET /level/79/exec//show HTTP/1)]
+ 367 TCP 127.0.0.1:50818 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/80/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001327)][PLAIN TEXT (GET /level/80/exec//show HTTP/1)]
+ 368 TCP 127.0.0.1:50820 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/81/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001328)][PLAIN TEXT (GET /level/81/exec//show HTTP/1)]
+ 369 TCP 127.0.0.1:50822 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/82/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001329)][PLAIN TEXT (GET /level/82/exec//show HTTP/1)]
+ 370 TCP 127.0.0.1:50824 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/83/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001330)][PLAIN TEXT (GET /level/83/exec//show HTTP/1)]
+ 371 TCP 127.0.0.1:50826 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/84/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001331)][PLAIN TEXT (GET /level/84/exec//show HTTP/1)]
+ 372 TCP 127.0.0.1:50828 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/85/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001332)][PLAIN TEXT (GET /level/85/exec//show HTTP/1)]
+ 373 TCP 127.0.0.1:50830 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/86/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001333)][PLAIN TEXT (GET /level/86/exec//show HTTP/1)]
+ 374 TCP 127.0.0.1:50832 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/87/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001334)][PLAIN TEXT (GET /level/87/exec//show HTTP/1)]
+ 375 TCP 127.0.0.1:50834 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/88/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001335)][PLAIN TEXT (GET /level/88/exec//show HTTP/1)]
+ 376 TCP 127.0.0.1:50836 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/89/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001336)][PLAIN TEXT (GET /level/89/exec//show HTTP/1)]
+ 377 TCP 127.0.0.1:50838 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/90/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001337)][PLAIN TEXT (GET /level/90/exec//show HTTP/1)]
+ 378 TCP 127.0.0.1:50840 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/91/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001338)][PLAIN TEXT (GET /level/91/exec//show HTTP/1)]
+ 379 TCP 127.0.0.1:50842 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/92/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001339)][PLAIN TEXT (GET /level/92/exec//show HTTP/1)]
+ 380 TCP 127.0.0.1:50844 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/93/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001340)][PLAIN TEXT (GET /level/93/exec//show HTTP/1)]
+ 381 TCP 127.0.0.1:50846 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/94/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001341)][PLAIN TEXT (GET /level/94/exec//show HTTP/1)]
+ 382 TCP 127.0.0.1:50848 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/95/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001342)][PLAIN TEXT (GET /level/95/exec//show HTTP/1)]
+ 383 TCP 127.0.0.1:50850 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/96/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001343)][PLAIN TEXT (GET /level/96/exec//show HTTP/1)]
+ 384 TCP 127.0.0.1:50852 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/97/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001344)][PLAIN TEXT (GET /level/97/exec//show HTTP/1)]
+ 385 TCP 127.0.0.1:50854 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/98/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001345)][PLAIN TEXT (GET /level/98/exec//show HTTP/1)]
+ 386 TCP 127.0.0.1:50856 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/214 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/99/exec//show][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001346)][PLAIN TEXT (GET /level/99/exec//show HTTP/1)]
+ 387 TCP 127.0.0.1:49556 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.pl|dir][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 388 TCP 127.0.0.1:49566 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.10:100][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 389 TCP 127.0.0.1:49696 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][PLAIN TEXT (TGET /EWS/Exchange.asmx HTTP/1.)]
+ 390 TCP 127.0.0.1:49706 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][PLAIN TEXT (GET /EWS/Services.wsdl HTTP/1.0)]
+ 391 TCP 127.0.0.1:49724 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php3][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (lGET /index.php)]
+ 392 TCP 127.0.0.1:49726 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php4][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (nGET /index.php)]
+ 393 TCP 127.0.0.1:49728 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php5][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (oGET /index.php)]
+ 394 TCP 127.0.0.1:49730 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php7][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (pGET /index.php)]
+ 395 TCP 127.0.0.1:49732 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.html][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (rGET /index.html HTTP/1.1)]
+ 396 TCP 127.0.0.1:49746 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.aspx][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.aspx HTTP/1.1)]
+ 397 TCP 127.0.0.1:50134 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tar.lzma HTTP/1.1)]
+ 398 TCP 127.0.0.1:50136 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tar.lzma HTTP/1.1)]
+ 399 TCP 127.0.0.1:50226 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.lzma HTTP/1.1)]
+ 400 TCP 127.0.0.1:50228 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.lzma HTTP/1.1)]
+ 401 TCP 127.0.0.1:50378 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.bz)]
+ 402 TCP 127.0.0.1:50380 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.bz)]
+ 403 TCP 127.0.0.1:50572 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cfappman/index.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000013)][PLAIN TEXT (GET /cfappman/index.c)]
+ 404 TCP 127.0.0.1:51016 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site/eg/source.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003126)][PLAIN TEXT (GET /site/eg/source.asp HTTP/1.)]
+ 405 TCP 127.0.0.1:51046 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/213 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/isapi/tstisapi.dll][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003263)][PLAIN TEXT (GET /isapi/tstisapi.dll HTTP/1.)]
+ 406 TCP 127.0.0.1:49616 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-local/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 407 TCP 127.0.0.1:49722 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (kGET /index.php HTTP/1.1)]
+ 408 TCP 127.0.0.1:49734 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.htm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (sGET /index.htm HTTP/1.1)]
+ 409 TCP 127.0.0.1:49738 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.cfm HTTP/1.1)]
+ 410 TCP 127.0.0.1:49740 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.cgi][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (yGET /index.c)]
+ 411 TCP 127.0.0.1:49744 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.asp HTTP/1.1)]
+ 412 TCP 127.0.0.1:49758 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.jsp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.jsp HTTP/1.1)]
+ 413 TCP 127.0.0.1:49760 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.xml][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.xml HTTP/1.1)]
+ 414 TCP 127.0.0.1:49902 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar.lzma HTTP/1.1)]
+ 415 TCP 127.0.0.1:49904 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar.lzma HTTP/1.1)]
+ 416 TCP 127.0.0.1:49954 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.gz HTTP/1.1)]
+ 417 TCP 127.0.0.1:49956 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar.gz HTTP/1.1)]
+ 418 TCP 127.0.0.1:50178 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar.lzma HTTP/1.1)]
+ 419 TCP 127.0.0.1:50180 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar.lzma HTTP/1.1)]
+ 420 TCP 127.0.0.1:50258 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT ( GET /backup.tar.bz)]
+ 421 TCP 127.0.0.1:50260 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tar.bz2 HTTP/1.1)]
+ 422 TCP 127.0.0.1:50338 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.bz2 HTTP/1.1)]
+ 423 TCP 127.0.0.1:50340 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.bz2 HTTP/1.1)]
+ 424 TCP 127.0.0.1:50600 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/212 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/bb-dnbd/faxsurvey][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000142)][PLAIN TEXT (GET /bb)]
+ 425 TCP 127.0.0.1:49570 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.php3][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 426 TCP 127.0.0.1:49584 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.html][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 427 TCP 127.0.0.1:49628 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/fcgi-bin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /fc)]
+ 428 TCP 127.0.0.1:49632 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-home/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 429 TCP 127.0.0.1:49634 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-perl/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 430 TCP 127.0.0.1:49636 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scgi-bin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT ( GET /scgi)]
+ 431 TCP 127.0.0.1:49742 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.pl][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.pl HTTP/1.1)]
+ 432 TCP 127.0.0.1:49754 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.do][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:multiple_index)][PLAIN TEXT (GET /index.do HTTP/1.1)]
+ 433 TCP 127.0.0.1:49806 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.cer HTTP/1.1)]
+ 434 TCP 127.0.0.1:49808 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.cer HTTP/1.1)]
+ 435 TCP 127.0.0.1:49822 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.alz HTTP/1.1)]
+ 436 TCP 127.0.0.1:49824 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.alz HTTP/1.1)]
+ 437 TCP 127.0.0.1:49830 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar HTTP/1.1)]
+ 438 TCP 127.0.0.1:49832 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tar HTTP/1.1)]
+ 439 TCP 127.0.0.1:49838 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar.bz)]
+ 440 TCP 127.0.0.1:49840 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar.bz)]
+ 441 TCP 127.0.0.1:49866 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.lzma HTTP/1.1)]
+ 442 TCP 127.0.0.1:49868 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.lzma HTTP/1.1)]
+ 443 TCP 127.0.0.1:49870 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 444 TCP 127.0.0.1:49872 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 445 TCP 127.0.0.1:49882 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.lzma HTTP/1.1)]
+ 446 TCP 127.0.0.1:49884 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.lzma HTTP/1.1)]
+ 447 TCP 127.0.0.1:49890 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.zip HTTP/1.1)]
+ 448 TCP 127.0.0.1:49892 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.zip HTTP/1.1)]
+ 449 TCP 127.0.0.1:49918 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.war HTTP/1.1)]
+ 450 TCP 127.0.0.1:49920 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.war HTTP/1.1)]
+ 451 TCP 127.0.0.1:49958 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 452 TCP 127.0.0.1:49960 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 453 TCP 127.0.0.1:50038 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 454 TCP 127.0.0.1:50040 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (fGET /127)]
+ 455 TCP 127.0.0.1:50078 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 456 TCP 127.0.0.1:50080 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 457 TCP 127.0.0.1:50082 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 458 TCP 127.0.0.1:50084 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 459 TCP 127.0.0.1:50102 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.egg HTTP/1.1)]
+ 460 TCP 127.0.0.1:50104 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.egg HTTP/1.1)]
+ 461 TCP 127.0.0.1:50130 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.pem HTTP/1.1)]
+ 462 TCP 127.0.0.1:50132 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.pem HTTP/1.1)]
+ 463 TCP 127.0.0.1:50154 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar.bz)]
+ 464 TCP 127.0.0.1:50156 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar.bz)]
+ 465 TCP 127.0.0.1:50158 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.jks HTTP/1.1)]
+ 466 TCP 127.0.0.1:50160 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.jks HTTP/1.1)]
+ 467 TCP 127.0.0.1:50202 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tgz HTTP/1.1)]
+ 468 TCP 127.0.0.1:50204 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.tgz HTTP/1.1)]
+ 469 TCP 127.0.0.1:50250 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tar.gz HTTP/1.1)]
+ 470 TCP 127.0.0.1:50252 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tar.gz HTTP/1.1)]
+ 471 TCP 127.0.0.1:50266 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 472 TCP 127.0.0.1:50268 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 473 TCP 127.0.0.1:50282 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 474 TCP 127.0.0.1:50284 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 475 TCP 127.0.0.1:50310 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (HGET /127.0.0.1.sql HTTP/1.1)]
+ 476 TCP 127.0.0.1:50312 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.1.sq)]
+ 477 TCP 127.0.0.1:50330 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.gz HTTP/1.1)]
+ 478 TCP 127.0.0.1:50332 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar.gz HTTP/1.1)]
+ 479 TCP 127.0.0.1:50350 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (fGET /127)]
+ 480 TCP 127.0.0.1:50352 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (gGET /127)]
+ 481 TCP 127.0.0.1:50382 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 482 TCP 127.0.0.1:50384 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 483 TCP 127.0.0.1:50390 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 484 TCP 127.0.0.1:50392 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127_0_0_1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127)]
+ 485 TCP 127.0.0.1:50664 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/Program%20Files/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001165)][PLAIN TEXT (aGET /Program)]
+ 486 TCP 127.0.0.1:50992 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/211 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.4/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/msadc/msadcs.dll][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001474)][PLAIN TEXT (GET /msadc/msadcs.dll HTTP/1.1)]
+ 487 TCP 127.0.0.1:49558 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.txt][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 488 TCP 127.0.0.1:49560 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.idc][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 489 TCP 127.0.0.1:49564 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.cgi][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 490 TCP 127.0.0.1:49568 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.exe][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 491 TCP 127.0.0.1:49572 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.bat][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 492 TCP 127.0.0.1:49576 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.cfm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 493 TCP 127.0.0.1:49580 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.cmd][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 494 TCP 127.0.0.1:49582 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.htm][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 495 TCP 127.0.0.1:49586 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.dll][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 496 TCP 127.0.0.1:49588 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 497 TCP 127.0.0.1:49590 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.asp][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 498 TCP 127.0.0.1:49596 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi.cgi/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi.cgi/ HTTP/1.1)]
+ 499 TCP 127.0.0.1:49600 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-914/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 500 TCP 127.0.0.1:49602 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-915/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 501 TCP 127.0.0.1:49610 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 502 TCP 127.0.0.1:49612 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ows-bin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /ows)]
+ 503 TCP 127.0.0.1:49614 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-sys/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 504 TCP 127.0.0.1:49624 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/scripts/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /scripts/ HTTP/1.1)]
+ 505 TCP 127.0.0.1:49626 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-win/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 506 TCP 127.0.0.1:49630 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-exe/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 507 TCP 127.0.0.1:49640 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-mod/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi)]
+ 508 TCP 127.0.0.1:50034 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (aGET /127.0.tar.gz HTTP/1.1)]
+ 509 TCP 127.0.0.1:50036 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (bGET /127.0.tar.gz HTTP/1.1)]
+ 510 TCP 127.0.0.1:50186 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.lzma HTTP/1.1)]
+ 511 TCP 127.0.0.1:50188 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.lzma HTTP/1.1)]
+ 512 TCP 127.0.0.1:50210 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.bz2 HTTP/1.1)]
+ 513 TCP 127.0.0.1:50212 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.bz2 HTTP/1.1)]
+ 514 TCP 127.0.0.1:50230 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.bz2 HTTP/1.1)]
+ 515 TCP 127.0.0.1:50232 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.bz2 HTTP/1.1)]
+ 516 TCP 127.0.0.1:50354 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (hGET /12700.tar.gz HTTP/1.1)]
+ 517 TCP 127.0.0.1:50356 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar.gz HTTP/1.1)]
+ 518 TCP 127.0.0.1:50582 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/splashAdmin.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000018)][PLAIN TEXT ( GET /splashAdmin.php HTTP/1.1)]
+ 519 TCP 127.0.0.1:50630 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/210 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi-bin/handler][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001069)][PLAIN TEXT (GGET /c)]
+ 520 TCP 127.0.0.1:49578 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE.pl][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 521 TCP 127.0.0.1:49598 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/webcgi/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /webc)]
+ 522 TCP 127.0.0.1:49620 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgibin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgibin/ HTTP/1.1)]
+ 523 TCP 127.0.0.1:49686 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][PLAIN TEXT (LGET /Autodiscover/ HTTP/1.0)]
+ 524 TCP 127.0.0.1:49712 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][PLAIN TEXT (aGET /aspnet)]
+ 525 TCP 127.0.0.1:49834 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.bz)]
+ 526 TCP 127.0.0.1:49836 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.bz)]
+ 527 TCP 127.0.0.1:49842 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.gz HTTP/1.1)]
+ 528 TCP 127.0.0.1:49844 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar.gz HTTP/1.1)]
+ 529 TCP 127.0.0.1:49854 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.pem HTTP/1.1)]
+ 530 TCP 127.0.0.1:49856 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.pem HTTP/1.1)]
+ 531 TCP 127.0.0.1:49862 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.gz HTTP/1.1)]
+ 532 TCP 127.0.0.1:49864 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar.gz HTTP/1.1)]
+ 533 TCP 127.0.0.1:49962 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.sq)]
+ 534 TCP 127.0.0.1:49964 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.sq)]
+ 535 TCP 127.0.0.1:50050 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.jks HTTP/1.1)]
+ 536 TCP 127.0.0.1:50052 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (oGET /127.0.0.j)]
+ 537 TCP 127.0.0.1:50062 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (wGET /127.0.0.cer HTTP/1.1)]
+ 538 TCP 127.0.0.1:50064 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.cer HTTP/1.1)]
+ 539 TCP 127.0.0.1:50074 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tgz HTTP/1.1)]
+ 540 TCP 127.0.0.1:50076 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tgz HTTP/1.1)]
+ 541 TCP 127.0.0.1:50138 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar HTTP/1.1)]
+ 542 TCP 127.0.0.1:50140 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.tar HTTP/1.1)]
+ 543 TCP 127.0.0.1:50162 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.war HTTP/1.1)]
+ 544 TCP 127.0.0.1:50164 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.war HTTP/1.1)]
+ 545 TCP 127.0.0.1:50214 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.alz HTTP/1.1)]
+ 546 TCP 127.0.0.1:50216 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.alz HTTP/1.1)]
+ 547 TCP 127.0.0.1:50270 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.zip HTTP/1.1)]
+ 548 TCP 127.0.0.1:50272 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.0.zip HTTP/1.1)]
+ 549 TCP 127.0.0.1:50314 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (KGET /127.0.0.egg HTTP/1.1)]
+ 550 TCP 127.0.0.1:50316 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (LGET /127.0.0.egg HTTP/1.1)]
+ 551 TCP 127.0.0.1:50676 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16/exec/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001256)][PLAIN TEXT (hGET /level/16/exec/ HTTP/1.1)]
+ 552 TCP 127.0.0.1:51098 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/209 bytes -> 0 pkts/0 bytes][Goodput ratio: 68.1/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/jenkins/script][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006999)][PLAIN TEXT (GET /jenkins/script HTTP/1.1)]
+ 553 TCP 127.0.0.1:49594 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/index.php?][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /index.php)]
+ 554 TCP 127.0.0.1:49608 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/mpcgi/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /mpcgi/ HTTP/1.1)]
+ 555 TCP 127.0.0.1:49618 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/htbin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /htbin/ HTTP/1.1)]
+ 556 TCP 127.0.0.1:49810 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.pem HTTP/1.1)]
+ 557 TCP 127.0.0.1:49812 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.pem HTTP/1.1)]
+ 558 TCP 127.0.0.1:49858 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.sql HTTP/1.1)]
+ 559 TCP 127.0.0.1:49860 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.sql HTTP/1.1)]
+ 560 TCP 127.0.0.1:49894 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.pem HTTP/1.1)]
+ 561 TCP 127.0.0.1:49896 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.pem HTTP/1.1)]
+ 562 TCP 127.0.0.1:49930 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.sql HTTP/1.1)]
+ 563 TCP 127.0.0.1:49932 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.sql HTTP/1.1)]
+ 564 TCP 127.0.0.1:49946 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT ( GET /backup.zip HTTP/1.1)]
+ 565 TCP 127.0.0.1:49948 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.zip HTTP/1.1)]
+ 566 TCP 127.0.0.1:49978 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.j)]
+ 567 TCP 127.0.0.1:49980 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.j)]
+ 568 TCP 127.0.0.1:49990 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (AGET /127001.war HTTP/1.1)]
+ 569 TCP 127.0.0.1:49992 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (BGET /127001.war HTTP/1.1)]
+ 570 TCP 127.0.0.1:49994 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (DGET /127001.egg HTTP/1.1)]
+ 571 TCP 127.0.0.1:49996 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (EGET /127001.egg HTTP/1.1)]
+ 572 TCP 127.0.0.1:50014 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (RGET /backup.cer HTTP/1.1)]
+ 573 TCP 127.0.0.1:50016 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (TGET /backup.cer HTTP/1.1)]
+ 574 TCP 127.0.0.1:50026 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.zip HTTP/1.1)]
+ 575 TCP 127.0.0.1:50028 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.zip HTTP/1.1)]
+ 576 TCP 127.0.0.1:50054 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (pGET /127001.jks HTTP/1.1)]
+ 577 TCP 127.0.0.1:50056 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.j)]
+ 578 TCP 127.0.0.1:50058 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (sGET /0.tar.lzma HTTP/1.1)]
+ 579 TCP 127.0.0.1:50060 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (uGET /0.tar.lzma HTTP/1.1)]
+ 580 TCP 127.0.0.1:50086 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.war HTTP/1.1)]
+ 581 TCP 127.0.0.1:50088 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.war HTTP/1.1)]
+ 582 TCP 127.0.0.1:50090 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.egg HTTP/1.1)]
+ 583 TCP 127.0.0.1:50092 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.egg HTTP/1.1)]
+ 584 TCP 127.0.0.1:50094 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.cer HTTP/1.1)]
+ 585 TCP 127.0.0.1:50096 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.cer HTTP/1.1)]
+ 586 TCP 127.0.0.1:50142 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.alz HTTP/1.1)]
+ 587 TCP 127.0.0.1:50144 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.alz HTTP/1.1)]
+ 588 TCP 127.0.0.1:50222 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.alz HTTP/1.1)]
+ 589 TCP 127.0.0.1:50224 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.alz HTTP/1.1)]
+ 590 TCP 127.0.0.1:50234 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tgz HTTP/1.1)]
+ 591 TCP 127.0.0.1:50236 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /backup.tgz HTTP/1.1)]
+ 592 TCP 127.0.0.1:50274 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.gz HTTP/1.1)]
+ 593 TCP 127.0.0.1:50276 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar.gz HTTP/1.1)]
+ 594 TCP 127.0.0.1:50306 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (FGET /backup.tar HTTP/1.1)]
+ 595 TCP 127.0.0.1:50308 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/backup.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GGET /backup.tar HTTP/1.1)]
+ 596 TCP 127.0.0.1:50322 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (RGET /127001.tgz HTTP/1.1)]
+ 597 TCP 127.0.0.1:50324 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (TGET /127001.tgz HTTP/1.1)]
+ 598 TCP 127.0.0.1:50358 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (kGET /1.tar.lzma HTTP/1.1)]
+ 599 TCP 127.0.0.1:50360 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.lzma][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.tar.lzma HTTP/1.1)]
+ 600 TCP 127.0.0.1:50402 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar HTTP/1.1)]
+ 601 TCP 127.0.0.1:50404 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127001.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127001.tar HTTP/1.1)]
+ 602 TCP 127.0.0.1:51100 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/208 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.9/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/hudson/script][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006999)][PLAIN TEXT (GET /hudson/script HTTP/1.1)]
+ 603 TCP 127.0.0.1:49552 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/.0hXC6ZUE][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /.0)]
+ 604 TCP 127.0.0.1:49574 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 605 TCP 127.0.0.1:49622 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgis/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgis/ HTTP/1.1)]
+ 606 TCP 127.0.0.1:49782 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.war HTTP/1.1)]
+ 607 TCP 127.0.0.1:49784 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.war HTTP/1.1)]
+ 608 TCP 127.0.0.1:49794 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.sq)]
+ 609 TCP 127.0.0.1:49796 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.sq)]
+ 610 TCP 127.0.0.1:49798 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.pem HTTP/1.1)]
+ 611 TCP 127.0.0.1:49800 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.pem HTTP/1.1)]
+ 612 TCP 127.0.0.1:49906 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tgz HTTP/1.1)]
+ 613 TCP 127.0.0.1:49908 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tgz HTTP/1.1)]
+ 614 TCP 127.0.0.1:49938 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.zip HTTP/1.1)]
+ 615 TCP 127.0.0.1:49940 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.zip HTTP/1.1)]
+ 616 TCP 127.0.0.1:49966 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (/GET /12700.tar HTTP/1.1)]
+ 617 TCP 127.0.0.1:49968 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.tar HTTP/1.1)]
+ 618 TCP 127.0.0.1:49974 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.alz HTTP/1.1)]
+ 619 TCP 127.0.0.1:49976 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.alz HTTP/1.1)]
+ 620 TCP 127.0.0.1:50018 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (UGET /12700.cer HTTP/1.1)]
+ 621 TCP 127.0.0.1:50020 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (WGET /12700.cer HTTP/1.1)]
+ 622 TCP 127.0.0.1:50030 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tar.bz)]
+ 623 TCP 127.0.0.1:50032 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tar.bz)]
+ 624 TCP 127.0.0.1:50042 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (gGET /127.0.egg HTTP/1.1)]
+ 625 TCP 127.0.0.1:50044 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (iGET /127.0.egg HTTP/1.1)]
+ 626 TCP 127.0.0.1:50046 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.jks HTTP/1.1)]
+ 627 TCP 127.0.0.1:50048 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (lGET /127.0.j)]
+ 628 TCP 127.0.0.1:50110 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.pem HTTP/1.1)]
+ 629 TCP 127.0.0.1:50112 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.pem HTTP/1.1)]
+ 630 TCP 127.0.0.1:50114 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.sq)]
+ 631 TCP 127.0.0.1:50116 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.sq)]
+ 632 TCP 127.0.0.1:50122 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.war HTTP/1.1)]
+ 633 TCP 127.0.0.1:50124 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.war HTTP/1.1)]
+ 634 TCP 127.0.0.1:50166 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tgz HTTP/1.1)]
+ 635 TCP 127.0.0.1:50168 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tgz HTTP/1.1)]
+ 636 TCP 127.0.0.1:50206 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.zip HTTP/1.1)]
+ 637 TCP 127.0.0.1:50208 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.zip HTTP/1.1)]
+ 638 TCP 127.0.0.1:50242 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.alz HTTP/1.1)]
+ 639 TCP 127.0.0.1:50244 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.alz HTTP/1.1)]
+ 640 TCP 127.0.0.1:50246 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar HTTP/1.1)]
+ 641 TCP 127.0.0.1:50248 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.0.tar HTTP/1.1)]
+ 642 TCP 127.0.0.1:50326 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (UGET /1.tar.bz2 HTTP/1.1)]
+ 643 TCP 127.0.0.1:50328 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.bz2][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (WGET /1.tar.bz2 HTTP/1.1)]
+ 644 TCP 127.0.0.1:50342 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (aGET /12700.j)]
+ 645 TCP 127.0.0.1:50344 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /12700.jks HTTP/1.1)]
+ 646 TCP 127.0.0.1:50346 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (dGET /12700.egg HTTP/1.1)]
+ 647 TCP 127.0.0.1:50348 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/12700.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (eGET /12700.egg HTTP/1.1)]
+ 648 TCP 127.0.0.1:50366 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (rGET /127.0.cer HTTP/1.1)]
+ 649 TCP 127.0.0.1:50368 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (tGET /127.0.cer HTTP/1.1)]
+ 650 TCP 127.0.0.1:50406 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicon.ico][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicon.ico HTTP/1.1)]
+ 651 TCP 127.0.0.1:50410 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicon.gif][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicon.gif HTTP/1.1)]
+ 652 TCP 127.0.0.1:50414 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/favicon.png][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET /favicon.png HTTP/1.1)]
+ 653 TCP 127.0.0.1:50580 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/lists/admin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000017)][PLAIN TEXT (GET /lists/admin/ HTTP/1.1)]
+ 654 TCP 127.0.0.1:50602 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cartcart.cgi][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000143)][PLAIN TEXT (.GET /cartcart.cgi HTTP/1.1)]
+ 655 TCP 127.0.0.1:50994 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/uploader.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:003018)][PLAIN TEXT (GET /uploader.php HTTP/1.1)]
+ 656 TCP 127.0.0.1:51080 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/207 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/login.php?-s][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006524)][PLAIN TEXT (GET /login.php)]
+ 657 TCP 127.0.0.1:49554 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0hXC6ZUE][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET /0h)]
+ 658 TCP 127.0.0.1:49604 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/bin/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /bin/ HTTP/1.1)]
+ 659 TCP 127.0.0.1:49606 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/cgi/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:cgi dir check)][PLAIN TEXT (GET /cgi/ HTTP/1.1)]
+ 660 TCP 127.0.0.1:49714 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][PLAIN TEXT (bGET /PowerShell HTTP/1.0)]
+ 661 TCP 127.0.0.1:49786 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.cer HTTP/1.1)]
+ 662 TCP 127.0.0.1:49788 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.cer HTTP/1.1)]
+ 663 TCP 127.0.0.1:49802 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar HTTP/1.1)]
+ 664 TCP 127.0.0.1:49804 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tar HTTP/1.1)]
+ 665 TCP 127.0.0.1:49814 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.cer HTTP/1.1)]
+ 666 TCP 127.0.0.1:49816 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.cer HTTP/1.1)]
+ 667 TCP 127.0.0.1:49818 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar HTTP/1.1)]
+ 668 TCP 127.0.0.1:49820 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tar HTTP/1.1)]
+ 669 TCP 127.0.0.1:49926 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.j)]
+ 670 TCP 127.0.0.1:49928 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.j)]
+ 671 TCP 127.0.0.1:49934 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.j)]
+ 672 TCP 127.0.0.1:49936 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.j)]
+ 673 TCP 127.0.0.1:49950 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.zip HTTP/1.1)]
+ 674 TCP 127.0.0.1:49952 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.zip HTTP/1.1)]
+ 675 TCP 127.0.0.1:49970 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.zip HTTP/1.1)]
+ 676 TCP 127.0.0.1:49972 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.zip HTTP/1.1)]
+ 677 TCP 127.0.0.1:49986 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.pem HTTP/1.1)]
+ 678 TCP 127.0.0.1:49988 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (@GET /site.pem HTTP/1.1)]
+ 679 TCP 127.0.0.1:50002 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (KGET /0.tar.gz HTTP/1.1)]
+ 680 TCP 127.0.0.1:50004 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (LGET /0.tar.gz HTTP/1.1)]
+ 681 TCP 127.0.0.1:50006 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.pem HTTP/1.1)]
+ 682 TCP 127.0.0.1:50008 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (OGET /1270.pem HTTP/1.1)]
+ 683 TCP 127.0.0.1:50106 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.egg HTTP/1.1)]
+ 684 TCP 127.0.0.1:50108 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.egg HTTP/1.1)]
+ 685 TCP 127.0.0.1:50118 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.egg HTTP/1.1)]
+ 686 TCP 127.0.0.1:50120 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.egg HTTP/1.1)]
+ 687 TCP 127.0.0.1:50174 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.alz HTTP/1.1)]
+ 688 TCP 127.0.0.1:50176 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.alz HTTP/1.1)]
+ 689 TCP 127.0.0.1:50182 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tgz HTTP/1.1)]
+ 690 TCP 127.0.0.1:50184 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.tgz HTTP/1.1)]
+ 691 TCP 127.0.0.1:50190 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.alz HTTP/1.1)]
+ 692 TCP 127.0.0.1:50192 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.alz HTTP/1.1)]
+ 693 TCP 127.0.0.1:50198 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tgz HTTP/1.1)]
+ 694 TCP 127.0.0.1:50200 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.tgz HTTP/1.1)]
+ 695 TCP 127.0.0.1:50298 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (@GET /1.tar.gz HTTP/1.1)]
+ 696 TCP 127.0.0.1:50300 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar.gz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (BGET /1.tar.gz HTTP/1.1)]
+ 697 TCP 127.0.0.1:50334 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.sql HTTP/1.1)]
+ 698 TCP 127.0.0.1:50336 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.sql HTTP/1.1)]
+ 699 TCP 127.0.0.1:50362 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (oGET /site.sq)]
+ 700 TCP 127.0.0.1:50364 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.sql HTTP/1.1)]
+ 701 TCP 127.0.0.1:50374 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1270.war HTTP/1.1)]
+ 702 TCP 127.0.0.1:50376 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1270.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (yGET /1270.war HTTP/1.1)]
+ 703 TCP 127.0.0.1:50394 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.war HTTP/1.1)]
+ 704 TCP 127.0.0.1:50396 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/site.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /site.war HTTP/1.1)]
+ 705 TCP 127.0.0.1:50666 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/smssend.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001166)][PLAIN TEXT (bGET /smssend.php HTTP/1.1)]
+ 706 TCP 127.0.0.1:51074 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/fx29id1.txt][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006449)][PLAIN TEXT (GET /fx)]
+ 707 TCP 127.0.0.1:51076 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/206 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/fx29id2.txt][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006450)][PLAIN TEXT (GET /fx)]
+ 708 TCP 127.0.0.1:49648 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/robots.txt][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:robots)][PLAIN TEXT (GET /robots.t)]
+ 709 TCP 127.0.0.1:49662 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:parked detection)][PLAIN TEXT (GET / HTTP/1.1)]
+ 710 TCP 127.0.0.1:49846 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.pem HTTP/1.1)]
+ 711 TCP 127.0.0.1:49848 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.pem HTTP/1.1)]
+ 712 TCP 127.0.0.1:49878 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tgz HTTP/1.1)]
+ 713 TCP 127.0.0.1:49880 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tgz HTTP/1.1)]
+ 714 TCP 127.0.0.1:49910 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar HTTP/1.1)]
+ 715 TCP 127.0.0.1:49912 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.tar HTTP/1.1)]
+ 716 TCP 127.0.0.1:49982 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.zip HTTP/1.1)]
+ 717 TCP 127.0.0.1:49984 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.zip HTTP/1.1)]
+ 718 TCP 127.0.0.1:50170 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.jks HTTP/1.1)]
+ 719 TCP 127.0.0.1:50172 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.jks HTTP/1.1)]
+ 720 TCP 127.0.0.1:50254 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.alz HTTP/1.1)]
+ 721 TCP 127.0.0.1:50256 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.alz HTTP/1.1)]
+ 722 TCP 127.0.0.1:50278 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (/GET /127.egg HTTP/1.1)]
+ 723 TCP 127.0.0.1:50280 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.egg HTTP/1.1)]
+ 724 TCP 127.0.0.1:50286 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.sq)]
+ 725 TCP 127.0.0.1:50288 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.sq)]
+ 726 TCP 127.0.0.1:50294 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.cer HTTP/1.1)]
+ 727 TCP 127.0.0.1:50296 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.cer HTTP/1.1)]
+ 728 TCP 127.0.0.1:50398 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.war HTTP/1.1)]
+ 729 TCP 127.0.0.1:50400 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/127.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /127.war HTTP/1.1)]
+ 730 TCP 127.0.0.1:50650 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/205 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/manual.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001158)][PLAIN TEXT (GET /manual.php HTTP/1.1)]
+ 731 TCP 127.0.0.1:49698 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/204 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.3/0.0][< 1 sec][PLAIN TEXT (UGET /Exchange HTTP/1.0)]
+ 732 TCP 127.0.0.1:49790 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.cer HTTP/1.1)]
+ 733 TCP 127.0.0.1:49792 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.cer HTTP/1.1)]
+ 734 TCP 127.0.0.1:49826 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.zip HTTP/1.1)]
+ 735 TCP 127.0.0.1:49828 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.zip HTTP/1.1)]
+ 736 TCP 127.0.0.1:49850 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tar HTTP/1.1)]
+ 737 TCP 127.0.0.1:49852 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tar HTTP/1.1)]
+ 738 TCP 127.0.0.1:49898 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.jks HTTP/1.1)]
+ 739 TCP 127.0.0.1:49900 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.jks HTTP/1.1)]
+ 740 TCP 127.0.0.1:49922 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.tgz HTTP/1.1)]
+ 741 TCP 127.0.0.1:49924 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.tgz HTTP/1.1)]
+ 742 TCP 127.0.0.1:49942 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.alz HTTP/1.1)]
+ 743 TCP 127.0.0.1:49944 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.alz HTTP/1.1)]
+ 744 TCP 127.0.0.1:49998 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GGET /1.war HTTP/1.1)]
+ 745 TCP 127.0.0.1:50000 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (IGET /1.war HTTP/1.1)]
+ 746 TCP 127.0.0.1:50010 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (PGET /0.egg HTTP/1.1)]
+ 747 TCP 127.0.0.1:50012 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.egg HTTP/1.1)]
+ 748 TCP 127.0.0.1:50066 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.sq)]
+ 749 TCP 127.0.0.1:50068 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.sq)]
+ 750 TCP 127.0.0.1:50070 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.pem HTTP/1.1)]
+ 751 TCP 127.0.0.1:50072 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.pem HTTP/1.1)]
+ 752 TCP 127.0.0.1:50098 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.cer HTTP/1.1)]
+ 753 TCP 127.0.0.1:50100 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.cer][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.cer HTTP/1.1)]
+ 754 TCP 127.0.0.1:50126 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.zip HTTP/1.1)]
+ 755 TCP 127.0.0.1:50128 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.zip][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.zip HTTP/1.1)]
+ 756 TCP 127.0.0.1:50150 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.tar HTTP/1.1)]
+ 757 TCP 127.0.0.1:50152 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.tar][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.tar HTTP/1.1)]
+ 758 TCP 127.0.0.1:50194 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.jks HTTP/1.1)]
+ 759 TCP 127.0.0.1:50196 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.jks][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.jks HTTP/1.1)]
+ 760 TCP 127.0.0.1:50218 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tgz HTTP/1.1)]
+ 761 TCP 127.0.0.1:50220 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.tgz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.tgz HTTP/1.1)]
+ 762 TCP 127.0.0.1:50238 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.alz HTTP/1.1)]
+ 763 TCP 127.0.0.1:50240 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.alz][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.alz HTTP/1.1)]
+ 764 TCP 127.0.0.1:50302 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.war HTTP/1.1)]
+ 765 TCP 127.0.0.1:50304 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.war][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (EGET /0.war HTTP/1.1)]
+ 766 TCP 127.0.0.1:50318 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /1.egg HTTP/1.1)]
+ 767 TCP 127.0.0.1:50320 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/1.egg][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (PGET /1.egg HTTP/1.1)]
+ 768 TCP 127.0.0.1:50370 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (uGET /0.pem HTTP/1.1)]
+ 769 TCP 127.0.0.1:50372 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.pem][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.pem HTTP/1.1)]
+ 770 TCP 127.0.0.1:50386 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.sq)]
+ 771 TCP 127.0.0.1:50388 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/0.sql][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:sitefiles)][PLAIN TEXT (GET /0.sq)]
+ 772 TCP 127.0.0.1:50606 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/w-agora/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000183)][PLAIN TEXT (GET /w)]
+ 773 TCP 127.0.0.1:50674 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/level/16][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:001255)][PLAIN TEXT (gGET /level/16 HTTP/1.1)]
+ 774 TCP 127.0.0.1:51072 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/203 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.2/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/open.txt][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006448)][PLAIN TEXT (GET /open.t)]
+ 775 TCP 127.0.0.1:49682 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/202 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.0/0.0][< 1 sec][PLAIN TEXT (GET /images HTTP/1.0)]
+ 776 TCP 127.0.0.1:50578 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/202 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/kboard/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000016)][PLAIN TEXT (GET /kboard/ HTTP/1.1)]
+ 777 TCP 127.0.0.1:50584 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/202 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/ssdefs/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000019)][PLAIN TEXT (GET /ssdefs/ HTTP/1.1)]
+ 778 TCP 127.0.0.1:50586 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/202 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/sshome/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000020)][PLAIN TEXT (GET /sshome/ HTTP/1.1)]
+ 779 TCP 127.0.0.1:51092 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/202 bytes -> 0 pkts/0 bytes][Goodput ratio: 67.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/c99.php][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006739)][PLAIN TEXT (GET /c99.php HTTP/1.1)]
+ 780 TCP 127.0.0.1:49716 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/201 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.8/0.0][< 1 sec][PLAIN TEXT (dGET . HTTP/1.0)]
+ 781 TCP 127.0.0.1:51096 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/201 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.8/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/script][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006999)][PLAIN TEXT (GET /script HTTP/1.1)]
+ 782 TCP 127.0.0.1:50570 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/200 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/v2/_catalog][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:)][PLAIN TEXT (GET /v2/)]
+ 783 TCP 127.0.0.1:50588 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/200 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.7/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/tiki/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:000021)][PLAIN TEXT (GET /tiki/ HTTP/1.1)]
+ 784 TCP 127.0.0.1:49544 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:Port Check)][PLAIN TEXT (GET / HTTP/1.1)]
+ 785 TCP 127.0.0.1:49692 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (GET /EC)]
+ 786 TCP 127.0.0.1:49694 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (SGET /EWS HTTP/1.0)]
+ 787 TCP 127.0.0.1:49700 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (GET /OWA HTTP/1.0)]
+ 788 TCP 127.0.0.1:49704 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (GET /Rpc HTTP/1.0)]
+ 789 TCP 127.0.0.1:49708 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (GET /ec)]
+ 790 TCP 127.0.0.1:49710 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/199 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.5/0.0][< 1 sec][PLAIN TEXT (GET /OAB HTTP/1.0)]
+ 791 TCP 127.0.0.1:49548 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/198 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:map_codes)][PLAIN TEXT (GET / HTTP/1.1)]
+ 792 TCP 127.0.0.1:51078 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/198 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.3/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/?-s][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:006523)][PLAIN TEXT (s HTTP/1.1)]
+ 793 TCP 127.0.0.1:49546 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/196 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:getinfo)][PLAIN TEXT (GET / HTTP/1.1)]
+ 794 TCP 127.0.0.1:49680 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/196 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.0/0.0][< 1 sec][PLAIN TEXT (HGET / HTTP/1.0)]
+ 795 TCP 127.0.0.1:50418 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/196 bytes -> 0 pkts/0 bytes][Goodput ratio: 66.0/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:favicon)][PLAIN TEXT (GET / HTTP/1.1)]
+ 796 TCP 127.0.0.1:49642 -> 127.0.0.1:8080 [proto: 131.7/HTTP_Proxy.HTTP][cat: Web/5][1 pkts/194 bytes -> 0 pkts/0 bytes][Goodput ratio: 65.6/0.0][< 1 sec][Host: 127.0.0.1][URL: 127.0.0.1/][StatusCode: 0][ContentType: ][UserAgent: Mozilla/5.00 (Nikto/2.1.6) (Evasions:None) (Test:paths)][PLAIN TEXT (GET / HTTP/1.1)]
+ 797 TCP 127.0.0.1:49720 -> 127.0.0.1:8080 [proto: 131/HTTP_Proxy][cat: Web/5][1 pkts/189 bytes -> 0 pkts/0 bytes][Goodput ratio: 64.7/0.0][< 1 sec][PLAIN TEXT (iGET / HTTP/1.0)]