【毕设扫描器】【动态爬虫】CrawlerGo直观使用效果分析

2024-01-19 08:18

本文主要是介绍【毕设扫描器】【动态爬虫】CrawlerGo直观使用效果分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

    • 当前进度
    • 自主摸索爬虫
        • 主要参数说明
        • 返回结果
        • 初测(默认只打印请求信息)
        • 修改靶场二测(默认只打印请求信息)
        • 调用脚本修改分析
        • 爬虫扫描结果分析
            • req_list数据结构
            • all_req_list
            • 域名
    • 爬虫扫描结果展示(经过换行隔行处理)

date:2022-01-30

当前进度

可执行程序:下载项目文件,通过下载库完成编译,生成可运行的 exe 程序。

调试:IDEA使用插件Go配置环境变量,可成功在IDEA中运行项目。

本节内容:使用 CrawlerGo 对 DVWA 靶场进行实战应用,查看效果。


自主摸索爬虫

主要参数说明

参数:crawlergo [global options] url1 url2 url3 … (must be same host)

主要参数:

	请求头:--custom-headersPOST数据:--post-data表单数据:--form-values输出结果:--output-json

注意,运行必须提供 -c chrome路径,例如:-c C:\Program Files\Google\Chrome\Application\chrome.exe


返回结果
当设置输出模式为 json时,返回的结果反序列化之后包含四个部分:all_req_list: 本次爬取任务过程中发现的所有请求,包含其他域名的任何资源类型。
req_list:本次爬取任务的同域名结果,经过伪静态去重,不包含静态资源链接。理论上是 all_req_list 的子集
all_domain_list:发现的所有域名列表。
sub_domain_list:发现的任务目标的子域名列表。
初测(默认只打印请求信息)

目标:http://127.0.0.1/DVWA-master/

直接运行如下命令好像不行,会卡在命令行窗口。

crawlergo_cmd.exe -c C:\Program Files\Google\Chrome\Application\chrome.exe -t 10 http://127.0.0.1/DVWA-master/login.php

在这里插入图片描述

需要使用 Python 脚本进行调用,其中该脚本项目说明里有提供。
经过亲测,该爬虫只打印爬虫的请求信息,不返回爬虫结果,需要进行修改(打印的请求信息如下)。
在这里插入图片描述

项目调用脚本:

#!/usr/bin/python3
# coding: utf-8import simplejson
import subprocessdef main():target = "http://127.0.0.1/DVWA-master/"# 原代码,本地修改为:cmd = ["./crawlergo_cmd.exe", "-c", "C:\Program Files\Google\Chrome\Application\chrome.exe", "-o", "json", target]# cmd = ["./crawlergo", "-c", "/tmp/chromium/chrome", "-o", "json", target]	rsp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)output, error = rsp.communicate()#  "--[Mission Complete]--"  是任务结束的分隔字符串result = simplejson.loads(output.decode().split("--[Mission Complete]--")[1])req_list = result["req_list"]print(req_list[0])if __name__ == '__main__':main()

修改靶场二测(默认只打印请求信息)

目标:http://127.0.0.1/upload-labs-master/(无需登录)

调用脚本执行结果:只打印请求信息
在这里插入图片描述

调用脚本修改分析

分析内容见代码注释部分。

#!/usr/bin/python3
# coding: utf-8import simplejson
import subprocessdef main():target = "http://127.0.0.1/upload-labs-master/"# 原代码,本地修改为:# req_list、all_req_list、all_domain_list、sub_domain_listcmd = ["./crawlergo_cmd.exe", "-c", "C:\Program Files\Google\Chrome\Application\chrome.exe", "--output-json", "result.json", "-o", "json", target]# cmd = ["./crawlergo", "-c", "/tmp/chromium/chrome", "-o", "json", target]# 使用 subprocess.Popen() 调用执行系统命令,设置标准输出和标准错误rsp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)# 接收爬虫执行结果output, error = rsp.communicate()# 对执行结果解码decode(),然后把结果分割成列表,然后转换成 json 格式#  "--[Mission Complete]--"  是任务结束的分隔字符串result = simplejson.loads(output.decode().split("--[Mission Complete]--")[1])# 选择爬虫的对应信息进行打印,Json字典共有如下4个键print(result["req_list"])         # 当前域名请求#print(result["all_req_list"])       # 所有域名请求# print(result["all_domain_list"])    # 所有域名清单#print(result["sub_domain_list"])    # 子域名清单if __name__ == '__main__':main()
爬虫扫描结果分析

为调用脚本添加保存扫描结果的参数:"--output-json", "result.json",会保存所有的爬虫结果信息,包含4个键。

使用 Nodepad 打开 result.json 文件,自动换行,检索 {"url" 并替换成 \n{"url"

req_list数据结构

根据爬虫结果查看字典的键名信息,req_list键值列表中的url键名是有效接口。

{"req_list":
[
{"url":"php/xxx", "method":"", "headers":{}, "data":"", "source":"Target/JavaScript/DOM/XHR"},
{}……,{}
]
}
all_req_list

经过对比,推测 all_req_list 是所有访问过的接口,而 req_list 是从 all_req_list 筛选出来的有效接口。

{"req_list":
[
{"url":"css/js/png/gif/php/xxx/", "method":"", "headers":{}, "data":"", "source":"Target/JavaScript/DOM/XHR"},
{}……,{}
]
}
域名
"all_domain_list":["127.0.0.1","gv7.me","www.xp.cn"],
"sub_domain_list":["127.0.0.1"]}

CSDN编辑背景过于费眼,考虑使用Typora编辑再粘贴过来。

爬虫扫描结果展示(经过换行隔行处理)

{"req_list":[{"url":"http://127.0.0.1/upload-labs-master/","method":"GET","headers":{"Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"Target"},
{"url":"http://127.0.0.1/upload-labs-master/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/rmdir.php?action=clean_upload_file","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-01/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/rmdir.php?action=clean_upload_file","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/include.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/multipart/form-data","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"}],"all_req_list":[
{"url":"http://127.0.0.1/upload-labs-master/","method":"GET","headers":{"Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"Target"},
{"url":"https://127.0.0.1/upload-labs-master/","method":"GET","headers":{"Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"Target"},
{"url":"http://127.0.0.1/upload-labs-master/css/index.css","method":"GET","headers":{"Accept":"text/css,*/*;q=0.1","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/css/prism.css","method":"GET","headers":{"Accept":"text/css,*/*;q=0.1","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/js/jquery.min.js","method":"GET","headers":{"Accept":"*/*","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/js/prism.js","method":"GET","headers":{"Accept":"*/*","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/js/prism-line-numbers.min.js","method":"GET","headers":{"Accept":"*/*","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/js/index.js","method":"GET","headers":{"Accept":"*/*","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/js/prism-php.min.js","method":"GET","headers":{"Accept":"*/*","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/img/logo.png","method":"GET","headers":{"Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"StaticResource"},
{"url":"http://127.0.0.1/upload-labs-master/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/rmdir.php?action=clean_upload_file","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-01/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://gv7.me/","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/img/favicon.png","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/img/close.png","method":"GET","headers":{"Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Referer":"http://127.0.0.1/upload-labs-master/css/index.css","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"StaticResource"},
{"url":"http://127.0.0.1/upload-labs-master/img/loading.gif","method":"GET","headers":{"Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Referer":"http://127.0.0.1/upload-labs-master/css/index.css","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36","sec-ch-ua":"","sec-ch-ua-mobile":"?0","sec-ch-ua-platform":""},"data":"","source":"StaticResource"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/rmdir.php?action=clean_upload_file","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-02/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-02/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-03/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-03/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-07/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-07/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-06/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-06/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"https://www.xp.cn/","method":"GET","headers":{"Referer":"http://127.0.0.1/rmdir.php?action=clean_upload_file","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-04/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-04/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-14/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/include.php","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-14/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"DOM"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-11/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-11/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/multipart/form-data","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-10/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-10/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-08/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-08/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-12/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-12/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-05/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-05/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-09/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-09/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-13/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-13/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-15/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-15/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-17/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-17/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-18/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-18/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-16/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-16/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-19/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-19/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-21/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-21/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/helper.php?action=get_prompt","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/xml","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/plain","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/text/html","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},{"url":"http://127.0.0.1/upload-labs-master/Pass-20/application/x-www-form-urlencoded","method":"GET","headers":{"Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"JavaScript"},
{"url":"http://127.0.0.1/upload-labs-master/Pass-20/index.php?action=show_code","method":"GET","headers":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Referer":"http://127.0.0.1/upload-labs-master/Pass-20/index.php","Spider-Name":"crawlergo","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.0 Safari/537.36"},"data":"","source":"XHR"}],"all_domain_list":["127.0.0.1","gv7.me","www.xp.cn"],"sub_domain_list":["127.0.0.1"]}

这篇关于【毕设扫描器】【动态爬虫】CrawlerGo直观使用效果分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/621794

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

第10章 中断和动态时钟显示

第10章 中断和动态时钟显示 从本章开始,按照书籍的划分,第10章开始就进入保护模式(Protected Mode)部分了,感觉从这里开始难度突然就增加了。 书中介绍了为什么有中断(Interrupt)的设计,中断的几种方式:外部硬件中断、内部中断和软中断。通过中断做了一个会走的时钟和屏幕上输入字符的程序。 我自己理解中断的一些作用: 为了更好的利用处理器的性能。协同快速和慢速设备一起工作

性能分析之MySQL索引实战案例

文章目录 一、前言二、准备三、MySQL索引优化四、MySQL 索引知识回顾五、总结 一、前言 在上一讲性能工具之 JProfiler 简单登录案例分析实战中已经发现SQL没有建立索引问题,本文将一起从代码层去分析为什么没有建立索引? 开源ERP项目地址:https://gitee.com/jishenghua/JSH_ERP 二、准备 打开IDEA找到登录请求资源路径位置

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

动态规划---打家劫舍

题目: 你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。 给定一个代表每个房屋存放金额的非负整数数组,计算你 不触动警报装置的情况下 ,一夜之内能够偷窃到的最高金额。 思路: 动态规划五部曲: 1.确定dp数组及含义 dp数组是一维数组,dp[i]代表

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]