by axew3 » Sat Sep 05, 2020 3:19 pm
I've find out "interesting" these readings today:
http://www.madirish.net/401
https://www.php.net/manual/en/security ... lbytes.php
https://resources.infosecinstitute.com/ ... ction-php/
Code: Select all
$input = str_replace(chr(0), '', $input); // remember ever to remove null bytes from input
I've find out "interesting" these readings today:
[url]
http://www.madirish.net/401[/url]
[url]
https://www.php.net/manual/en/security.filesystem.nullbytes.php[/url]
[url]https://resources.infosecinstitute.com/null-byte-injection-php/[/url]
[code]$input = str_replace(chr(0), '', $input); // remember ever to remove null bytes from input[/code]