BurpSuite 的导入和导出

使用的版本为 burpsuite_pro_v2020.6.jar

BurpSuite 的导入和导出


2020年7月12日10:54:51【原创】

1. 简介

主要目的是使用burp记录浏览记录,并保存成文件

2. 导出

  1. 导出整个项目成 .burp 文件

位置:Project -> Save copy
优点:跨平台分享项目中所有浏览记录
测试:二进制文件

先尽情的抓包,然后保存即可,可以只选择保存 Proxy的内容,也可以全都保存。
BurpSuite 的导入和导出_第1张图片BurpSuite 的导入和导出_第2张图片
2. 导出单个浏览记录
位置: Proxy -> 选择记录(shift 多选 或者 ctrl+A 全选) -> 右键 -> Save items
格式:XML文件
优点:方便分析

BurpSuite 的导入和导出_第3张图片

3. 导入

  1. 针对 .burp 文件

重新启动 burp,导入 .burp 文件

BurpSuite 的导入和导出_第4张图片
使用如下 Python 脚本 将 XML 转化成 CSV 或 HTML

https://github.com/mrts/burp-suite-http-proxy-history-converter

python convert-burp-suite-http-proxy-history-to-csv.py example/burp-http-history.xml

基于 JavaFX 的 XML Viewer

https://github.com/mrts/burp-suite-http-proxy-history-viewer

java -jar target/jfx/app/burp-suite-http-proxy-history-viewer-1.0-SNAPSHOT-jfx.jar

linux 命令行在线解码

grep --color=never -e request -e response | cut -d"[" -f3 | cut -d"]" -f1 | grep -v "<" | base64 -d

over!

你可能感兴趣的:(python编程,web安全)