Skip to content

ichikaway/securephp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SecurePHP is the library for security.

  • check input data(POST,GET,COOKIE,SERVER,REQUEST) and delete invalid data.
    • delete control byte char(ex. null byte)
    • delete invalid key name(ex. array('_SERVER' =>....) )

Usage:

include bootstrap.php of SecurePHP library. require_once('securephp/Config/bootstrap.php');

Composer

If you want to install with composer,

{
	"require": {
		"ichikaway/securephp": "dev-master"
	},
	"autoload": {
		"files": ["vendor/ichikaway/securephp/Libs/SecureInputFilter.php"]
	}
}

and require autoload.php and execute method.

require('vendor/autoload.php');
SecureInputFilter::clean_input_data();

About

SecurePHP is the library for security

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages