├── CHANGELOG ├── LICENSE ├── PhpSecInfo ├── PhpSecInfo.php ├── Test │ ├── CGI │ │ └── force_redirect.php │ ├── Core │ │ ├── allow_url_fopen.php │ │ ├── allow_url_include.php │ │ ├── display_errors.php │ │ ├── expose_php.php │ │ ├── file_uploads.php │ │ ├── gid.php │ │ ├── magic_quotes_gpc.php │ │ ├── memory_limit.php │ │ ├── open_basedir.php │ │ ├── post_max_size.php │ │ ├── register_globals.php │ │ ├── uid.php │ │ ├── upload_max_filesize.php │ │ └── upload_tmp_dir.php │ ├── Curl │ │ └── file_support.php │ ├── Session │ │ ├── save_path.php │ │ └── use_trans_sid.php │ ├── Test.php │ ├── Test_Cgi.php │ ├── Test_Core.php │ ├── Test_Curl.php │ └── Test_Session.php └── View │ ├── Cli.php │ ├── Cli │ └── Result.php │ ├── Csv.php │ ├── Csv │ └── Result.php │ ├── Html.php │ ├── Html │ └── Result.php │ ├── Json.php │ ├── Json │ └── Result.php │ ├── Rss.php │ └── Rss │ └── Result.php ├── README ├── examples ├── Csv.php ├── Json.php └── Rss.php └── index.php /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /PhpSecInfo/PhpSecInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/PhpSecInfo.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/CGI/force_redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/CGI/force_redirect.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/allow_url_fopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/allow_url_fopen.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/allow_url_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/allow_url_include.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/display_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/display_errors.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/expose_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/expose_php.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/file_uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/file_uploads.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/gid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/gid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/magic_quotes_gpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/magic_quotes_gpc.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/memory_limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/memory_limit.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/open_basedir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/open_basedir.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/post_max_size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/post_max_size.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/register_globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/register_globals.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/uid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/uid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/upload_max_filesize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/upload_max_filesize.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/upload_tmp_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Core/upload_tmp_dir.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Curl/file_support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Curl/file_support.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Session/save_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Session/save_path.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Session/use_trans_sid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Session/use_trans_sid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Test.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Cgi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Test_Cgi.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Test_Core.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Test_Curl.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/Test/Test_Session.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Cli.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Cli/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Cli/Result.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Csv.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Csv/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Csv/Result.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Html.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Html/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Html/Result.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkatron/phpsecinfo/HEAD/PhpSecInfo/View/Json.php -------------------------------------------------------------------------------- /PhpSecInfo/View/Json/Result.php: -------------------------------------------------------------------------------- 1 |