Advertisement
3l1t3Sn1P3r

BloodSec Dp #DarkSec

May 21st, 2015
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.27 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <!--
  4. Designed by W4RH4MM3R
  5. BloodSecurity International
  6. -->
  7. <html>
  8. <head>
  9. <title>BloodSec International</title>
  10. <link rel="SHORTCUT ICON" href="http://www14.0zz0.com/2015/03/06/20/654342123.png">
  11. <meta name="Author" content="T14g0 of BloodSecurity"/>
  12. <meta name="copyright" content="BloodSecurity International"/>
  13. <meta name="description" content="Greetings Admin, I'm T14g0 of BloodSecurity. Attackers may or may have created access points for themselves sometimes called backdoors. Attackers could compromise other services on the server or escalate their access and even stole confidential data from your server. Removing a compromised website's backdoors is difficult because it is not possible to be certain all backdoors have been found. Even I, myself, gained access on any files on your server but I highly assured you that no backdoors. I suggest you to patch your security as soon as possible to avoid further attacks by others."/>
  14. <meta property="og:image" content="http://i58.tinypic.com/k1rl02.jpg">
  15. <link href="http://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet" type="text/css"/>
  16. <link href="http://fonts.googleapis.com/css?family=Orbitron:400,900" rel="stylesheet" type="text/css">
  17. <link href='http://fonts.googleapis.com/css?family=Iceberg:400,700' rel='stylesheet' type='text/css'>
  18. <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur862.ani), url(http://cur.cursors-4u.net/cursors/cur-9/cur862.png), progress !important;}
  19. </style>
  20. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  21. <script type="text/javascript" src="http://goo.gl/jeD8fN"></script>
  22. <a href="http://www.cursors-4u.com/cursor/2011/11/22/night-diamond-bloody-red-link-select.html" target="_blank" title="Night Diamond Bloody Red - Link Select">
  23. <img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Night Diamond Bloody Red - Link Select" style="position:absolute; top: 0px; right: 0px;" /></a>
  24. </head>
  25. <style>
  26. body {
  27. background: url("http://i1.minus.com/iYCWFEepPuO3R.jpeg");
  28. background-color:black;
  29. background-repeat:no-repeat;
  30. background-size: 90% ;
  31. background-position:top center;
  32. color:white;
  33. font-family: Orbitron !important;
  34. }
  35. h1{
  36. font-family: Iceberg, sans-serif;
  37. font-size:90px;
  38. color:#fff;
  39. margin:0px 0px 0px;
  40. }
  41. .fot{
  42. font-family: Iceberg, sans-serif;
  43. font-size:14px;
  44. color:#fff;
  45. margin: 0px;
  46. text-shadow: 0 0 3px #000, 0px 0px 5px #000;
  47. }
  48. </style>
  49. <script type="text/javascript">
  50. TypingText = function(element, interval, cursor, finishedCallback) {
  51. if((typeof document.getElementById == "undefined") || (typeof
  52.  
  53. element.innerHTML == "undefined")) {
  54. this.running = true;
  55. return;
  56. }
  57. this.element = element;
  58. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  59.  
  60. return; });
  61. this.interval = (typeof interval == "undefined" ? 100 : interval);
  62. this.origText = this.element.innerHTML;
  63. this.unparsedOrigText = this.origText;
  64. this.cursor = (cursor ? cursor : "");
  65. this.currentText = "";
  66. this.currentChar = 0;
  67. this.element.typingText = this;
  68. if(this.element.id == "") this.element.id = "typingtext" +
  69.  
  70. TypingText.currentIndex++;
  71. TypingText.all.push(this);
  72. this.running = false;
  73. this.inTag = false;
  74. this.tagBuffer = "";
  75. this.inHTMLEntity = false;
  76. this.HTMLEntityBuffer = "";
  77. }
  78. TypingText.all = new Array();
  79. TypingText.currentIndex = 0;
  80. TypingText.runAll = function() {
  81. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  82. }
  83. TypingText.prototype.run = function() {
  84. if(this.running) return;
  85. if(typeof this.origText == "undefined") {
  86. setTimeout("document.getElementById('" + this.element.id +
  87.  
  88. "').typingText.run()", this.interval);
  89. return;
  90. }
  91. if(this.currentText == "") this.element.innerHTML = "";
  92. if(this.currentChar < this.origText.length) {
  93. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  94. this.tagBuffer = "<";
  95. this.inTag = true;
  96. this.currentChar++;
  97. this.run();
  98. return;
  99. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  100. this.tagBuffer += ">";
  101. this.inTag = false;
  102. this.currentText += this.tagBuffer;
  103. this.currentChar++;
  104. this.run();
  105. return;
  106. } else if(this.inTag) {
  107. this.tagBuffer += this.origText.charAt(this.currentChar);
  108. this.currentChar++;
  109. this.run();
  110. return;
  111. } else if(this.origText.charAt(this.currentChar) == "&" && !
  112.  
  113. this.inHTMLEntity) {
  114. this.HTMLEntityBuffer = "&";
  115. this.inHTMLEntity = true;
  116. this.currentChar++;
  117. this.run();
  118. return;
  119. } else if(this.origText.charAt(this.currentChar) == ";" &&
  120.  
  121. this.inHTMLEntity) {
  122. this.HTMLEntityBuffer += ";";
  123. this.inHTMLEntity = false;
  124. this.currentText += this.HTMLEntityBuffer;
  125. this.currentChar++;
  126. this.run();
  127. return;
  128. } else if(this.inHTMLEntity) {
  129. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  130. this.currentChar++;
  131. this.run();
  132. return;
  133. } else {
  134. this.currentText += this.origText.charAt(this.currentChar);
  135. }
  136. this.element.innerHTML = this.currentText;
  137. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  138.  
  139. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  140.  
  141. "");
  142. this.currentChar++;
  143. setTimeout("document.getElementById('" + this.element.id +
  144.  
  145. "').typingText.run()", this.interval);
  146. } else {
  147. this.currentText = "";
  148. this.currentChar = 0;
  149. this.running = false;
  150. this.finishedCallback();
  151. }
  152. }
  153. </script>
  154. <script>
  155. function disableselect(e){return false}
  156. function reEnable(){return true}
  157. //if IE4+
  158. document.onselectstart=new Function ("return false")
  159. //if NS6
  160. if (window.sidebar){
  161. document.onmousedown=disableselect
  162. document.onclick=reEnable
  163. }
  164. </script>
  165. <script>
  166. var message="";
  167. function clickIE()
  168. {
  169. if
  170. (document.all)
  171. {(message);return false;}}
  172. function clickNS(e) {
  173. if
  174. (document.layers||(document.getElementById&&!document.all))
  175. {
  176. if
  177. (e.which==2||e.which==3) {(message);return false;}}}
  178. if
  179. (document.layers)
  180. {document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
  181. else
  182. {document.onmouseup=clickNS;document.oncontextmenu =clickIE;}
  183. document.oncontextmenu=new Function("return false")
  184. </script>
  185. <script type="text/javascript">setTimeout("$('#loading').fadeOut(1000);", 8000); </script>
  186. <!-- http://p1.pichost.me/i/67/1914247.jpg // http://wallpoper.com/images/00/32/95/08/dark-red_00329508.jpg -->
  187. <style type="text/css">
  188. #loading{
  189. position:fixed;
  190. top:0;
  191. left:0;
  192. padding-top:0px;
  193. text-align:center;
  194. background-color:#000;
  195. background-image:url('http://v2media.ae/wp-content/uploads/2015/02/red-and-black-wallpaper-Ujkv.jpg');
  196. background-size:100%;
  197. background-position:top center;
  198. font-family: Orbitron !important;
  199. width:100%;
  200. height:100%;
  201. color:black;
  202. z-index:9000;
  203. overflow:hidden;
  204. }
  205. </style>
  206. <body>
  207. <body oncontextmenu="return false;" onkeydown="return false;" onmousedown="return false;">
  208. <div id="loading"><br><br><img src="http://oi62.tinypic.com/vifocj.jpg" width="30%">
  209. <h1><span style="color:black;font-size:90px;text-shadow: 0 0 3px red, 0px 0px 20px red"><b>BloodSecurity International</b></span></h1>
  210. <iframe width="0" height="0" src="http://picosong.com/Xc9a" frameborder="0" allowfullscreen></iframe>
  211. <br><br><span style="font-size:25px;"><span style="font-family:Iceberg;color:black;font-size:80px;text-shadow: 0 0 3px red, 0px 0px 20px red"><b>T14g0</b></span>
  212. </div><center>
  213. <h1><b><img src="http://oi62.tinypic.com/vifocj.jpg" width="70" height="50"><span style="color:black;font-size:90px;text-shadow: 0 0 3px white, 0px 0px 20px white">
  214. "<span style="color:black;font-size:90px;text-shadow: 0 0 3px red, 0px 0px 20px red">BloodSec</span> International<span style="color:black;font-size:90px;text-shadow: 0 0 3px red, 0px 0px 20px red">"</span></span></b><img src="http://oi62.tinypic.com/vifocj.jpg" width="70" height="50"></h1>
  215. <a href="https://www.facebook.com/OfficialBloodSecHackers.gov" target="_blank">
  216. <img src="http://oi62.tinypic.com/vifocj.jpg" title="BloodSecurity" width="20%"></a>
  217. <p id="message">
  218. <span style="color:#fff;text-shadow:black 0px 0px 3px">
  219. Greetings Admin, I'm
  220. <span style="color:red;text-shadow:#000 5px 5px 3px">T14g0</span> of
  221. <span style="color:red;text-shadow:#000 5px 5px 3px">BloodSecurity</span><br>
  222. Attackers may or may have created access points for themselves sometimes called backdoors<br>
  223. Attackers could compromise other services on the server or escalate their access and even stole confidential data from your server.<br>
  224. Removing a compromised website's backdoors is difficult because it is not possible to be certain all backdoors have been found.<br>
  225. Even I, myself, gained access on any files on your server but I highly assured you that no "backdoors"<br>
  226. I suggest you to patch your security as soon as possible to avoid further attacks by others.<br>
  227. Don't forget that I am
  228. <span style="color:red;text-shadow:#000 5px 5px 3px">T14g0</span> of
  229. <span style="color:red;text-shadow:#000 5px 5px 3px">BloodSec International</span>.<br>
  230. <br>"We are
  231. <span style="color:red;text-shadow:#000 5px 5px 3px">BloodSecurity</span>,
  232. We are legion, We do not forgive,
  233. We do not forget, Expect us."
  234. </span>
  235. </font>
  236. </div>
  237. <script type="text/javascript">
  238. new TypingText(document.getElementById("message"), 60, function(i){ var ar
  239. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  240. //Type out examples:
  241. TypingText.runAll();
  242. </script>
  243. </p>
  244. <footer id="ftr" style="position:fixed; left:0px; right:0px; bottom:0px; background:transparent); text-align:center;">
  245. <div>
  246. <ul class="cbdb-menu">
  247. </ul>
  248. <embed width="600" height="40" align="middle" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" quality="high" src="http://www.widgeo.net/effets/2.swf" flashvars="letter=SECURITY IS JUST AN ILLUSION"></br>
  249. <center><span style="color:#fff;text-shadow:black 0px 0px 3px">
  250. <font color="red">-</font>:<font color="red">-</font><img src="http://oi62.tinypic.com/vifocj.jpg" width="2%"><b>WE ARE</b><img src="http://oi62.tinypic.com/vifocj.jpg" width="2%"><font color="red">-</font>:<font color="red">-</font></span><br>
  251. <marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="75%"><font color="white"></font>
  252. <font color="red">-<font color="white">:<font color="red">-</font> D4rkj1n <font color="red">-</font>:<font color="red">-</font> Smurfie <font color="red">-</font>:<font color="red">-</font> NeoZone <font color="red">-</font>:<font color="red">-</font> 1nt0x1c4t3d <font color="red">-</font>:<font color="red">-</font> CyberGhost <font color="red">-</font>:<font color="red">-</font> m4st3rb4nd01 <font color="red">-</font>:<font color="red">-</font> Crow19 <font color="red">-</font>:<font color="red">-</font> Yamiko <font color="red">-</font>:<font color="red">-</font> 1nuT1L <font color="red">-</font>:<font color="red">-</font> NewbieXHacker <font color="red">-</font>:<font color="red">-</font> Shadowmask <font color="red">-</font>:<font color="red">-</font> c0mpl1c4t3d <font color="red">-</font>:<font color="red">-</font> 7rb_A <font color="red">-</font>:<font color="red">-</font> 2R4T$ <font color="red">-</font>:<font color="red">-</font> Gl33cher <font color="red">-</font>:<font color="red">-</font> L1nk3r <font color="red">-</font>:<font color="red">-</font> Skw4t3R <font color="red">-</font>:<font color="red">-</font> W4rH4mm3R <font color="red">-</font>:<font color="red">-</font> K4iZen <font color="red">-</font>:<font color="red">-</font> Casper <font color="red">-</font>:<font color="red">-</font> T14g0 <font color="red">-</font>:<font color="red">-</font> Scorpion Ghost <font color="red">-</font>:<font color="red">-</font></font>
  253. </center></marquee></br>
  254. <span style="font-family:Orbitron;color:white;font-size:10px;text-shadow: 0px 0px 1px red">
  255. Designed &nbsp;by&nbsp;W4RH4MM3R&nbsp;&nbsp;|&nbsp;&copy;Copyrights&nbsp; 2015&nbsp; All Rights Reserved &nbsp;|&nbsp; #BloodSecurity</font></a></footer>
  256. </div>
  257. </div>
  258. </center>
  259. </body>
  260. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement