Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Mapping application architecture involves identifying all components that make up the application infrastructure, including web servers, application servers, databases, load balancers, CDNs, firewalls, and security devices. Understanding the architecture helps penetration testers identify scope boundaries, potential attack vectors, and provide meaningful security recommendations. This reconnaissance phase reveals how different components interact and where security controls are implemented.
What to Check
Infrastructure Components
Web server (Apache, nginx, IIS)
Application server (Tomcat, JBoss, .NET)
Database server (MySQL, PostgreSQL, MSSQL, Oracle)
# Trigger errors to identify database
curl -s "https://target.com/api?id='"
curl -s "https://target.com/api?id=1 OR 1=1"
Step 4: Load Balancer Detection
# Multiple requests to detect variationsfor i in {1..10}; doecho"=== Request $i ==="
curl -sI https://target.com | grep -iE 'server|date|x-|set-cookie'sleep 1
done# Look for load balancer cookies
curl -sI https://target.com | grep -i 'set-cookie'
Load Balancer Indicators
Indicator
Load Balancer
BIGipServer cookie
F5 BIG-IP
AWSALB/AWSALBCORS cookie
AWS ALB
X-Amz-Cf-Id header
AWS CloudFront
X-Cache header
Various
Via header
Proxy/LB
Inconsistent Server headers
Multiple backends
Varying response times
Distribution
Step 5: CDN Detection
# WHOIS lookup on resolved IP
dig +short target.com | xargs whois | grep -i 'org-name\|netname'# Check known CDN ranges
curl -sI https://target.com | grep -iE 'cf-ray|x-cdn|x-cache|x-amz-cf|akamai|fastly|cloudflare'
CDN Indicators
Header/Pattern
CDN
CF-Ray
Cloudflare
X-Amz-Cf-Id
AWS CloudFront
X-Akamai-*
Akamai
X-Fastly-*
Fastly
X-CDN
Generic CDN
Server: cloudflare
Cloudflare
Step 6: Reverse Proxy Detection
# Look for proxy indicators
curl -sI https://target.com | grep -iE 'via|x-forwarded|x-real-ip|x-proxy'# Check for header mismatches# e.g., nginx Server header but ASP.NET errors
Proxy Indicators
Via header present
X-Forwarded-For header accepted
Server header mismatch with error pages
Different Server headers on different endpoints
Step 7: WAF Detection
# Test with common attack patterns
curl -s "https://target.com/?id=<script>alert(1)</script>"
curl -s "https://target.com/?id=' OR 1=1--"
curl -s "https://target.com/?id=../../../etc/passwd"# Check response for WAF signatures
curl -sI "https://target.com/?id=<script>" | grep -iE 'waf|firewall|blocked|forbidden'