Advertisement
Ribang

ghost

Jul 3rd, 2017
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.34 KB | None | 0 0
  1.  
  2. <html>
  3. <title>404 Not Found : ./R3DGH0ST7</title>
  4. <link rel="shortcut icon" type="image/x-icon" href="http://www.fancyicons.com/free-icons/116/hooligans/png/48/ball_48.png">
  5.  
  6. <style>
  7. body{
  8. text-align: center;
  9. font-size: 12px;
  10. font-family: verdana;
  11. 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;
  12. -webkit-background-size: cover;
  13. -moz-background-size: cover;
  14. -o-background-size: cover;
  15. background-size: cover;
  16. background-attachment:fixed;
  17. }
  18. h1 {
  19. padding: 10px 15px;
  20. margin: 0px;
  21. font-size: 14px;
  22. background-color: silver;
  23. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  24. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  25. color: #FFF;
  26. //-webkit-border-radius:8px 8px 0px 0px;
  27. //-moz-border-radius: 8px 8px 0px 0px;
  28. border-radius: 8px 8px 0px 0px;
  29. text-shadow:1px 1px 2px #333333;
  30. opacity: 0.5;
  31. }
  32. table {
  33. width: 565px;
  34. }
  35. table tr td{
  36. font-family: verdana;
  37. font-size: 11px;
  38. padding: 10px 5px;
  39. border-bottom: solid 1px #CCC;
  40.  
  41. }
  42. #wrapper{
  43. width: 800px;
  44. margin: 10px auto;
  45. text-align: left;
  46. background: url('../../1.bp.blogspot.com/-xdXyTCPgotU/UO8FbtXIm0I/AAAAAAAABVM/2r5gUEZZA3g/s1600/dra2.png') no-repeat center center fixed;
  47. }
  48. #console{
  49. height: 450px;
  50. overflow: auto;
  51. background-color: #000;
  52. padding: 15px;
  53. font-family: monospace;
  54. font-size: 12px;
  55. color: #FFF;
  56. }
  57. .content{
  58. padding: 15px;
  59. }
  60. #root{
  61. display: none;
  62. }
  63. #formnya{
  64. display: none;
  65. }
  66. #commander{
  67. border: solid 1px #CCC;
  68. padding: 5px 10px;
  69. -webkit-border-radius: 2px;
  70. -moz-border-radius: 2px;
  71. border-radius: 2px;
  72. margin: 5px;
  73. width: 590px;
  74. height: 30px;
  75. display: none;
  76. }
  77. .box{
  78. -moz-box-shadow: 1px 1px 8px #666;
  79. -webkit-box-shadow: 1px 1px 8px #666;
  80. box-shadow: 1px 1px 8px #40D5D2;
  81. border: solid 1px black;
  82. -webkit-border-radius: 8px 8px 0px 0px;
  83. -moz-border-radius: 8px 8px 0px 0px;
  84. border-radius: 8px 8px 0px 0px;
  85. margin: 15px 0px;
  86. background-color: #F5F5F5;
  87. opacity: 0.8;
  88. }
  89. #help{
  90. width: 300px;
  91. float: right;
  92. }
  93. .prefix{
  94. color: #0077E7;
  95. }
  96. .keyword{
  97. color: #9eff63;
  98. }
  99. .error{
  100. color: #FF0000;
  101. }
  102. .spacer{
  103. clear: both;
  104. display: block;
  105. }
  106. form {
  107. display: inline-block; //Or display: inline;
  108. }
  109. input[type=password] {
  110. width: 250px;
  111. height: 25px;
  112. color: white;
  113. background: transparent;
  114. border: 1px dotted transparent;
  115. padding: 5px;
  116. margin-left: 20px;
  117. }
  118. </style>
  119. <script>
  120. function showmz(){
  121. document.getElementById("root").style.display='block';
  122. }
  123. </script>
  124. <script type="text/javascript">
  125. // -----===== HACKED BY : <font color="red">./RedGh0st7</font>=====-----
  126. TypingText = function(element, interval, cursor, finishedCallback) {
  127. if((typeof document.getElementById == "undefined") || (typeof
  128.  
  129. element.innerHTML == "undefined")) {
  130. this.running = true;
  131. return;
  132. }
  133. this.element = element;
  134. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  135.  
  136. return; });
  137. this.interval = (typeof interval == "undefined" ? 100 : interval);
  138. this.origText = this.element.innerHTML;
  139. this.unparsedOrigText = this.origText;
  140. this.cursor = (cursor ? cursor : "");
  141. this.currentText = "";
  142. this.currentChar = 0;
  143. this.element.typingText = this;
  144. if(this.element.id == "") this.element.id = "typingtext" +
  145.  
  146. TypingText.currentIndex++;
  147. TypingText.all.push(this);
  148. this.running = false;
  149. this.inTag = false;
  150. this.tagBuffer = "";
  151. this.inHTMLEntity = false;
  152. this.HTMLEntityBuffer = "";
  153. }
  154. TypingText.all = new Array();
  155. TypingText.currentIndex = 0;
  156. TypingText.runAll = function() {
  157. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  158. }
  159. TypingText.prototype.run = function() {
  160. if(this.running) return;
  161. if(typeof this.origText == "undefined") {
  162. setTimeout("document.getElementById('" + this.element.id +
  163.  
  164. "').typingText.run()", this.interval);
  165. return;
  166. }
  167. if(this.currentText == "") this.element.innerHTML = "";
  168. if(this.currentChar < this.origText.length) {
  169. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  170. this.tagBuffer = "<";
  171. this.inTag = true;
  172. this.currentChar++;
  173. this.run();
  174. return;
  175. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  176. this.tagBuffer += ">";
  177. this.inTag = false;
  178. this.currentText += this.tagBuffer;
  179. this.currentChar++;
  180. this.run();
  181. return;
  182. } else if(this.inTag) {
  183. this.tagBuffer += this.origText.charAt(this.currentChar);
  184. this.currentChar++;
  185. this.run();
  186. return;
  187. } else if(this.origText.charAt(this.currentChar) == "&" && !
  188.  
  189. this.inHTMLEntity) {
  190. this.HTMLEntityBuffer = "&";
  191. this.inHTMLEntity = true;
  192. this.currentChar++;
  193. this.run();
  194. return;
  195. } else if(this.origText.charAt(this.currentChar) == ";" &&
  196.  
  197. this.inHTMLEntity) {
  198. this.HTMLEntityBuffer += ";";
  199. this.inHTMLEntity = false;
  200. this.currentText += this.HTMLEntityBuffer;
  201. this.currentChar++;
  202. this.run();
  203. return;
  204. } else if(this.inHTMLEntity) {
  205. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  206. this.currentChar++;
  207. this.run();
  208. return;
  209. } else {
  210. this.currentText += this.origText.charAt(this.currentChar);
  211. }
  212. this.element.innerHTML = this.currentText;
  213. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  214.  
  215. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  216.  
  217. "");
  218. this.currentChar++;
  219. setTimeout("document.getElementById('" + this.element.id +
  220.  
  221. "').typingText.run()", this.interval);
  222. } else {
  223. this.currentText = "";
  224. this.currentChar = 0;
  225. this.running = false;
  226. this.finishedCallback();
  227. document.getElementById("formnya").style.display='block';
  228. }
  229.  
  230. }
  231. </script>
  232. </head>
  233. <body>
  234. <div id="wrapper">
  235. <div class="box">
  236. <h1>./R3DGH0ST7 Priv Shell </h1>
  237. <div id="console"><span class="prefix">
  238. <p id="message">
  239. <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> Welcome To my Shell</font><br>
  240. <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> ./R3DGH0ST7 priv Shell</font><br>
  241. <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> kutjeng is cat</font><br>
  242. <font color=" ff00c1f4 ">[+] Message :</font></font>
  243. <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>
  244. <font color=" ff00c1f4 ">[sudo]./R3DGH0ST7 :~$</font><font color="# dc00ffff "> sudo su</font>
  245. <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">
  246. <font color=" ff00c1f4 ">root@./R3DGH0ST7 :</font><font color="# dc00ffff "> [+] Security Passed [+]</font><br>
  247. <font color=" ff00c1f4 ">root@./R3DGH0ST7 :~#</font><font color="# dc00ffff "> chmod +x localhost.sh</font><br>
  248. <font color=" ff00c1f4 ">root@./R3DGH0ST7 :~#</font><font color="# dc00ffff "> ./localhost.sh </font><br>
  249. <font color=" ff00c1f4 ">[+] Message :</font><font color="# dc00ffff "> Please Wait...</font><br>
  250. </p>
  251. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
  252. <script type="text/javascript">
  253. new TypingText(document.getElementById("message"), 25, function(i){ var ar
  254. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  255. //Type out examples:
  256. TypingText.runAll();
  257. </script><script>
  258. function rootmz(){
  259. new TypingText(document.getElementById("root"), 25, function(i){ var ar
  260. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  261. //Type out examples:
  262. TypingText.runAll();
  263. }
  264. </script></div>
  265. <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