Created 15 Hours ago, written in PHP.
This paste will expire in 3 Weeks.
URL to give to customer service https://pastebin.support.one/view/b11f4e78
  1.                 $clicurl = "curl -A 'Mozilla/5.0 (User-Agent)' -m 10 --interface ".OPERATING_IP." $url";
  2.                 $check_result = exec("timeout 10s $clicurl");
  3.                 var_dump($check_result); /// Confirms the curl result is whats expected
  4.                
  5.                 if ($check_result === "378877jy6tjug832")
  6.                         {
  7.                         $online++; /// THIS line does NOT RUN!
  8.                         echo "Success!?\n"; // THIS line DOES RUN!!!
  9.                         }
  10.                 else
  11.                         {
  12.                         echo "\$check_result is equal to [$check_result]\n"; // THIS line DOES NOT RUN!
  13.                         fwrite($key_fail_log,PHP_EOL.date($date_format)." - Secret Code Returned: [{$check_result}]"); // THIS line DOES run but now $check_result is an empty string
  14.                         }
  15.