Search found 3 matches

by Stevenr
Sat Oct 14, 2006 8:04 pm
Forum: PHP - Security
Topic: Any experiences with security scanning software?
Replies: 5
Views: 2323

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.
by Stevenr
Sat Oct 14, 2006 8:00 pm
Forum: PHP - Security
Topic: PHP User ID validation
Replies: 3
Views: 1764

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;
}
You probably want to use the more correct way:

Code: Select all

if($userid !== true)
{
    header('Location: ../../support/');
    exit;
}
by Stevenr
Sat Oct 14, 2006 7:58 pm
Forum: PHP - Security
Topic: regular expressions to look for specific series of character
Replies: 10
Views: 3148

feyd | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] if($str =...