Advertisement
Guest User

INDONESIAN ERROR SYSTEM

a guest
Feb 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.40 KB | None | 0 0
  1.  
  2. <!DOCTYPE HTML>
  3. <html>
  4. <head>
  5. <title>T E R T U S B O L</title>
  6. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  7. <script type="text/javascript" src="http://yourjavascript.com/8143143228/flower.js"></script>
  8. <style type="text/css">
  9. body{
  10. background-image:url('');
  11. background-position:top center;
  12. background-color:black;
  13. margin:0px;
  14. background-repeat:no-repeat;
  15. font-family:'Orbitron', sans-serif;
  16. color:#FFF;
  17. width:100%;
  18. height:100%;
  19. }
  20. pre{
  21. font-family:'Orbitron',sans-serif;
  22. }
  23. #plate{
  24. position: absolute;!important;
  25. top:0!important;
  26. left:0;
  27. right:0;
  28. width:100%;
  29. height:100%;
  30. z-index:-1!important;
  31. margin:0;
  32. padding:0;
  33. position:fixed;
  34. background-color:rgba(0, 0, 0, 0.18);
  35. }
  36. #xx{
  37. font-size:55px;
  38. text-shadow:0 0 5px #2C7DCD, 0 0 10px #298A9B, 0 0 15px #585E5E, 0 0 20px #4A4D4D, 0 0 30px #313232, 0 0 40px #333535, 0 0 55px #353736, 0 0 75px #2D4140;
  39. }
  40. .tae {
  41. -webkit-animation-name: blinker;
  42. -webkit-animation-duration: 1s;
  43. -webkit-animation-timing-function: linear;
  44. -webkit-animation-iteration-count: infinite;
  45.  
  46. -moz-animation-name: blinker;
  47. -moz-animation-duration: 1s;
  48. -moz-animation-timing-function: linear;
  49. -moz-animation-iteration-count: infinite;
  50.  
  51. animation-name: blinker;
  52. animation-duration: 1s;
  53. animation-timing-function: linear;
  54. animation-iteration-count: infinite;
  55. }
  56. @-moz-keyframes blinker {
  57. 0% { opacity: 1.0; }
  58. 50% { opacity: 0.0; }
  59. 100% { opacity: 1.0; }
  60. }
  61.  
  62. @-webkit-keyframes blinker {
  63. 0% { opacity: 1.0; }
  64. 50% { opacity: 0.0; }
  65. 100% { opacity: 1.0; }
  66. }
  67.  
  68. @keyframes blinker {
  69. 0% { opacity: 1.0; }
  70. 50% { opacity: 0.0; }
  71. 100% { opacity: 1.0; }
  72. }
  73. *.unselectable {
  74. -moz-user-select: -moz-none;
  75. -khtml-user-select: none;
  76. -webkit-user-select: none;
  77. -ms-user-select: none;
  78. user-select: none;
  79. }
  80.  
  81.  
  82. .blink {
  83. animation: blink-animation 1s steps(5, start) infinite;
  84. -webkit-animation: blink-animation 1s steps(5, start) infinite;
  85. }
  86. @keyframes blink-animation {
  87. to {
  88. visibility: hidden;
  89. }
  90. }
  91. @-webkit-keyframes blink-animation {
  92. to {
  93. visibility: hidden;
  94. }
  95. }
  96. </style>
  97. </head>
  98. <script type="text/javascript">
  99. (function(){
  100. var global = this;
  101. var globalName = 'starField';
  102. var numberOfStars = 100;
  103.  
  104. /* total depth of space ;)*/
  105. var depthDimentsion = 2000;
  106.  
  107. /* % of space between browser and viewer.*/
  108. var viewingDepth = 0.0001;
  109.  
  110. /* % of space moved in one step.*/
  111. var forwardVelocity = 0.3;
  112. var d = depthDimentsion*(viewingDepth/100);
  113. var planeDepth = depthDimentsion - d;
  114. var fv = planeDepth*(forwardVelocity/100);
  115. var zMultiplier = (depthDimentsion)/d;
  116. var starObjs, starHTML;
  117. var posMod, sy, sx, windowCenterY, windowCenterX;
  118. var scaleXAdjust, scaleYAdjust;
  119. if((document.layers)&&(this.Layer)){
  120. starHTML = [
  121. '<layer id="stars','',
  122. '" left="0" top="0" width="1" height="1"',
  123. ' bgColor="#FFFFFF"></layer>'];
  124. }else{
  125. starHTML = [
  126. '<div id="stars','',
  127. '" style="position:absolute;width:1px;overflow:',
  128. 'hidden;height:1px;background-color:#FFF;',
  129. 'font-size:1px"></div>'];
  130. }
  131. function compatModeTest(obj){
  132. if((document.compatMode)&&
  133. (document.compatMode.indexOf('CSS') != -1)&&
  134. (document.documentElement)){
  135. return document.documentElement;
  136. }else if(document.body){
  137. return document.body;
  138. }else{
  139. return obj;
  140. }
  141. }
  142. function getWindowState(){
  143. var global = this;
  144. var readScroll = {scrollLeft:NaN,scrollTop:NaN};
  145. var readSizeC = {clientWidth:NaN,clientHeight:NaN};
  146. var readSizeI = {innerWidth:NaN,innerHeight:NaN};
  147. var readScrollX = 'scrollLeft';
  148. var readScrollY = 'scrollTop';
  149. function getWidthI(){return readSizeI.innerWidth;}
  150. function getWidthC(){return readSizeC.clientWidth|0;}
  151. function getHeightI(){return readSizeI.innerHeight;}
  152. function getHeightC(){return readSizeC.clientHeight|0;}
  153. function getHeightSmart(){
  154. return retSmaller(getHeightI(), getHeightC());
  155. }
  156. function getWidthSmart(){
  157. return retSmaller(getWidthI(), getWidthC());
  158. }
  159. function setInnerWH(){
  160. theOne.getWidth = getWidthI;
  161. theOne.getHeight = getHeightI;
  162. }
  163. function retSmaller(inr, other){
  164. if(other > inr){
  165. setInnerWH();
  166. return inr;
  167. }else{
  168. return other;
  169. }
  170. }
  171. var theOne = {
  172. getScrollX:function(){return readScroll[readScrollX]|0;},
  173. getScrollY:function(){return readScroll[readScrollY]|0;},
  174. getWidth:getWidthC,
  175. getHeight:getHeightC
  176. };
  177. function main(){return theOne;}
  178. function rankObj(testObj){
  179. var dv,dhN;
  180. if(testObj&&(typeof testObj.clientWidth == 'number')&&
  181. (typeof testObj.clientHeight == 'number')){
  182. if(((dv = global.innerHeight - testObj.clientHeight) >= 0)&&
  183. ((dh = global.innerWidth - testObj.clientWidth) >= 0)){
  184. if(dh == dv){
  185. return 0;
  186. }else if((dh&&!dv)||(dv&&!dh)){
  187. return (dh+dv);
  188. }
  189. }
  190. }
  191. return NaN;
  192. }
  193. if((typeof global.innerHeight == 'number')&&
  194. (typeof global.innerWidth == 'number')){
  195. readSizeI = global;
  196. var bodyRank = rankObj(document.body);
  197. var rankDocEl = rankObj(document.documentElement);
  198. var selEl = null;
  199. if(!isNaN(bodyRank)){
  200. if(!isNaN(rankDocEl)){
  201. if(bodyRank < rankDocEl){
  202. selEl = document.body;
  203. }else if(bodyRank > rankDocEl){
  204. selEl = document.documentElement;
  205. }else{
  206. selEl = compatModeTest(document.body);
  207. }
  208. }else{
  209. selEl = document.body;
  210. }
  211. }else if(!isNaN(rankDocEl)){
  212. selEl = document.documentElement;
  213. }
  214. if(selEl){
  215. readSizeC = selEl
  216. theOne.getWidth = getWidthSmart;
  217. theOne.getHeight = getHeightSmart;
  218. }else{
  219. setInnerWH();
  220. }
  221. }else{
  222. readSizeC = compatModeTest(readSizeC);
  223. }
  224. if((typeof global.pageYOffset == 'number')&&
  225. (typeof global.pageXOffset == 'number')){
  226. readScroll = global;
  227. readScrollY = 'pageYOffset';
  228. readScrollX = 'pageXOffset';
  229. }else{
  230. readScroll = compatModeTest(readScroll);
  231. }
  232. return (getWindowState = main)();
  233. }
  234. var windowState = getWindowState();
  235. function readWindow(){
  236. scaleYAdjust = (((windowCenterY =
  237. (windowState.getHeight() >>1)) - 16)*
  238. zMultiplier);
  239. scaleXAdjust = (((windowCenterX =
  240. (windowState.getWidth() >> 1)) - 16)*
  241. zMultiplier);
  242. sy = windowCenterY + windowState.getScrollY();
  243. sx = windowCenterX + windowState.getScrollX();
  244. }
  245. function getStyleObj(id){
  246. var obj = null;
  247. if(document.getElementById){
  248. obj = document.getElementById(id);
  249. }else if(document.all){
  250. obj = document.all[id];
  251. }else if(document.layers){
  252. obj = document.layers[id];
  253. }
  254. return ((typeof obj != 'undefined')&&
  255. (typeof obj.style != 'undefined'))?
  256. obj.style:obj;
  257. }
  258. function starObj(id, parent, prv){
  259. var next,reset;
  260. var divClip, div = getStyleObj("stars"+id);
  261. var y,x,z,v,dx,dy,dm,dm2,px,py,widthPos,temp;
  262. (reset = function(){
  263. px = Math.random()<0.5 ? +1 : -1;
  264. py = Math.random()<0.5 ? +1 : -1;
  265. y = ((Math.random()*Math.random()*
  266. scaleYAdjust)+windowCenterY);
  267. x = ((Math.random()*Math.random()*
  268. scaleXAdjust)+windowCenterX);
  269. widthPos = (x + zMultiplier);
  270. z = 0;
  271. })();
  272. z = Math.random()*planeDepth*0.8;
  273. function step(){
  274. temp = x * (v = d/(depthDimentsion - z));
  275. dm = ((dm2 = ((widthPos * v)-temp)|0)>>1);
  276. dy = (y * v);
  277. dx = (temp);
  278. }
  279. if(div){
  280. if(!posMod){
  281. posMod = (typeof div.top == 'string')?'px':0;
  282. }
  283. divClip = ((typeof div.clip != 'undefined')&&
  284. (typeof div.clip != 'string'))?
  285. div.clip:div;
  286. this.position = function(){
  287. step();
  288. if(((z += fv) >= planeDepth)||
  289. ((dy+dm) > windowCenterY)||
  290. ((dx+dm) > windowCenterX)){
  291. reset();
  292. step();
  293. dm = 0;
  294. }
  295. div.top = ((sy+(py*dy)-dm)|0)+posMod;
  296. div.left = ((sx+(px*dx)-dm)|0)+posMod;
  297. divClip.width = (divClip.height = dm2+posMod);
  298. next.position();
  299. };
  300. }else{
  301. this.position = function(){return;};
  302. }
  303. if(++id < numberOfStars){
  304. next = new starObj(id, parent)
  305. }else{
  306. next = parent
  307. }
  308. }
  309. function init(){
  310. if(!getStyleObj("stars"+(numberOfStars-1))){
  311. setTimeout(starField, 200);
  312. }else{
  313. readWindow();
  314. starObjs = new starObj(0, init);
  315. init.act();
  316. }
  317. };
  318. init.position = function(){return;}
  319. init.act = function(){
  320. readWindow();
  321. starObjs.position();
  322. setTimeout(init.act,50);
  323. };
  324. init.act.toString = function(){
  325. return globalName+'.act()';
  326. };
  327. init.toString = function(){
  328. while(global[globalName])globalName += globalName;
  329. global[globalName] = this;
  330. return globalName+'()';
  331. };
  332. for(var c = numberOfStars;c--;){
  333. starHTML[1] = c;
  334. document.write(starHTML.join(''));
  335. }
  336. setTimeout(init, 200);
  337. })();
  338. </script>
  339. <br><br><br><br>
  340. <center>
  341. <img src="https://sendeyo.com/up/b37adda28cb94669d29571f0b21ed105.jpg" width="500" height="700">
  342. <header>
  343. <pre>
  344. <font size="7" color="red">HACKED B</font><font size="7" color"white">Y N4ST4R_ID<span style="color:white;" class="blink">_</span></font>
  345. </pre>
  346. <br><font size="5"><font color=grey>EXP3CT4TION SILLY TEAM
  347. <br>
  348. <br><font size="6"><font color= gold>Member:
  349. <br>ALX-04 | RAT 404 | mr. He11o w0r1d | Mr.PTIC |
  350. <br>=Mr.Zonk404 | Wahidin &#24417; | Mr.:/R1zK1 | Redhost | IL7C | Clutzsec
  351. </header>
  352. <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+ "p01.notifa.info/3fsmd3/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582NzYpoUazw5mH9o90p0D8juHKF0O5zk%2fjHCe622knFwCopGsXDnv9Rdjz64rTXnEEOxMP44UyhoPiTaudgrOwlaEtzdJixinWxam9CgQFFUgKws1mePLTY1HDnyjs80C%2bU%2fGnlTsxHyxBcDm6k2cWVjYkfwUxd4r5EGXtkjlUk13EAJnJaRFwZnnBX0n2a3Q6Awml%2foxvraLRffPj%2bPDm68b1QLkbb6EMxU%2bCxFreWlrKQpN3FAYPxGY%2fbTkJVyo%2fP6d9lJ96kRmDOp4LKZEkzB%2f8rH97VbHo46tlwPPW%2fmo7Q%2f2E6o0ufaVl294jlYoLV7dxpuhEBZktaJeixP7Aidi1p%2bDCgcZ4c0ghlsmbQidtjROLFP%2b9ISv2hn7NAFZvC%2bw1xKgIXitqx5RMN%2fSGyV7bRga%2fMjyIoWL3rXj38%2fetbTJjm%2bu5eTa%2b8pGKKyQuokrJVuL8%2fu8nlJmOog%2fr4eUKpGA8T8RUvOrTpWIJUeAcJUzATP6Mq9%2bY5zvkZ4GbF9s64GKtWlMC1clCXrmcd%2ferpUrS4cRODta4r6zGVv0" + "&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>
  353. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement