projectdiscovery / nuclei-templates

Community curated list of templates for the nuclei engine to find security vulnerabilities.
https://github.com/projectdiscovery/nuclei
MIT License
9.28k stars 2.64k forks source link

apc-file-leak #3561

Closed No-Github closed 2 years ago

No-Github commented 2 years ago

Template Information:

Nuclei Template:

id: apc-file-leak

info:
  name: apc-file-leak
  severity: info
  author: ffffffff0x
  metadata:
    google-dork: inurl:"apc.php"
  reference: |
    - https://www.acunetix.com/vulnerabilities/web/apc-php-page-found/
  tags: apc,files

requests:
  - method: GET
    path:
      - "{{BaseURL}}/apc.php"

    matchers-condition: and
    matchers:
      - type: word
        words:
          - "<title>APC"
          - 'h1.apc'
          - 'class="apc">'
          - 'http://pecl.php.net/package/APC'
        condition: and

      - type: status
        status:
          - 200

image

image

ehsandeep commented 2 years ago

@No-Github we have exisiting template for it misconfiguration/apc-info.yaml

No-Github commented 2 years ago

okay