You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the server where Nginx+PHP are running is able to talk to the database server:
nc -v -z XXXXXXX 3306
Connection to XXXXXXX 3306 port [tcp/mysql] succeeded!
I don't see any other error messages displayed (in the page source code, or console), but I just end up with "B0rked". Is there additional debugging I can enable or output to get a better idea of what is broken?
Thanks! PassiveDNS continues to work great otherwise!
The text was updated successfully, but these errors were encountered:
"B0rked" comes from function sanitize($in), so the input does not match a domain, IPv4 or IPv6 ?
The pcre checks are not great, so you might want to update them etc to fit you needs.
You can try to return $qvar right after the start of the function?
Edit the php function to be:
function sanitize($in) {
$qvar = strip_tags(addslashes(getVar($in)));
return $qvar;
}
Nginx
nginx/1.11.7
with PHP-FPMPHP 7.0.8-0ubuntu0.16.04.3 (cli) ( NTS )
the server where Nginx+PHP are running is able to talk to the database server:
I don't see any other error messages displayed (in the page source code, or console), but I just end up with "B0rked". Is there additional debugging I can enable or output to get a better idea of what is broken?
Thanks! PassiveDNS continues to work great otherwise!
The text was updated successfully, but these errors were encountered: