SAP
SAPSAP ERPSAP NetWeaver
SAP is enterprise resource planning software. Common vectors include default credentials (DDIC/PASS), RFC privilege escalation, and configuration disclosure.
Ports
| Port | Protocol | Description |
|---|---|---|
| 3200 | tcp | SAP Dispatcher |
| 3300 | tcp | SAP Gateway |
| 8000 | tcp | SAP Web AS |
| 443 | tcp | SAP Fiori HTTPS |
| 50000 | tcp | SAP J2EE |
Fingerprints
| Banner / Probe | Expected Response |
|---|---|
nmap -sV -p <port> <target> | Service banner and version info |
nc -nv <target> <port> | Raw banner grab |
Key Files
| Path | Description |
|---|---|
.env | Environment variables with API keys and DB creds |
config.php | Application configuration file |
wp-config.php | WordPress database credentials |
web.config | IIS configuration file |
.git/config | Git repository configuration |
robots.txt | Disallowed paths (information disclosure) |
sitemap.xml | URL structure enumeration |
Default Credentials
| Username | Password | Context |
|---|---|---|
DDIC | PASS | SAP ABAP superuser |
SAP* | PASS | SAP* superuser |
Known CVEs
| Identifier | Type | Description |
|---|---|---|
— | Info | Check NVD database for latest CVEs |
Exploitation Primitives
| Technique | Tool / Command | Result |
|---|---|---|
| Recon | nmap -sV -sC -p- <target> | Full port/service scan |
| Enumeration | nmap --script <service>-* -p <port> <target> | Service-specific NSE scripts |
Notes
Always start with full port scan: `nmap -sV -sC -p- <target>`.
Check for default credentials before brute-forcing.
Use service-specific NSE scripts: `nmap --script <service>-* -p <port> <target>`.
Remember to check both IPv4 and IPv6 if applicable.
Seen on
ShodanCensysFOFAZoomEye
References