Skip to content
Permalink
Browse files Browse the repository at this point in the history
Security update
fixed a possible SQL injection
  • Loading branch information
roxlukas committed Dec 31, 2018
1 parent f225174 commit c25ff7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwwroot/ccpwgl/proxy.php
Expand Up @@ -68,7 +68,7 @@ function insert_log($ip,$fetch,$ok,$ref,$cacheInUse,$url,$http_code,$size) {
}

//get fetch var
$addr=$_GET['fetch'];
$addr = secureGETstr('fetch');

//prepare logging vars
if ($LM_CCPWGL_PROXYAUDIT) {
Expand Down

0 comments on commit c25ff7f

Please sign in to comment.