# Plugins and Themes Enumeration

**Plug-ins**

```shell-session
curl -s -X GET http://blog.inlanefreight.com | sed 's/href=/\n/g' | sed 's/src=/\n/g' | grep 'wp-content/plugins/*' | cut -d"'" -f2
```

**Temas**

```shell-session
curl -s -X GET http://blog.inlanefreight.com | sed 's/href=/\n/g' | sed 's/src=/\n/g' | grep 'themes' | cut -d"'" -f2
```

**Enumeração ativa de plug-ins**

```shell-session
curl -I -X GET http://blog.inlanefreight.com/wp-content/plugins/mail-masta
```
