BurpSuite含有强大的抓包改包功能,不过改包前需要设置代理,通过Burp指定的端口发包。有时候切换起来很麻烦,我们可以写一个批处理通过更改注册表快速切换代理状态。
将下面文件保存为ON.BAT
@echo off rem echo 请根据实际情况做修改, WindowXP测试Okay rem ========= EnableProxy ================================= echo 正在清空代理服务器设置…… reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyServer /d "" /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyOverride /t REG_SZ /d 0 /f echo 正在设置代理服务器…… reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyServer /d "127.0.0.1:8080" /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyOverride /t REG_SZ /d "" /f echo 已成功设置代理
运行即可设置代理服务器为127.0.0.1,端口为8080。8080端口为burp默认的端口。如果你是代理浏览网页,就在倒数第二个reg语句那里修改IP为代理服务器的IP,端口为80即可。
将下面文件保存为OFF.BAT
@echo off echo 正在清空代理服务器设置…… reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyServer /d "" /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyOverride /t REG_SZ /d 0 /f echo 代理服务器设置已经清空 reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyServer /d "" /f reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyOverride /t REG_SZ /d "" /f echo 已成功取消代理服务器
点击它就可以删除代理了。
通过这两个文件,就可以很便捷地切换浏览器代理选项。以上文件在XP下测试有效,在WIN7下可能需要管理员权限运行(未测试)。
最近博客常常被人刷评论,最狠的一次被刷了10000多广告。 先看看评论验证码是怎么检查的。 emlog/include/controller/comment_controller.php,先获得$imgcode: <?php $imgcode = iss…
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
请登录后发表评论
注册