- Code: Select all
[company].com/loginform.cfm?loginerror=Your login information is not valid.<br/>Please try again.
The loginerror variable is displayed directly on the page and is not checked for special characters, so this alerted me to a possible vulnerability.
I tried
- Code: Select all
/loginform.cfm?loginerror=<script>alert("haxxored");</script>
Which when submitted displayed an alert box, so I know that the site is vulnerable to an XSS attack. However since the site is not running php, something like loginerror=<?php phpinfo() ?> will not work. I am unfamiliar with coldfusion, so I am not sure what other, if any exploits I could make through this vulnerability with coldfusion being the server side language.
I ask because I am insterested in learning whether it is vulnerable to more than just an XSS attack before I notify the admin.




