mirror of
https://github.com/Mr-xn/BurpSuite-collections.git
synced 2025-11-05 10:26:46 +00:00
change readme.md
This commit is contained in:
parent
55a4fc7052
commit
f516c2d5fe
BIN
BurpSuiteCn.jar
Normal file
BIN
BurpSuiteCn.jar
Normal file
Binary file not shown.
BIN
BurpSuite破解版汉化脚本.gif
Normal file
BIN
BurpSuite破解版汉化脚本.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 684 KiB |
7
Burp_start.bat
Normal file
7
Burp_start.bat
Normal file
@ -0,0 +1,7 @@
|
||||
chcp 936
|
||||
rem 设置936编码防止某些中文路径导致批处理失效
|
||||
@echo off
|
||||
rem 必须切到根目录执行才行
|
||||
cd \
|
||||
start javaw -Dfile.encoding=utf-8 -javaagent:%~dp0\BurpSuiteCn.jar -Xbootclasspath/p:%~dp0\burp-loader-keygen.jar -Xmx1024m -jar %~dp0\burpsuite_pro_v1.7.37.jar
|
||||
exit
|
||||
BIN
Goescat-Macaron-Burp-suite.ico
Normal file
BIN
Goescat-Macaron-Burp-suite.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 168 KiB |
6
Mrxn's Blog.url
Normal file
6
Mrxn's Blog.url
Normal file
@ -0,0 +1,6 @@
|
||||
[InternetShortcut]
|
||||
URL=https://mrxn.net/hacktools/burpsuite_pro_quick_start.html
|
||||
IDList=
|
||||
HotKey=0
|
||||
[{000214A0-0000-0000-C000-000000000046}]
|
||||
Prop3=19,11
|
||||
BIN
burp-loader-keygen.jar
Normal file
BIN
burp-loader-keygen.jar
Normal file
Binary file not shown.
BIN
burpsuite_pro_v1.7.37.jar
Normal file
BIN
burpsuite_pro_v1.7.37.jar
Normal file
Binary file not shown.
BIN
burpsuite实战指南.pdf
Normal file
BIN
burpsuite实战指南.pdf
Normal file
Binary file not shown.
2
cn.txt
Normal file
2
cn.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Proxy \t 代理
|
||||
The analysis is based on a sample of ([0-9]+) tokens?. Based on the sample size, the reliability of the results is: (.*) 分析$1基于令牌样本。 根据样本量,可靠性如下: $2
|
||||
BIN
plugins.png
Normal file
BIN
plugins.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.4 KiB |
69
创建桌面快捷方式.bat
Normal file
69
创建桌面快捷方式.bat
Normal file
@ -0,0 +1,69 @@
|
||||
chcp 936
|
||||
REM 设置936编码防止某些中文路径导致批处理失效
|
||||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
mode con cols=90 lines=30&color 0a&title 创建Burp Suite一键启动脚本快捷方式
|
||||
echo ======================================================
|
||||
echo m m mm m m
|
||||
echo ## ## m mm m m m mm #"m # mmm mm#mm
|
||||
echo # ## # #" " #m# #" # # #m # #" # #
|
||||
echo # "" # # m#m # # # # # #"""" #
|
||||
echo # # # m" "m # # # # ## "#mm" "mm
|
||||
echo =======================================================
|
||||
echo.
|
||||
echo [+] 感谢破解作者^&汉化作者^&Burp官方^&各个插件作者^&感谢EveryOne!
|
||||
echo.
|
||||
echo [+] 欢迎各位朋友光临我博客@_@:https://mrxn.net
|
||||
echo.
|
||||
echo [+] 获得当前路径:%~dp0
|
||||
set path=%~dp0Burp_start.bat
|
||||
echo.
|
||||
if exist %path% (
|
||||
echo [+] 发现Burp一键启动脚本Burp_start.bat
|
||||
echo.
|
||||
echo [+] 启动脚本路劲:
|
||||
echo.
|
||||
echo [+] %path%
|
||||
echo.
|
||||
goto :creat
|
||||
) else (
|
||||
echo [-] 注意,未发现启动脚本Burp_start.bat,请注意是否改名,程序退出...
|
||||
echo.
|
||||
pause
|
||||
exit
|
||||
)
|
||||
|
||||
:creat
|
||||
echo [+] 开始创建快捷方式...
|
||||
echo.
|
||||
rem 设置程序的完整路径(必要)
|
||||
set Program=%path%
|
||||
rem 设置快捷方式名字(必要)
|
||||
set LinkName=Burp_Suite
|
||||
rem 程序工作路径
|
||||
set WorkDir=%~dp0
|
||||
rem 设置快捷方式说明
|
||||
set Desc=BurpSuite汉化版一键启动
|
||||
rem 设置快捷方式图标
|
||||
set icon=%~dp0Goescat-Macaron-Burp-suite.ico
|
||||
if not defined WorkDir call:GetWorkDir "%Program%"
|
||||
(echo Set WshShell=CreateObject("WScript.Shell"^)
|
||||
echo strDesKtop=WshShell.SpecialFolders("DesKtop"^)
|
||||
echo Set oShellLink=WshShell.CreateShortcut(strDesKtop^&"\%LinkName%.lnk"^)
|
||||
echo oShellLink.TargetPath="%Program%"
|
||||
echo oShellLink.WorkingDirectory="%WorkDir%"
|
||||
echo oShellLink.WindowStyle=1
|
||||
echo oShellLink.Description="%Desc%"
|
||||
echo oShellLink.IconLocation="%icon%"
|
||||
echo oShellLink.Save)>makelnk.vbs
|
||||
echo [+] 桌面快捷方式创建成功!!
|
||||
echo.
|
||||
makelnk.vbs
|
||||
del /f /q makelnk.vbs
|
||||
pause
|
||||
goto :eof
|
||||
:GetWorkDir
|
||||
set WorkDir=%~dp1
|
||||
set WorkDir=%WorkDir:~,-1%
|
||||
pause
|
||||
goto :eof
|
||||
6
吾爱破解论坛.url
Normal file
6
吾爱破解论坛.url
Normal file
@ -0,0 +1,6 @@
|
||||
[InternetShortcut]
|
||||
URL=https://www.52pojie.cn/thread-691448-1-1.html
|
||||
IDList=
|
||||
HotKey=0
|
||||
[{000214A0-0000-0000-C000-000000000046}]
|
||||
Prop3=19,11
|
||||
Loading…
x
Reference in New Issue
Block a user