|
Revision 704, 390 bytes
(checked in by brieb, 7 months ago)
|
- Fixed several SQL injection vulnerabilities
- Fixed several XSS vulnerabilities due to PHP_SELF and REQUREST_URI
- Fixed severa path disclosure errors
|
-
Property svn:keywords set to
LastChangedBy LastChangedDate LastChangedRevision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | if(!isset($phpbms)) |
|---|
| 3 | exit(); |
|---|
| 4 | |
|---|
| 5 | if($phpbms->showFooter) |
|---|
| 6 | {?> |
|---|
| 7 | <div id="footer"> |
|---|
| 8 | <p id="footerAbout"><a href="http://www.phpbms.org" target="_blank">phpBMS</a> By <a href="http://www.kreotek.com" target="_blank">Kreotek, LLC</a></p> |
|---|
| 9 | <p id="footerTop"><a href="#toptop">top</a></p> |
|---|
| 10 | </div> |
|---|
| 11 | <?php }//end if ?> |
|---|
| 12 | <?php $phpbms->showExtraJs($phpbms->bottomJS) ?> |
|---|
| 13 | </body> |
|---|
| 14 | </html> |
|---|