Subject: | need some details and example... |
Summary: | Package rating comment |
Messages: | 2 |
Author: | muabshir |
Date: | 2016-10-21 04:48:28 |
|
|
|
muabshir rated this package as follows:
Utility: | Good |
Consistency: | Good |
|
 muabshir - 2016-10-21 04:48:28
need some details and example overall very nice
 ali 123 - 2016-10-26 13:38:53 - In reply to message 1 from muabshir
Hi
For example :
filter number integer => input box => name is : txtInt
hacker send value :
" 52023,
<script>
document.write("Hacked!");
</script>
"
your must filter by : getNumberInt
<?php
use MohammadReza\SecurityBundle;
(new SecurityBundle\SBInput())->getNumberInt($_POST['txtInt']);
result => 52023
|