Skip to content

Commit

Permalink
Merge branch 'master' into securestep9-ivanti_vtm_version_scan-docs-p…
Browse files Browse the repository at this point in the history
…atch-1
  • Loading branch information
securestep9 authored Sep 27, 2024
2 parents d4d0016 + 7c2479a commit 20f5f3c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions nettacker/modules/scan/ivanti_vtm_version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
info:
name: ivanti_vtm_version_scan
author: OWASP Nettacker Team
severity: 3
description: Ivanti vTM Version Scan
reference: https://www.helpnetsecurity.com/2024/09/25/cve-2024-7593-exploited/
profiles:
- scan
- http
- ivanti
- low_severity

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}}/apps/zxtm/login.cgi"
prefix: ""
suffix: ""
interceptors:
data:
schema:
- "https"
ports:
- 9090
response:
condition_type: and
log: "response_dependent['content']"
conditions:
status_code:
regex: "200"
reverse: false
headers:
Pragma:
regex: no-cache
reverse: false
content:
regex: |
<span class="version">([0-9]+(?:\.[0-9]+)*[A-Za-z0-9]*)<\/span>
reverse: false

0 comments on commit 20f5f3c

Please sign in to comment.