33 lines
673 B
YAML
33 lines
673 B
YAML
|
id: angular-detect
|
||
|
|
||
|
info:
|
||
|
name: Angular detect
|
||
|
author: TechbrunchFR
|
||
|
severity: info
|
||
|
description: Angular is a development platform for building mobile and desktop web applications using Typescript/JavaScript and other languages.
|
||
|
reference:
|
||
|
- https://github.com/angular/angular
|
||
|
metadata:
|
||
|
verified: true
|
||
|
shodan-query: html:"ng-version="
|
||
|
tags: technology,angular
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}"
|
||
|
|
||
|
matchers-condition: and
|
||
|
|
||
|
matchers:
|
||
|
- part: body
|
||
|
type: word
|
||
|
words:
|
||
|
- "ng-version="
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
group: 1
|
||
|
regex:
|
||
|
- 'ng-version="([0-9.]+)"'
|