Back to services
web-app80/tcp

WordPress

WordPressWPWordPress CMS

WordPress is the most popular CMS. Common attacks include XML-RPC brute force, vulnerable plugin exploitation, and wp-config.php credential disclosure.

Ports

PortProtocolDescription
80tcpHTTP
443tcpHTTPS

Fingerprints

Banner / ProbeExpected Response
nmap -sV -p <port> <target>Service banner and version info
nc -nv <target> <port>Raw banner grab

Key Files

PathDescription
.envEnvironment variables with API keys and DB creds
config.phpApplication configuration file
wp-config.phpWordPress database credentials
web.configIIS configuration file
.git/configGit repository configuration
robots.txtDisallowed paths (information disclosure)
sitemap.xmlURL structure enumeration

Default Credentials

UsernamePasswordContext
adminadminCommon admin credentials
adminpasswordWeak admin password

Known CVEs

IdentifierTypeDescription
CVE-2021-29447RCEXXE in media library

Exploitation Primitives

TechniqueTool / CommandResult
User Enumwpscan --url https://<target> --enumerate uEnumerate WP users
XML-RPC Brutewpscan --url https://<target> --passwords rockyou.txt --usernames adminBrute force via XML-RPC

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