Added templates
parent
c9b5190c82
commit
229ea11e8b
|
@ -0,0 +1,16 @@
|
|||
id: jira-cve-2017-9506
|
||||
|
||||
info:
|
||||
name: Jira IconURIServlet SSRF
|
||||
author: Ice3man
|
||||
severity: high
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/plugins/servlet/oauth/users/icon-uri?consumerUri=https://ipinfo.io/json"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "ipinfo.io/missingauth"
|
||||
part: body
|
|
@ -0,0 +1,15 @@
|
|||
id: git-config
|
||||
|
||||
info:
|
||||
name: Git Config Disclosure
|
||||
author: Ice3man
|
||||
severity: medium
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/.git/config"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "[core]"
|
|
@ -0,0 +1,20 @@
|
|||
id: phpinfo-files
|
||||
|
||||
info:
|
||||
name: phpinfo Disclosure
|
||||
author: bauthard
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/php.php"
|
||||
- "{{BaseURL}}/phpinfo.php"
|
||||
- "{{BaseURL}}/info.php"
|
||||
- "{{BaseURL}}/_profiler/phpinfo"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "PHP Extension"
|
||||
- "PHP Version"
|
||||
condition: and
|
|
@ -0,0 +1,24 @@
|
|||
id: server-status-localhost
|
||||
|
||||
info:
|
||||
name: Server Status Disclosure
|
||||
author: bauthard
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
# Example of sending some headers to the servers
|
||||
headers:
|
||||
X-Client-IP: "127.0.0.1"
|
||||
X-Remote-IP: "127.0.0.1"
|
||||
X-Remote-Addr: "127.0.0.1"
|
||||
X-Forwarded-For: "127.0.0.1"
|
||||
X-Originating-IP: "127.0.0.1"
|
||||
path:
|
||||
- "{{BaseURL}}/server-status"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "Apache Server Status"
|
||||
- "Server Version"
|
||||
condition: and
|
|
@ -0,0 +1,15 @@
|
|||
id: phpmyadmin-panel
|
||||
|
||||
info:
|
||||
name: phpMyAdmin Panel
|
||||
author: bauthard
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/phpmyadmin/"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "<title>phpMyAdmin</title>"
|
|
@ -0,0 +1,23 @@
|
|||
id: swagger-panel
|
||||
|
||||
info:
|
||||
name: Swagger API Panel
|
||||
author: Ice3man
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/swagger/index.html"
|
||||
- "{{BaseURL}}/swagger-ui.html"
|
||||
- "{{BaseURL}}/swagger/swagger-ui.html"
|
||||
- "{{BaseURL}}/api/swagger-ui.html"
|
||||
- "{{BaseURL}}/api-docs/swagger.json"
|
||||
- "{{BaseURL}}/swagger.json"
|
||||
- "{{BaseURL}}/swagger/v1/swagger.json"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "\"swagger\":"
|
||||
- "Swagger UI"
|
||||
condition: or
|
|
@ -0,0 +1,15 @@
|
|||
id: citrix-vpn-detect
|
||||
|
||||
info:
|
||||
name: Citrix VPN Detection
|
||||
author: bauthard
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/vpn/index.html"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "<title>Citrix Gateway</title>"
|
|
@ -0,0 +1,16 @@
|
|||
id: jenkins-headers-detect
|
||||
|
||||
info:
|
||||
name: Jenkins Headers Based Detection
|
||||
author: ice3man
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "X-Jenkins"
|
||||
part: header
|
|
@ -0,0 +1,16 @@
|
|||
id: jira-detect
|
||||
|
||||
info:
|
||||
name: Detect Jira Issue Management Software
|
||||
author: bauthard
|
||||
severity: low
|
||||
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/secure/Dashboard.jspa"
|
||||
- "{{BaseURL}}/jira/secure/Dashboard.jspa"
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- "Project Management Software"
|
Loading…
Reference in New Issue