Recommend this page to a friend! |
Classes of Marco Cesarato | PHP AIO Security Class | README.md | Download |
|
DownloadPHP AIO Security ClassVersion: 0.2.8.183 beta Github: https://github.com/marcocesarato/PHP-AIO-Security-Class Author: Marco Cesarato _IF YOU USE ON YOUR PROJECT SOME OF THESE METHODS PLEASE TO CREDIT ME :) THANK YOU!_ DescriptionThis is a security class in php with some useful and automatic static methods. The objective of this class is offer an automatic system of protection for developer's projects and simplify some security operations as the check of CSRF or XSS all in a simple class. In fact you could just call the main method to have better security yet without too much complicated operations. Antimalware ScannerLink Repository: https://github.com/marcocesarato/PHP-Antimalware-Scanner InstructionsComposer
Implementation1.1 - Include the class
or
1.2 - Session store on database (Optional) (PDO/CPDO instances only)
2.0 - Just create a new object to be more at safe (the constructor/putInSafety filter \$_REQUEST and \$_GET globals, add some useful headers for security, check if there is an Hijacking and check the URL Request)
or just call
NOTES: <sup>1</sup> You can also call only the methods that you need instead this method <sup>2</sup> Constructor and putInSafety are thesamething <sup>3</sup> These methods callsession_startthendon'tuse it before/after <sup>4</sup> global$_POSTis not filtered. If you dont enable the cleanGlobals feature on settings All the uncleaned data can be recovered calling the following globals:
3 - Prevent XSS/SQL Injection on your variables with:
or
__PS:__ THIS COULD COMPROMISE DATA IF YOU SEND HTML WITH SCRIPT TAGS _send with htmlentities could be a solution if you want inline js and clean globals at the same time_ 4 - Use output method to filter your output (it also check for CSRF)
Enjoy! OptionsThese are the options availables: __PS:__ You can change the configuration as following for each parameters or simply editing the var directly on the class file:
Configs| Option | Description | Default | | --- | --- | --- | | $basedir | Project basedir where is located .htaccess | \_\_DIR\_\_ | | $salt | Salt for crypt | "_SALT" | | $session_name | Session cookie name | "XSESSID" | | $session_lifetime | Session lifetime | "288000" (8 hours) | | $session_regenerate_id | Regenerate session id | FALSE | | $session_database | Store sessions on database | FALSE | | $csrf_session | CSRF session token name | "_CSRFTOKEN" | | $csrf_formtoken | CSRF form token input name | "_FORMTOKEN" | | $headers_cache | Enable header cache | TRUE | | $cookies_encrypted | Encrypt cookies \[PHP 5.3+\] | FALSE | | $cookies_enc_prefix | Cookies encrypted prefix | "SEC_" | | $headers_cache_days | Cache on NO HTML response (set 0 to disable) | 30 | | $escape_string | If you use PDO I recommend to set this to false | TRUE | | $clean_post_xss | Remove XSS on post global | TRUE | | $compress_output | Compress output | TRUE | | $force_https | Force HTTPS (recommended if you have https) | FALSE | | $hide_errors | Hide php errors (useful for hide vulnerabilities) | TRUE | | $database | PDO instance for store sessions if enabled before | null | Autostart| Option | Description | Default | | --- | --- | --- | | $auto_session_manager | Run session at start | TRUE | | $auto_cookies_decrypt | Auto encrypt cookies \[PHP 5.3+\] | FALSE | | $auto_block_tor | If you want block TOR clients | TRUE | | $auto_csrf | If you want enable CSRF (need use ::output method) | FALSE | | $auto_clean_global | Global clean at start | FALSE | | $auto_antidos | Block the client ip when there are too many requests | TRUE | Error template
Methods available:Generic Methods| Method | Params | Return | Description |
| ------------------------- | ------------------ | ------ | ------------------------------------------------------------ |
| setDatabase | $conn | Void | Set PDO datbase instance for store sessions (only if enabled) |
| __construct / putInSafety | $isAPI = false | Void | Call some methods:<br /><br />headers Utility Methods| Method | Params | Return | Description | | ------------------------ | ------------------------------------------------------------ | ------- | ------------------------------------------------------------ | | encrypt | \$string, \$key = null | String | Encrypt strings | | decrypt | \$string, \$key = null | String | Decrypt strings | | generateGUID | - | String | Generate a GUID | | generatePassword | \$length = 8, \$available_sets = 'luns'<br /><br />(l = lowercase, u = uppercase, n = numbers, s = special chars) | String | Generate a completly random and strong password | | generateFriendlyPassword | \$string, \$strong_lv = 1 | String | Generate a user friendly random password. Strong level go from 0 to 2.<br /><br />EXAMPLE: <br />Marco Cesarato 1996 <br />Ce$Ar4t0_m4RCo_1996 | | passwordHash | \$password, \$cost = 10 (4-30) | String | Hash the passwords | | passwordVerify | \$password, \$hash | Boolean | Verify if password hash (returned by passwordHash) match | | passwordStrength | \$password | Integer | Return password strength score from 0 to 10 (under 6 is a bad score) | | getCookie | $name | String | Get decrypted cookie | | setCookie | \$name, \$value, \$expires = 2592000, \$path = "/", \$domain = null, \$secure = false, \$httponly = true | Boolean | Set encrypted cookie | | checkHTTPS | - | Boolean | Check if site is running over https | | unsetCookie | $name | String | Unset a cookie | | clientIP | - | String | Get real client IP address | | clientIPs | - | Array | Get all client IP addresses | | clientIsTor | - | Boolean | Check if client use TOR | | secureJSONP | \$json, \$callback | String | Prevent malicious callbacks from being used in JSONP requests. | | secureDownload | \$filename, $name = null | Void | Secure headers for download request | | isInfectedFavicon | \$file | Boolean | Return if is an infected favicon file | | isInfectedFile | \$file | Boolean | Return if is an infected php file | | secureUpload | \$file, \$destination | Boolean | File upload with scan | | environmentCheck | - | Array | Check environment configuration and return the current and the recommended php.ini configuration | Cleaning Methods| Method | Params | Return | Description |
| ---------------- | ---------------------------------------------------- | ------ | ------------------------------------------------------------ |
| clean | \$data, \$html = true, \$quotes = true, \$xss = true | Mixed | Clean value form XSS, SQL Injection etc? recursively |
| cleanGlobals | - | Void | Clean all input global vars (\$\__REQUEST,\$\__POST,\$\__GET,_\$\_COOKIE)<br />THIS COULD COMPROMISE SOME DATA |
| restoreGlobals | - | Void | Restore globals to uncleaned/unsafe globals |
| debugGlobals | - | Array | Return an array with the safe, unsafe and the current globals, this is userful for comparing |
| escapeXSS | $data | Mixed | Clean value from XSS recursively |
| escapeSQL | $data | Mixed | Clean from SQL Injection (similar at mysql_real_escape) recursively |
| escapeAttr | $data | Mixed | Escape for HTML attribute values<br /> Output Methods| Method | Params | Return | Description | | -------------- | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ | | output | \$buffer, \$type = (html\|css\|js\|json\|xml\|csv\|txt), $cache_days = null, \$compress = true | String | Put in safety HTML if is HTML, compress HTML if is HTML, check for CSRF and add cache headers if isn't HTML (usually used with ob_start) | | secureHTML | $buffer | String | Put in safety some html elements, block old browsers console scripts executions on output buffer and add automatically the CSRF token | | captcha | $base64 = false | Void | Print captcha image and die or if base64 return the image in base64. | | captchaVerify | \$input_name = 'captcha' | Void | Validate captcha | | captchaPrint | \$class = '', \$input_name = 'captcha' | String | Return the captcha input field and the image in html | | captchaCode | - | String | Get captcha code | | compressOutput | $buffer | String | Compression generic | | compressHTML | $html | String | Compression of HTML | | compressJS | $js | String | Compression of JS | | compressCSS | $css | String | Compression of CSS | | error | \$code = 404, \$message = "Not found!", \$title = 'Error' | Void | Error <br />(use \$error_template and \$error_callback) | Screenshots |