Advertisement
AZZATSSINS_CYBERSERK

Sc Pepes 2

May 7th, 2017
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 10.06 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta content='DEFACED BY AZZATSSINS CYBERSERKERS' name='description'/>
  4. <meta content='Hacked By AZZATSSINS, Tested By AZZATSSINS, AZZATSSINS Was Here, Owned By AZZATSSINS, AZZATSSINS Come Back, Security By AZZATSSINS, Killed By AZZATSSINS, Anon AZZATSSINS, Hacker AZZATSSINS, Haxor AZZATSSINS, AZZATSSINS Fucked You, cracked by AZZATSSINS, Fucked by AZZATSSINS, Deface By AZZATSSINS' name='keywords'/>
  5. <meta content='index,follow' name='robots'/>
  6. <meta content='text/html;charset=UTF-8' http-equiv='Content-Type'/>
  7. <meta content='website' name='generator'/>
  8. <meta content='general' name='rating'/>
  9. <title>
  10. Go a head and try to stop me...!!!</title><link href='http://azzat.wap.mu/favicon.ico' rel='shortcut icon' alt='icon'>
  11. <meta name='author' content='AZZATSSINS'>
  12. </head>
  13. <center><body style="background-image:url(http://azzat.wap.mu/files/1049320/matrix-azzatssins.gif" bgcolor="black">
  14.  
  15. <font color = "green">
  16. <embed src="https://www.youtube.com/v/xshEZzpS4CQ&autoplay=1" type="application/x-shockwave-flash"wmode="transparent" width="1" height="1">
  17. <script language="JavaScript">
  18.  
  19. TypingText = function(element, interval, cursor, finishedCallback) {
  20.  
  21.   if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  22.  
  23.     this.running = true;    // Never run.
  24.  
  25.     return;
  26.  
  27.   }
  28.  
  29.   this.element = element;
  30.  
  31.   this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  32.  
  33.   this.interval = (typeof interval == "undefined" ? 20 : interval);
  34.  
  35.   this.origText = this.element.innerHTML;
  36.  
  37.   this.unparsedOrigText = this.origText;
  38.  
  39.   this.cursor = (cursor ? cursor : "");
  40.  
  41.   this.currentText = "";
  42.  
  43.   this.currentChar = 0;
  44.  
  45.   this.element.typingText = this;
  46.  
  47.   if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  48.  
  49.   TypingText.all.push(this);
  50.  
  51.   this.running = false;
  52.  
  53.   this.inTag = false;
  54.  
  55.   this.tagBuffer = "";
  56.  
  57.   this.inHTMLEntity = false;
  58.  
  59.   this.HTMLEntityBuffer = "";
  60.  
  61. }
  62.  
  63. TypingText.all = new Array();
  64.  
  65. TypingText.currentIndex = 0;
  66.  
  67. TypingText.runAll = function() {
  68.  
  69.   for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  70.  
  71. }
  72.  
  73. TypingText.prototype.run = function() {
  74.  
  75.  if(this.running) return;
  76.  
  77.  if(typeof this.origText == "undefined") {
  78.  
  79.     setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);   // We haven't finished loading yet.  Have patience.
  80.    return;
  81.  }
  82.  if(this.currentText == "") this.element.innerHTML = "";
  83. //  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.
  84.  
  85.   if(this.currentChar < this.origText.length) {
  86.  
  87.    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  88.  
  89.      this.tagBuffer = "<";
  90.  
  91.      this.inTag = true;
  92.  
  93.      this.currentChar++;
  94.  
  95.      this.run();
  96.  
  97.      return;
  98.  
  99.    } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  100.  
  101.      this.tagBuffer += ">";
  102.  
  103.       this.inTag = false;
  104.  
  105.       this.currentText += this.tagBuffer;
  106.  
  107.       this.currentChar++;
  108.  
  109.       this.run();
  110.  
  111.       return;
  112.  
  113.     } else if(this.inTag) {
  114.  
  115.       this.tagBuffer += this.origText.charAt(this.currentChar);
  116.  
  117.       this.currentChar++;
  118.  
  119.       this.run();
  120.  
  121.       return;
  122.  
  123.     } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  124.  
  125.      this.HTMLEntityBuffer = "&";
  126.  
  127.       this.inHTMLEntity = true;
  128.  
  129.       this.currentChar++;
  130.  
  131.       this.run();
  132.  
  133.       return;
  134.  
  135.     } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  136.  
  137.      this.HTMLEntityBuffer += ";";
  138.  
  139.       this.inHTMLEntity = false;
  140.  
  141.       this.currentText += this.HTMLEntityBuffer;
  142.  
  143.       this.currentChar++;
  144.  
  145.       this.run();
  146.  
  147.       return;
  148.  
  149.     } else if(this.inHTMLEntity) {
  150.  
  151.       this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  152.  
  153.       this.currentChar++;
  154.  
  155.       this.run();
  156.  
  157.       return;
  158.  
  159.     } else {
  160.  
  161.       this.currentText += this.origText.charAt(this.currentChar);
  162.  
  163.     }
  164.  
  165.     this.element.innerHTML = this.currentText;
  166.  
  167.     this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  168.  
  169.    this.currentChar++;
  170.  
  171.    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  172.  
  173.  } else {
  174.  
  175.     this.currentText = "";
  176.  
  177.     this.currentChar = 0;
  178.  
  179.        this.running = false;
  180.  
  181.        this.finishedCallback();
  182.  
  183.  }
  184.  
  185. }
  186. </script>
  187. <style>A:hover {
  188.  
  189.      TEXT-DECORATION: overline
  190.  
  191. }
  192. TEXTAREA {
  193.     background-color: transparent;
  194. border: 0; COLOR: #00ff00;  
  195. }  
  196.  
  197. </style><center><br><br><pre face="Impact" style="color:red;font-size:30px" id = "example2">
  198. <font color=black>───────────</font></font>▄██████▄<font color=black>──────────</font>
  199. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  200. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  201. <font color=black>───────────</font>█─▄▄▄▄─█<font color=black>──────────</font>
  202. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  203. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  204. <font color=black>───────────</font>█─▄▄▄▄─█<font color=black>──────────</font>
  205. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  206. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  207. <font color=black>───────────</font>█─▄▄▄▄─█<font color=black>──────────</font>
  208. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  209. <font color=black>───────────</font>█──────█<font color=black>──────────</font>
  210. <font color=black>───────────</font>█─▄▄▄▄─█▄▄▄▄<font color=black>────── </font>
  211. <font color=black>────</font> ▄███████──────█▀█─▀██▄<font color=black>─── </font>
  212. ▄█████─────█──────█──█─▀██▄<font color=black>──</font>
  213. █────█─────█──────█───█──██▄<font color=black></font>
  214. █────█─────█──────█────█──██▄
  215. █────█─────█──────█─────█──██
  216. █────█─────█──────█─────█─██<font color=black></font>  
  217. █────█─────█──────█─────███<font color=black>▀─ </font>
  218. █────█─────█──────█─────██<font color=black>▀── </font>
  219. █───────────────────────██<font color=black>─── </font>
  220. ███▄────────────────────█<font color=black>▀─── </font>
  221. <font color=black>─▀</font> ███▄────────────────▄██<font color=black>──── </font>
  222. <font color=black>───▀</font> ████████████████████<font color=black>▀──── </font>
  223. <font color=black>─────▀</font> ████████████████<font color=black>▀────── </font>
  224. <font color=black>────────▀</font> ███████████<font color=black>▀──────── </font>
  225. </pre><br><br><br><br><br><br><br><br><br><br><br><br><pre face="Impact" style="color:black;text-shadow:4px 4px 6px maroon;font-size:15px" id = "example2">
  226. <i><b>[!] HACKED , CRACKED , DEFACED , STAMPED , & FUCKED BY AZZATSSINS CYBERSERKERS [!]</b></i></pre>
  227. </center></form>
  228.  
  229. <script type="text/javascript">
  230. new TypingText(document.getElementById("example2"), 50, function(i){
  231.  
  232. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  233.  
  234. ar.length]; });
  235. TypingText.runAll();
  236.  
  237. </script>
  238.  
  239. <script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "cfs2.uzone.id/2fn7a2/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582CL4NjpNgssKR6iyzjvfb1vmf4ek6ZB1u80VS6SuAjiOk%2bAsfydCF1L7Phe7okqa6JhtvMAz3qU%2f35PWs8Nvh6YG%2bU5F2%2fl2di4Zz1CtdMYOTSd6sjB5W0uKMXCBXD8YYXMiFBDUxQFJgCY6KH95%2bHjGGkLeaaKywAkjB95OcT3b%2f2faOP1Iqe0vQwDyLI95JJ3R6x8PZ%2bR%2fyUnRaePB4Lb1cR2Zz4Tr0bA2YOgw6hFZwSCHE8oPNFqfcR3%2fBJj7nbiL4TJYcsECPLVCUNVhUD4DnKgWqneurzzIk5iZAOgGEIUHmxi5EPBmqBebfyleZP4v35sFXweQPTLoj0TH6BhKMhKN%2bhoERIsffk4vUvsIOsRJh49lrRaPN45EsD9LtKr1gDmC7B6jrVAD9ISfJA2WC0AQd3fCPiVHdl493XUkSM1ep1E0Ey3BzDxi2whRGj72LjeMJBt2COYoIt%2fUp%2bNkHSTSRCgxRarYbr9A0WZnYN%2bdQ0frejU%3d" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
  240.  
  241. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement