Skip to content

Commit

Permalink
add spip detect
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazgangap committed Aug 23, 2024
1 parent 5ba4166 commit ecb6036
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions http/technologies/spip-detect.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
id: spip-detect
info:
name: SPIP - Detect
author: s4e-io
severity: info
description: Detects a SPIP and SPIP version.
reference:
- https://www.spip.net/
metadata:
max-request: 1
vendor: spip
product: spip
fofa-query: app="SPIP"
tags: spip,tech,detect

http:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
matchers-condition: and
matchers:
- type: regex
part: header
regex:
- 'Composed-By: SPIP ([0-9]{1,2}.[0-9]{1,2}.[0-9]{1,2}) @ www.spip.net'
- 'X-Spip-Cache:'
condition: and

- type: status
status:
- 200

extractors:
- type: regex
name: spip__version
part: header
regex:
- 'Composed-By: SPIP ([0-9]{1,2}.[0-9]{1,2}.[0-9]{1,2}) @ www.spip.net'
group: 1

0 comments on commit ecb6036

Please sign in to comment.