php Programming Glossary: exploits
External image vulnerabilities http://stackoverflow.com/questions/11596419/external-image-vulnerabilities your users to not upload URLs to images that might contain exploits for certain browsers. What might be secure now might not be..
How to make a safe file upload script in php? http://stackoverflow.com/questions/1815908/how-to-make-a-safe-file-upload-script-in-php using a forged image file would be something that exploits the browser's rendering engine. This is impossible to protect..
Strict HTML Validation and Filtering in PHP http://stackoverflow.com/questions/199017/strict-html-validation-and-filtering-in-php xss share improve this question I've tested all exploits I know on HTML Purifier and it did very well. It filters not..
What security problems could come from exposing phpinfo() to end users? http://stackoverflow.com/questions/3196011/what-security-problems-could-come-from-exposing-phpinfo-to-end-users taking it down where should you watch focus for malicious exploits php security share improve this question Knowing the structure..
htmlspecialchars vs htmlentities when concerned with XSS http://stackoverflow.com/questions/3623236/htmlspecialchars-vs-htmlentities-when-concerned-with-xss htmlspecialchars will NOT protect you against UTF 7 XSS exploits that still plague Internet Explorer even in IE 9 http securethoughts.com..
Secure User Image Upload Capabilities in PHP http://stackoverflow.com/questions/3644138/secure-user-image-upload-capabilities-in-php user. Also copying the image will probably get rid of most exploits that use faulty image data to cause overflows in the viewer..
How do I execute PHP that is stored in a MySQL database? http://stackoverflow.com/questions/41406/how-do-i-execute-php-that-is-stored-in-a-mysql-database Addition Another good article with some references to exploits is this blogpost . Refers to past vBulletin and phpMyAdmin exploits.. is this blogpost . Refers to past vBulletin and phpMyAdmin exploits which were caused by improper Eval usage. share improve this..
PHP image upload security check list http://stackoverflow.com/questions/4166762/php-image-upload-security-check-list Those places are one of the dark corners where many exploits happen. This is valid for any type of upload and any programming..
Are mysql_real_escape_string() and mysql_escape_string() sufficient for app security? http://stackoverflow.com/questions/5414731/are-mysql-real-escape-string-and-mysql-escape-string-sufficient-for-app-secu names column names and especially not LIMIT fields. LIKE exploits LIKE data where data could be which would return ALL records.. of this code when various inputs are passed php sql_exploits.php url http www.reddit.com id SQL generated SELECT url FROM.. Returns Just URLs beginning w http www.reddit.com php sql_exploits.php url id SQL generated SELECT url FROM GrabbedURLs WHERE..
Protection against XSS exploits? http://stackoverflow.com/questions/5414962/protection-against-xss-exploits against XSS exploits I'm newish to PHP but I hear XSS exploits are bad. I know what.. against XSS exploits I'm newish to PHP but I hear XSS exploits are bad. I know what they are but how do I protect my sites..
Prevent execution of uploaded php files? http://stackoverflow.com/questions/5885643/prevent-execution-of-uploaded-php-files file php_flag engine off That will also take care of other exploits such as embedding PHP code in .gif files. share improve this..
How to send an email notification when a page is visited? http://stackoverflow.com/questions/6021183/how-to-send-an-email-notification-when-a-page-is-visited came from a specific domain name or URL. This is to avoid exploits or other misc. submission hacks. Any suggestions php email..
Is it important to verify that the uploaded file is an actual image file? http://stackoverflow.com/questions/6391916/is-it-important-to-verify-that-the-uploaded-file-is-an-actual-image-file time to time again and again because of formerly unknown exploits. So part of this is always a background job. But even the on..
Escape string to use in mail() http://stackoverflow.com/questions/8071916/escape-string-to-use-in-mail what things I should be careful to avoid injections or exploits I have a pretty good idea how to do this but I'm digging into..
|