netstat-service-expose: Netstat Service - Expose

日期: 2025-08-01 | 影响软件: Netstat Service | POC: 已公开

漏洞描述

Port 15 (Netstat) was found exposed, which could have disclosed sensitive network and system information to unauthorized users.

PoC代码[已公开]

id: netstat-service-expose

info:
  name: Netstat Service - Expose
  author: pussycat0x
  severity: low
  description: |
    Port 15 (Netstat) was found exposed, which could have disclosed sensitive network and system information to unauthorized users.
  impact: |
    This exposure increased the risk of information gathering and potential exploitation by attackers.
  metadata:
    verified: true
    max-request: 1
    zoomeye-query: port="15" && "netstat"
  tags: netsat,network,js,tcp,vuln

javascript:
  - pre-condition: |
      isPortOpen(Host,Port);
    code: |
      let packet = bytes.NewBuffer();
      const c = require("nuclei/net");
      const cmd = "00000000"
      packet.WriteString(cmd)
      let conn = c.Open('tcp', `${Host}:${Port}`);
      conn.SendHex(packet.Hex());
      const result = conn.RecvString();
      result;

    args:
      Host: "{{Host}}"
      Port: 15

    matchers:
      - type: dsl
        dsl:
          - "success == true"
          - contains(response, "Active Internet connections")
        condition: and

    extractors:
      - type: dsl
        dsl:
          - response
# digest: 4a0a004730450220617db7763b1a47534cbddab3996a2240df6a56489da59b87237ec8a237b94add022100a57654ead4016baaa3a314bab0cb6d87d9f57e96ceba331e4bc2e1cf2f33da7e:922c64590222798bb761d5b6d8e72950

相关漏洞推荐