Thanks for your response. Tried it with PHP, but trying to Validate the URL from the dashboard its giving the below error:
Did not match validator: http://subdomain.mydomain.com/scanner.php
Am i doing something wrong.? Below is the PHP code i am using to validate it through GET request.
if(strcasecmp($_SERVER['REQUEST_METHOD'], 'GET') == 0) {
$q = new Queries();
$data_array = array('status_text' => "Data returned with validator key: $validator", 'rtype' => $_SERVER['REQUEST_METHOD']);
$q->save_scan_data($data_array);
return $validator;
}
When clicking to validate from dashboard, get request coming to my server as scan log is saving at back-end.
Just have a look and let me know if you have any idea in it.
Thanks