Download the PHP package funkatron/inspekt without Composer
On this page you can find all versions of the php package funkatron/inspekt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download funkatron/inspekt
More information about funkatron/inspekt
Files in funkatron/inspekt
Download funkatron/inspekt
More information about funkatron/inspekt
Files in funkatron/inspekt
Vendor funkatron
Package inspekt
Short Description A PHP library that makes it easier to write secure web applications
License BSD
Package inspekt
Short Description A PHP library that makes it easier to write secure web applications
License BSD
Please rate this library. Is it a good library?
Informations about the package inspekt
Inspekt
License
Maintained by
Ben Edmunds benedmunds.com
Created by
Ed Finkler [email protected]
Version 0.6.3 2022-02-21
What Is Inspekt?
Inspekt is a comprehensive filtering and validation library for PHP.
Driving principles behind Inspekt
- Accessing user input via the PHP superglobals is inherently dangerous, because the "default" action is to retrieve raw, potentially dangerous data
- Piecemeal, "inline" filtering/validation done at various places in an application's source code is too error-prone to be effective
- The purpose of a library or framework is to make a programmer's job easier. Verbose and/or complex solutions should be avoided unless they are the only solution
Features of Inspekt
- 'Cage' objects that encapsulate input and require the developer to use the provided filtering and validation methods to access input data
- Automatic application of filtering as defined in a configuration file
- A library of static filtering and validation methods
- A simple, clear API
- No external dependencies
Documentation
How Do I Use Inspekt?
The best idea at the moment is to look at the Examples
directory.
Quickly creating a cage for common input superglobals
Creating a cage from an arbitrary array
Calling an individual validation method
How Do I Run Tests
Install PHPUnit, cd to the root dir of Inspekt, and type
phpunit tests/
Changelog
Version 0.6.4 - 2022-02-21
- Release to force a composer update
Version 0.6.3 - 2022-02-21
- Bug fix for array_key_exists using ArrayObject instead of Array
Version 0.6.2 - 2021-03-12
- Bug fix for isInt()
Version 0.6.1 - 2016-03-03
- Bug fix for isFloat()
Version 0.6.0 - 2014-11-08
- Backwards-compatibility breaks! Be aware! Read examples!
- removed CodeIgniter helper
- removed all session cage code
- refactor for PSR2 compliance, including namespaces (BC BREAK)
- drop mysql for mysqli escaping calls
2014-04-14
- Added composer.json file
Version 0.4.1 - 2010-01-15
- Inspekt_Cage::keyExists now returns boolean again, unless second param is TRUE (then it returns the value if key exists)
- fixed a bunch of missing public/protected definitions
- renamed Inspekt_CageTest.php to CageTest.php so phpunit would load it correctly
- wrote a couple unit tests for Inspekt_Cage::testAlnum
Version 0.4.0 - 2009-11-15
- added new way to add cage accessor methods by extending
AccessorAbstract
and registering with cage object - added
Inspekt_Cage::addAccessor()
andInspekt_SuperCage::addAccessor()
- modified
Examples/extending.php
to demonstrate adding new accessor methods - added
HTMLPurifier
integration capability and new cage filtergetPurifiedHTML()
- added a library for CodeIgniter to use
Inspekt
in the standard Input object - make
Inspekt::isArrayObject()
andInspekt::isArrayOrArrayObject()
public - added
__call()
to Inspekt_Cage so we can handle user-defined accessor methods - added underscore to path portion of
isUri()
(Nick Ramsay) - added a new folder for
Integration_helpers
- commented out include for
Inspekt/Cage/Session
inCage.php
because it caused probs generating Cage test skeleton - made PHPUnit
Inspekt_Cage
test skeleton - added simple example for a wrapper that will pull from
GET
orPOST
Version 0.3.5 - 2009-07-18
- refactored and reworked some examples; added db escaping examples
- did some work to get isInt to handle 64 bit integers better (more to do)
- fixed bug in
isOneOf
where a string pattern wasn't converted properly - removed some incorrectly optional params for methods
- isRegex now correctly returns a boolean, not an Int
- added missing cage methods
getROT13
,noTagsOrSpecial
,escMySQL
,escPgSQL
,escPgSQLBytea
- added many more unit tests
Version 0.3.4 - 2009-07-18
- Added
Inspekt::getROT13()
- Added
Inspekt::escMySQL()
- Added
Inspekt::escPgSQL()
- Added
Inspekt::escPgSQLBytea()
- Now arrays are only converted to
ArrayObjects
by cages; arrays passed into static filter calls are returned as arrays. - More unit tests, and tests moved into
InspektTest.php
(removed Tests/ subdir) - cleanup in
Inspekt_SuperCage
to fixSTRICT
notices
Version 0.3.3 - 2009-07-18
- Caged properties can now be iterated over b/c we're implementing
ArrayObject
(Matt McKeon) - added a number of @assert tests for phpunit testing
- cleaned up function declarations so they would not raise STRICT notices
- leveraged Filter Extention in a couple filter methods; can be turned off with
Inspekt::useFilterExt()
- added filter method Inspekt::noTagsOrSpecial() that strips tags, encodes
'"&<>
, and all low ascii chars (< 32) - upped recursion limit to 15
Inspekt::_walkArray
will now convert a plain array into an ArrayObject (should it always? Not sure)- filter methods will now use
Inspekt::isArrayOrArrayObject()
to determine if they need to walk the array - fixed some require_once statements to use
dirname()
resolution so fewer path issues pop up (they showed up when using phpunit)
Version 0.3.2 - 2009-06-22
PHP5 now required, bug fixes for transposed params
Version 0.3.1 - 2008-02-08
Disables processing of $_SESSION
Version 0.3.0 - 2008-01-16
Final OWASP milestone release
Version 0.1 - 2007-05-19
Initial Release
All versions of inspekt with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package funkatron/inspekt contains the following files
Loading the files please wait ....