Advertisement
Demonslay335

DECRYPT-FILES.html

May 13th, 2019
609
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4.  
  5. function CopyToClipboard(containerid) {
  6. if (document.selection) {
  7. var range = document.body.createTextRange();
  8. range.moveToElementText(document.getElementById(containerid));
  9. range.select().createTextRange();
  10. document.execCommand("copy");
  11.  
  12. } else if (window.getSelection) {
  13. var range = document.createRange();
  14. range.selectNode(document.getElementById(containerid));
  15. window.getSelection().addRange(range);
  16. document.execCommand("copy");
  17. alert("Base64 copied into the clipboard!")
  18. }
  19. }
  20.  
  21. </script>
  22. <style>
  23. html{ margin:0; padding:0; width:100%; height:100%; }
  24. body { background: #000080; color: #ececec; font-family: Consolas };
  25.  
  26. .tooltip {
  27. position: relative;
  28. display: inline-block;
  29. border-bottom: 1px dotted black;
  30. }
  31.  
  32. .tooltip .tooltiptext {
  33. visibility: hidden;
  34. width: 120px;
  35. background-color: #555;
  36. color: #fff;
  37. text-align: center;
  38. border-radius: 6px;
  39. padding: 5px 0;
  40. position: absolute;
  41. z-index: 1;
  42. bottom: 125%;
  43. left: 50%;
  44. margin-left: -60px;
  45. opacity: 0;
  46. transition: opacity 0.3s;
  47. }
  48.  
  49. .tooltip .tooltiptext::after {
  50. content: "";
  51. position: absolute;
  52. top: 100%;
  53. left: 50%;
  54. margin-left: -5px;
  55. border-width: 5px;
  56. border-style: solid;
  57. border-color: #555 transparent transparent transparent;
  58. }
  59.  
  60. .tooltip:hover .tooltiptext {
  61. visibility: visible;
  62. opacity: 1;
  63. }
  64.  
  65. p#base64{
  66.  
  67. -ms-word-break: break-all;
  68. word-break: break-all;
  69.  
  70. -webkit-hyphens: auto;
  71. -moz-hyphens: auto;
  72. -ms-hyphens: auto;
  73. hyphens: auto;
  74. }
  75.  
  76. p#base64:hover{
  77. cursor: hand;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82.  
  83. <table style="position: absolute;" width="100%">
  84. <tr>
  85. <td style="width: 25%;">
  86.  
  87. <span class="left" style="font-size: 14px; font-weight: bold">CODE:
  88. <br>------
  89. <br>00000&nbsp;00000
  90. <br>00000&nbsp;00000
  91. <br>00000&nbsp;00000
  92. <br>00000&nbsp;00000
  93. <br>00000&nbsp;00000
  94. <br>00000&nbsp;00000
  95. <br>00000&nbsp;00000
  96. <br>00000&nbsp;00000
  97. </span>
  98. </td>
  99. <td style="width: 50%;">
  100. <div style="text-align: center; font-size: 20px;">
  101. <p><s>0010 SYSTEM FAILURE 0010</s></p>
  102.  
  103. <p>*********************************************************************************************************************</p>
  104. <p>Attention! Your documents, photos, databases, and other important files have been encrypted!</p>
  105. <p>*********************************************************************************************************************</p>
  106. <br>
  107.  
  108. </div>
  109.  
  110. <div style="text-align: center; font-size: 18px;">
  111. <p>The only way to decrypt your files, is to buy the private key from us.</p>
  112. <p>You can decrypt one of your files for free, as a proof that we have the method to decrypt the rest of your data.</p>
  113. <p>In order to receive the private key contact us via email: <br> <b>getmyfilesback@airmail.cc</b> </p>
  114.  
  115. <p>Remember to hurry up, as your email address may not be avaliable for very long.<br>Buying the key immediatly will guarantee that 100% of your files will be restored.</p>
  116. <p>Below you will see a big base64 blob, you will need to email us and copy this blob to us.<br>you can click on it, and it will be copied into the clipboard.</p>
  117. <p>If you have troubles copying it, just send us the file you are currently reading, as an attachment.</p>
  118. <br>
  119. <p>Base64: </p>
  120. </div><div style="text-align: center; font-size: 12px;"><p id="base64" onclick="return CopyToClipboard('base64')" class="tooltip">[redacted 0x7D2 bytes in base64]<span class="tooltiptext">Click here to copy</span></p></div></td><td style="width: 25%; text-align: right;"><span class="right" style="font-size: 14px; font-weight: bold">IMMINENT SHUTDOWN:<br>------<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00<br>00000&nbsp;00000&nbsp;0&nbsp;00</span></td></tr></table></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement