Skip to content

Commit

Permalink
Merge pull request #10513 from rxerium/searxng-detect
Browse files Browse the repository at this point in the history
SearXNG Detection
  • Loading branch information
DhiyaneshGeek authored Aug 13, 2024
2 parents 8936597 + f6338ad commit 5f3f7f4
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
5 changes: 5 additions & 0 deletions http/technologies/favicon-detect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3771,6 +3771,11 @@ http:
dsl:
- "status_code==200 && (\"1653394551\" == mmh3(base64_py(body)))"

- type: dsl
name: "searxng-search"
dsl:
- "status_code==200 && (\"1857752096\" == mmh3(base64_py(body)))"

extractors:
- type: dsl
dsl:
Expand Down
31 changes: 31 additions & 0 deletions http/technologies/searxng-detect.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
id: searxng-detect

info:
name: SearXNG - Detect
author: rxerium
severity: info
description: |
A SearXNG search engine was detected.
reference:
- https://github.com/searxng/searxng
metadata:
max-request: 1
verified: true
shodan-query: http.title:SearXNG
tags: searxng,search-engine,tech

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

matchers-condition: and
matchers:
- type: word
part: body
words:
- "<title>SearXNG</title>"

- type: status
status:
- 200

0 comments on commit 5f3f7f4

Please sign in to comment.