Skip to content

Commit

Permalink
Merge branch 'master' into securestep9-patch-v0.3.3-1
Browse files Browse the repository at this point in the history
  • Loading branch information
securestep9 committed Jan 20, 2024
2 parents d7db43e + 1ac1462 commit 9e1dbca
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 3 deletions.
48 changes: 48 additions & 0 deletions modules/scan/ivanti_epmm_lastpatcheddate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
info:
name: ivanti_epmm_lastpatcheddate_scan
author: OWASP Nettacker Team
severity: 3
description: Ivanti EPMM Last Patched Date Scan
reference:
profiles:
- scan
- http
- ivanti
- low_severity

payloads:
- library: http
steps:
- method: head
timeout: 3
headers:
User-Agent: "{user_agent}"
allow_redirects: false
ssl: false
url:
nettacker_fuzzer:
input_format: "{{schema}}://{target}:{{ports}}/mifs/css/pages/userlogin.css"
prefix: ""
suffix: ""
interceptors:
data:
schema:
- "http"
- "https"
ports:
- 80
- 443
response:
condition_type: and
log: "response_dependent['headers']['Last-Modified']"
conditions:
status_code:
regex: "200"
reverse: false
headers:
Last-Modified:
regex: .*
reverse: false
Content-Type:
regex: "css"
reverse: false
48 changes: 48 additions & 0 deletions modules/scan/ivanti_ics_lastpatcheddate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
info:
name: ivanti_ics_lastpatcheddate_scan
author: OWASP Nettacker Team
severity: 3
description: Ivanti ICS Last Patched Date Scan
reference:
profiles:
- scan
- http
- ivanti
- low_severity

payloads:
- library: http
steps:
- method: head
timeout: 3
headers:
User-Agent: "{user_agent}"
allow_redirects: false
ssl: false
url:
nettacker_fuzzer:
input_format: "{{schema}}://{target}:{{ports}}/dana-na/css/ds.js"
prefix: ""
suffix: ""
interceptors:
data:
schema:
- "http"
- "https"
ports:
- 80
- 443
response:
condition_type: and
log: "response_dependent['headers']['Last-Modified']"
conditions:
status_code:
regex: "200"
reverse: false
headers:
Last-Modified:
regex: .*
reverse: false
Content-Type:
regex: "javascript"
reverse: false
53 changes: 53 additions & 0 deletions modules/vuln/ivanti_epmm_cve_2023_35082.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
info:
name: ivanti_epmm_cve_2023_35082_vuln
author: OWASP Nettacker team
severity: 9.8
description: CVE-2023-35082 is an authentication bypass in Ivanti Endpoint Manager Mobile (EPMM) and MobileIron Core
reference:
- https://forums.ivanti.com/s/article/CVE-2023-35082-Remote-Unauthenticated-API-Access-Vulnerability-in-MobileIron-Core-11-2-and-older
- https://www.cisa.gov/news-events/alerts/2024/01/18/cisa-adds-one-known-exploited-vulnerability-catalog
- https://www.helpnetsecurity.com/2024/01/19/exploited-cve-2023-35082/
- https://www.rapid7.com/blog/post/2023/08/02/cve-2023-35082-mobileiron-core-unauthenticated-api-access-vulnerability/
profiles:
- vuln
- vulnerability
- http
- high_severity
- cve
- ivanti
- ivanti_epmm
- cisa_kev

payloads:
- library: http
steps:
- method: get
timeout: 3
headers:
User-Agent: "{user_agent}"
allow_redirects: false
ssl: false
url:
nettacker_fuzzer:
input_format: "{{schema}}://{target}:{{ports}}/{{paths}}"
prefix: ""
suffix: ""
interceptors:
data:
paths:
- "mifs/asfV3/api/v2/ping"
schema:
- "http"
- "https"
ports:
- 80
- 443
response:
condition_type: and
conditions:
status_code:
regex: "200"
reverse: false
content:
regex: "vspVersion"
reverse: false
6 changes: 3 additions & 3 deletions modules/vuln/ivanti_ics_cve_2023_46805.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ payloads:
- method: get
timeout: 3
headers:
User-Agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36"
User-Agent: "{user_agent}"
allow_redirects: false
ssl: false
url:
Expand All @@ -44,8 +44,8 @@ payloads:
condition_type: and
conditions:
status_code:
regex: '403'
regex: "403"
reverse: false
content:
regex: '<html>'
regex: "<html>"
reverse: true

0 comments on commit 9e1dbca

Please sign in to comment.