Tagged Questions
6
votes
8answers
423 views
Is this query safe from sql injection?
The script is in PHP and as DB I use MySQL. Here is the script itself.
$unsafe_variable = $_GET["user-input"];
$sql=sprintf("INSERT INTO table (column) VALUES('%s')",$unsafe_variable);
...
6
votes
6answers
5k views
How to prevent code injection attacks in PHP?
I am abot confusing, there are so many functions in PHP, and some using this, some using that. Some people use: htmlspecialchars(), htmlentities(), strip_tags() etc
Which is the correct one and what ...
5
votes
9answers
578 views
2
votes
2answers
57 views
Can $_SERVER be faked in PHP?
In PHP, Remote file inclusion can be conducted via input from $_GET, $_POST, $_COOKIE. I know it is improbable, but is it possible (by any chance) to fake the value come out of $_SERVER?
I mean, can ...
2
votes
3answers
92 views
Does using the converting input from HTML forms into htmlentities protect attacks invoving JavaScript insertion?
I was wondering if converting POST input from an HTML form into html entities, (via the PHP function htmlentities() or using the FILTER_SANITIZE_SPECIAL_CHARS constant in tandem with the ...
2
votes
3answers
348 views
How do I avoid reflection injection attacks in PHP?
I'm writing a class that allows you to bridge HTTP requests with class instances using JSON for data, without any implementation in the class you're bridging to. Basically this is how it works:
// ...
1
vote
3answers
263 views
xss attack - regex or htmlspecialchars
To prevent an xss attack, if I use a php regex to block strange characters like '> or ; do I still need to use htmlspecialchars and htmlentities?
1
vote
2answers
399 views
Help with odd PHP javascript/hidden iframe hack
Some pages on my site are including an unintended hidden iframe with some javascript in their output. I have read about sites getting hacked and similar code being added to php and html files before, ...
1
vote
2answers
136 views
Is PHPIDS enough for securing my website?
I just found out about PHPIDS and I have a couple of questions:
Can PHPIDS protect from automated sql injection attacks ?
Can it protect from DOS attacks?
Is it enough to be used on its own or must ...
1
vote
2answers
110 views
database security
I've been reading about database security when it comes to websites. And it says an attacker could steal a database and then have as much time as he wants to get all the user's passwords.
If an ...
1
vote
3answers
343 views
how to avoid bot attacks on form
i have these forms:
https://www.mychabad.org/templates/articlecco.asp?aid=1188756&jewish=General-Contributions.htm&lang=en&site=chabaduc.org
...
0
votes
3answers
349 views
php possible attack? [closed]
i would like to now if i am on any kind of attack and what security should be applied.
I got this in my server logs:
"GET /site.php?a={%24{passthru%28chr%28105%29.chr%28100%29%29}} HTTP/1.1" 404 ...
0
votes
1answer
94 views
HTMLPurifier Not working?
I'm putting HTMLPurifier through some tests to make sure that everything works as expected. I'm using examples from http://ha.ckers.org/xss.html. I think everything I coded is 'correct' but I am able ...
0
votes
4answers
417 views
how to prevent hacking from POST method
I have a script that use $_POST variable to store to the database.
There are some users who is trying to cheat the system by making their own post form method or using curl to send post variable and ...