Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added template for uni-gui-framework-detection #9747

Merged
merged 5 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
50 changes: 50 additions & 0 deletions http/technologies/uni-gui-framework.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
id: uni-gui-framework

info:
name: UniGUI Framework - Detect
author: serrapa
severity: info
description: |
Checks for the presence of UniGUI framework and extracts its version along with the Sencha Ext JS version.
metadata:
verified: true
max-request: 1
shodan-query: http.title:"UniGUI"
tags: tech,unigui

http:
- method: GET
path:
- "{{BaseURL}}"

host-redirects: true
max-redirects: 2

matchers-condition: and
matchers:
- type: word
part: body
words:
- "uni-xtheme-"
- "ext-all.js"
- "uniVars._extVer="
condition: or

- type: regex
part: body
regex:
- 'uni-(\d+\.\d+\.\d+\.\d+)/'
- 'uniVars._extVer="(\d+\.\d+\.\d+)"'

extractors:
- type: regex
part: body
name: uni_gui_version
regex:
- 'uni-(\d+\.\d+\.\d+\.\d+)'

- type: regex
part: body
name: ext_js_version
regex:
- 'uniVars._extVer="(\d+\.\d+\.\d+)"'