Skip to content

minority opinions

Menu
  • Contact
  • Home
  • Tags
Menu

web proxy 간편 실행 burp sutie zap

Posted on December 10, 2021July 7, 2023 by Daniel J.

burp suite 이나 OWASP ZAP 등 web proxy 도구를 사용할때 팁

취약점 분석이나 모의해킹 할때 브라우저를 열고 Proxy 셋팅에 IP 입력하기가 번거로울때 아래와 같은 방법을 사용중이다  OS Windows 10 이상

TIP :  registry 변경 스크립트 실행 -> 브라우저 재실행

burp suite 127.0.0.1:8080 으로 실행시 / burp_start.bat 

@echo off
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 00000001 /f
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d 127.0.0.1:8080 /f

taskkill /F /IM iexplore.exe /T
start iexplore
timeout 2
taskkill /F /IM iexplore.exe /T

ZAP 127.0.0.1:9090 으로 실행시 / zap_start.bat

@echo off
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 00000001 /f
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d 127.0.0.1:9090 /f


taskkill /F /IM iexplore.exe /T
start iexplore
timeout 2
taskkill /F /IM iexplore.exe /T

Registry restore (브라우저 기본 셋팅으로 복귀) / restore.bat

@echo off
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 00000000 /f
%SystemRoot%\system32\reg.exe add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /f
taskkill /F /IM iexplore.exe /T
start iexplore
timeout 2
taskkill /F /IM iexplore.exe /T

Burp Suite Download

https://portswigger.net/burp/communitydownload

ZAP Proxy Download

https://www.zaproxy.org/download/

Related

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Category

  • Article (49)
  • Uncategorized (214)
  • 게임 소식 (9)
  • 기술 정보 & 테크 소식 (188)
  • 꿀팁정리 & 자기계발 (250)
  • 블로그 (8)
  • 사건 사고 (3)
  • 역사 (11)
  • 이슈 뉴스 정리 (127)
  • 정치 인물 사회 (22)
  • 주식 경제 (102)

Popular Posts

  • 장사의신 애월 파스타집 고양이 기름때 위생 논란
  • 서울 서이초등학교 학부모 갑질 교사 자살 사건
  • 한문철 전직 보디빌더 인천 주차장 폭행사건 가해자는 누구?
  • 코딩하는 공익 반병현 셀프 바이럴 논란
  • 황의조 휴대폰 해킹, 성관계 사진 인스타 유포

©2023 minority opinions | Design: Newspaperly WordPress Theme