http://www.insecuremagazine.com/INSECURE-Mag-8.pdf
"Review: Acunetix Web Vulnerability Scanner 4.0"
But it is these tools and even static code analysis show false positives and don't find every hole.
Search found 3 matches
- Sat Oct 14, 2006 8:04 pm
- Forum: PHP - Security
- Topic: Any experiences with security scanning software?
- Replies: 5
- Views: 2323
- Sat Oct 14, 2006 8:00 pm
- Forum: PHP - Security
- Topic: PHP User ID validation
- Replies: 3
- Views: 1764
You probably want to use the more correct way:Javrixx wrote:Thanks for your help, I got it working and here is the code I am using for it:
Code: Select all
if($userid != 1) { header('Location: ../../support/'); exit; }
Code: Select all
if($userid !== true)
{
header('Location: ../../support/');
exit;
}- Sat Oct 14, 2006 7:58 pm
- Forum: PHP - Security
- Topic: regular expressions to look for specific series of character
- Replies: 10
- Views: 3148