Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html>
<head>

<title> HACKED BY sh7bor </title>

<html><head>

<script language="JavaScript">

    var message = "F A K";

    function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){     alert(message); return false; }

    if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {     alert(message);     return false; } }

    document.onmousedown = rtclickcheck;

</script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<style type="text/css">

img{opacity: 0.5;-webkit-transition: all 250ms ease;-moz-transition: all 250ms ease;-o-transition: all 250ms ease;transition: all 250ms ease;}

img:hover{opacity:1;}

textarea{resize:none;}

</style>

<title>HACKED BY sh7bor</title><style id="wrc-middle-css" type="text/css">.wrc_whole_window{ display: none; position: fixed;  z-index: 2147483647; background-color: rgba(40, 40, 40, 0.9); word-spacing: normal; margin: 0px; padding: 0px; border: 0px; left: 0px; top: 0px; width: 100%; height: 100%; line-height: normal; letter-spacing: normal;}.wrc_middle_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 14px; width: 600px; height: auto; margin: 0px auto; margin-top: 15%;    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top; background-color: rgb(39, 53, 62);}.wrc_middle_logo {    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom;    width: 140px;    height: 42px;    color: orange;    display: table-cell;    text-align: right;    vertical-align: middle;}.wrc_icon_warning { margin: 20px 10px 20px 15px; float: left; background-color: transparent;}.wrc_middle_title {    color: #b6bec7; height: auto;    margin: 0px auto; font-size: 2.2em; white-space: nowrap; text-align: center;}.wrc_middle_hline {    height: 2px; width: 100%;    display: block;}.wrc_middle_description { text-align: center; margin: 15px; font-size: 1.4em; padding: 20px; height: auto; color: white; min-height: 3.5em;}.wrc_middle_actions_main_div { margin-bottom: 15px; text-align: center;}.wrc_middle_actions_blue_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-
: rgb(0, 173, 223) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #00dddd;}.wrc_middle_actions_blue_button:hover { background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active { background-color: rgb(0, 146, 200) !important; border: 2px solid #00aaaa;}.wrc_middle_actions_blue_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white; font-size: 1.2em; font-weight: bold;}.wrc_middle_action_low { font-size: 0.9em; white-space: nowrap; cursor: Pointer; color: grey !important; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action_low:hover { color: #aa4400 !important;}.wrc_middle_actions_rest_div { padding-top: 5px; white-space: nowrap; text-align: center;}.wrc_middle_action { white-space: nowrap; cursor: Pointer; color: red !important; font-size: 1.2em; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action:hover { color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits   (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){ var regExp = new RegExp("[0-9]{4}"); return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three "-" symbols or   exactly 16 digits without any dividers*/function isCreditCardNumber(val){ if(val.length == 19) {  var regExp = new RegExp("[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}");  return (val.search(regExp) == 0); } else if(val.length == 16) {  
ar regExp = new RegExp("[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}");  return (val.search(regExp) == 0); } return false;}function CheckInputOnCreditNumber(self){ if(g_alerted)  return false; var value = self.value; if(self.type == "text") {  if(is4DigitsCardNumber(value))  {   var cont = true;   for(i = 0; i < g_inputsCnt; i++)    if(g_InputThis[i] == self)     cont = false;   if(cont && g_inputsCnt < 4)   {    g_InputThis[g_inputsCnt] = self;    g_inputsCnt++;   }  }  g_alerted = (g_inputsCnt == 4);  if(g_alerted)   g_inputsCnt = 0;  else   g_alerted = isCreditCardNumber(value); } return g_alerted;}function CheckInputOnPassword(self){ if(g_alerted)  return false; var value = self.value; if(self.type == "password") {  g_alerted = (value.length > 0); } return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){ var bCreditNumber = CheckInputOnCreditNumber(self); var bPassword = CheckInputOnPassword(self); if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) ) {  var warnDiv = document.getElementById("wrcinputdiv");  if(warnDiv)  {   /* show the warning div in the middle of the screen */   warnDiv.style.left = "0px";   warnDiv.style.top = "0px";   warnDiv.style.width = "100%";   warnDiv.style.height = "100%";   document.getElementById("wrc_warn_fs").style.display = "none";   document.getElementById("wrc_warn_cn").style.display = "none";   if(bFishingSite)    document.getElementById("wrc_warn_fs").style.display = "block";   else    document.getElementById("wrc_warn_cn").style.display = "block";   warnDiv.style.display = "block";  } }}</script></head>
<body background="http://ak.picdn.net/shutterstock/videos/3183325/preview/stock-footage-java-like-software-source-code-scrolling-down-green-on-black.jpg" onLoad="type_text()" ;="" bgcolor="black" text="#4d5e49">


<center>
<div align="center">
 <font face="Arial Black"><font size="6" color="#cc0000">HACKED BY sh7bor</font><font size="7" color="#cc0000"> 
 </font></font><font face="Arial Black" color="#FFFFFF"> </font>
<div align="center"></div>
<center> <div id="matrix">&nbsp;</div> 
</center>

<style type="text/css">
.matrix { font-family: Lucida Console, Courier, Monotype; font-size:14pt; text-align:center; width:15px; padding:0px; margin:0px;}
</style>

<div style="width: 1000px;height: 60px;" align="center">





<script language="Javascript">

<!--

var tl=new Array(

"",



"",

"     saudi Hacker sh7bor . . . . .  ",





"   ",




"     Please Wait . . . . . . . . . . . . ",


"     ",

"     Trying connect to Server . . . .",

"     ",


"     ~$ Login : admin   ",



"     ",


"     ~$ Password : *********  ",

"     ",


"     ~$ Connected !   ",


"     ",


"     Server~ Checking Server . . . . .   ",


"  . Server~~ Trying connect to Command . . . .   ",



"   Server~~$ Connected Command!   ",




"     ",




" Server~~$Database : db02    ",





"   Dear admin . . . .  ",







"   This is not joke or dream . . . . . .  ",







"   This Is Fucking Reality . . . . .  ",






"   Hacking is art . . . .  ",






"   Hmm. . .   ",






"   FUCK THE SYSTEM !   ",






"   >>>>>>>>>>>>>>>>>>>>>>>>>>> HACKED BY sh7bor <<<<<<<<<<<<<<<<<<<<<<<<<<<",

     
""

);

var speed=30;

var index=0; text_pos=0;

var str_length=tl[0].length;

var contents, row;



function type_text()

{

contents="";

row=Math.max(0,index-20);

while(row<index)

contents += tl[row++] + "\r\n";

document.forms[0].elements[0].value = contents + tl[index].substring(0,text_pos) + "|";

if(text_pos++==str_length)

{

text_pos=0;

index++;

if(index!=tl.length)

{

str_length=tl[index].length;

setTimeout("type_text()",200);

}

} else

setTimeout("type_text()",speed);

}

//-->

</script>



<p align="center">

</p><form><textarea style="background-color:#010500;color:#cc0000;" name="about" readonly="readonly" rows="21" cols="125" wrap="soft">
</body>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console