Detection rules › Sigma

PUA - Advanced IP/Port Scanner Update Check

Status
test
Severity
medium
Log source
category proxy
Author
Axel Olsson
Source
github.com/SigmaHQ/sigma

Detect the update check performed by Advanced IP/Port Scanner utilities.

MITRE ATT&CK coverage

TacticTechniques
ReconnaissanceT1590 Gather Victim Network Information

Rule body yaml

title: PUA - Advanced IP/Port Scanner Update Check
id: 1a9bb21a-1bb5-42d7-aa05-3219c7c8f47d
status: test
description: Detect the update check performed by Advanced IP/Port Scanner utilities.
references:
    - https://www.advanced-ip-scanner.com/
    - https://www.advanced-port-scanner.com/
author: Axel Olsson
date: 2022-08-14
modified: 2024-02-15
tags:
    - attack.discovery
    - attack.reconnaissance
    - attack.t1590
logsource:
    category: proxy
detection:
    selection:
      # Example request: http://www.advanced-port-scanner.com/checkupdate.php?lng=en&ver=2-5-3680&beta=n&type=upd&rmode=p&product=aps
      # Example request2: http://www.advanced-ip-scanner.com/checkupdate.php?lng=en&ver=2-5-3499&beta=n&type=upd&rmode=p&product=aips
        c-uri|contains: '/checkupdate.php'
        c-uri-query|contains|all:
            - 'lng='
            - 'ver='
            - 'beta='
            - 'type='
            - 'rmode='
            - 'product='
    condition: selection
falsepositives:
    - Expected if you legitimately use the Advanced IP or Port Scanner utilities in your environement.
level: medium

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
    c-uri|contains: '/checkupdate.php'
    c-uri-query|contains|all:
        - 'lng='
        - 'ver='
        - 'beta='
        - 'type='
        - 'rmode='
        - 'product='

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
c-urimatch
  • /checkupdate.php
c-uri-querymatch
  • beta=
  • lng=
  • product=
  • rmode=
  • type=
  • ver=