Hi, this would be great if you place @ the very first line of your script. if(isset($_GET)){ foreach ($_GET as $key => $value) { $_GET[$key] = cleanInput(strip_tags(rawurldecode(rawurldecode($value)))); } } if(isset($_POST)){ foreach ($_POST as $key => $value) { $_POST[$key] = cleanInput(strip_tags(rawurldecode(rawurldecode($value)))); } } function cleanInput($input) { $search = array( ‘@@si’, ‘@@si’, ‘@@siU’, ‘@@’ ); $output = […]
Nmap Scan ( Port Scanning )
nmap is aport scanning tool that is useful to detect which port is up and its usage. #$ nmap -O -p1-65535 thedomain Explaination: -O: Enable OS detection -p : Only scan specified ports