Darknet Lantern
CSV LINES: " . $lines_uv . " " . $lines_v . "

"; ?>

Sensitive Search:


Sensitive ON " . $sensitive . "

"; $sensitive=1; }else{ $sensitive=0; //echo "

Sensitive OFF " . $sensitive . "

"; } $query = $_GET['query']; // gets value sent over search form if(strlen($query) >= $min_length and strlen($query) <= $max_length){ // if query length is more or equal minimum length then $query = htmlspecialchars($query); // removes the risky characters // there needs to be regex checking, only allow [a-zA-Z0-9.:/] $query=preg_replace("/[^a-zA-Z0-9:\/.\ -]/", "", $query); echo "

Search results for " . $query . " :

"; echo nl2br("\n"); echo nl2br("\n"); //echo $verifiedcsvpath; //echo nl2br("\n"); //echo $unverifiedcsvpath; if ($lines_v >= 2){ echo '

Verified Links


'; echo nl2br("\n"); DisplayCSVNEW($verifiedcsvpath,$query,$sensitive); }else{ echo "

Your verified.csv file is empty, check the documentation to know how to add links into it.

"; } if ($lines_uv >= 2){ echo '


Unverified Links


'; echo nl2br("\n"); DisplayCSVNEW($unverifiedcsvpath,$query,$sensitive); }else{ echo "

Your unverified.csv file is empty, please check the documentation to know how to add links into it.

"; } // display the results of verified.csv // only display the results of verified.csv that matches with the search term // display the results of unverified.csv // only display the results of unverified.csv that matches with the search term } else{ // if query length is less than minimum or more than maximum echo '

Search query must be between '.$min_length . " and ".$max_length . " characters.

"; // TODO list the available categories } ?>