
Go로 작성된 40X/HTTP 우회 도구. 기능: HTTP 동사 변조, 헤더, #bugbountytips, 사용자 에이전트, 확장자, 기본 자격 증명...
/ /_ __ ______ // // _ ___ __
/ __ / / / / __ / // /| |// |//
/ // / // / // /__ /> <> <
/./_, / .__/ // //|//||
/___//
Go로 작성된 40X 바이패서. #bugbountytips, 헤더, 동사 변조, 사용자 에이전트 등의 방법을 포함합니다.
사용법:
byp4xx <cURL or byp4xx options> <URL or file>
Some cURL options you may use as example:
-L follow redirections (30X responses)
-x <ip>:<port> to set a proxy
-m <seconds> to set a timeout
-H for new headers. Escape double quotes.
-d for data in the POST requests body
-...
Built-in options:
--all Verbose mode (by default only 2xx and 3xx codes will be prompted)
-t or --thread Set the maximum threads. Rate limit disabled when threads are enabled. Use carefully.
--rate Set the maximum reqs/sec. Only one thread enforced, for low rate limits. (5 reqs/sec by default)
-xV Exclude verb tampering
-xH Exclude headers
-xUA Exclude User-Agents
-xX Exclude extensions
-xD Exclude default creds
-xS Exclude CaSe SeNsiTiVe
-xM Exclude middle paths
-xE Exclude end paths
-xB Exclude #bugbountytips
예제:
일반적인 사용법:
byp4xx http://localhost/test
응답이 401이 아닌 경우 기본 자격 증명 생략:
byp4xx -xD http://localhost/test
URL이 /로 끝나는 경우 엔드 경로와 확장자 생략:
byp4xx -xE -xX http://localhost/test
2초 타임아웃 설정, 리디렉션 따르기, 프록시 사용:
byp4xx -m 2 -L -x 127.0.0.1:8080 http://localhost/test
사용자 정의 헤더, 큰따옴표 이스케이프 필요:
byp4xx -H \"Authorization: Bearer <JWT>\" http://localhost/test
기능: