Advertisement
Gombrus123

Untitled

Nov 9th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.52 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <link rel="SHORTCUT ICON" href="https://noesaja.files.wordpress.com/2012/12/merah-putih.jpg">
  4.  
  5. <head>
  6. <meta charset="utf-8">
  7. <meta name="description" content="Hacked By GOMBRUS">
  8. <meta name="keywords" content="Hacked By GOMBRUS">
  9. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
  10. <meta property="og:title" content="Hacked by GOMBRUS">
  11. <meta property="og:image" content="https://image.ibb.co/mRaZ8k/udsz.png">
  12. <meta property="og:description" content="Hacked By GOMBRUS">
  13. <title>Hacked By GOMBRUS</title>
  14. <iframe width="0" height="0" src="https://api.soundcloud.com/tracks/516914565stream?client_id=a3e059563d7fd3372b49b37f00a00bcf" frameborder="0" allowfullscreen></iframe>
  15.  
  16. <script type="text/javascript">
  17. (function(){
  18. var global = this;
  19. var globalName = 'starField';
  20. var numberOfStars = 100;
  21.  
  22. /* total depth of space ;)*/
  23. var depthDimentsion = 2000;
  24.  
  25. /* % of space between browser and viewer.*/
  26. var viewingDepth = 0.0001;
  27.  
  28. /* % of space moved in one step.*/
  29. var forwardVelocity = 0.3;
  30. var d = depthDimentsion*(viewingDepth/100);
  31. var planeDepth = depthDimentsion - d;
  32. var fv = planeDepth*(forwardVelocity/100);
  33. var zMultiplier = (depthDimentsion)/d;
  34. var starObjs, starHTML;
  35. var posMod, sy, sx, windowCenterY, windowCenterX;
  36. var scaleXAdjust, scaleYAdjust;
  37. if((document.layers)&&(this.Layer)){
  38. starHTML = [
  39. '<layer id="stars','',
  40. '" left="0" top="0" width="1" height="1"',
  41. ' bgColor="#FFFFFF"></layer>'];
  42. }else{
  43. starHTML = [
  44. '<div id="stars','',
  45. '" style="position:absolute;width:1px;overflow:',
  46. 'hidden;height:1px;background-color:#FFF;',
  47. 'font-size:1px"></div>'];
  48. }
  49. function compatModeTest(obj){
  50. if((document.compatMode)&&
  51. (document.compatMode.indexOf('CSS') != -1)&&
  52. (document.documentElement)){
  53. return document.documentElement;
  54. }else if(document.body){
  55. return document.body;
  56. }else{
  57. return obj;
  58. }
  59. }
  60. function getWindowState(){
  61. var global = this;
  62. var readScroll = {scrollLeft:NaN,scrollTop:NaN};
  63. var readSizeC = {clientWidth:NaN,clientHeight:NaN};
  64. var readSizeI = {innerWidth:NaN,innerHeight:NaN};
  65. var readScrollX = 'scrollLeft';
  66. var readScrollY = 'scrollTop';
  67. function getWidthI(){return readSizeI.innerWidth;}
  68. function getWidthC(){return readSizeC.clientWidth|0;}
  69. function getHeightI(){return readSizeI.innerHeight;}
  70. function getHeightC(){return readSizeC.clientHeight|0;}
  71. function getHeightSmart(){
  72. return retSmaller(getHeightI(), getHeightC());
  73. }
  74. function getWidthSmart(){
  75. return retSmaller(getWidthI(), getWidthC());
  76. }
  77. function setInnerWH(){
  78. theOne.getWidth = getWidthI;
  79. theOne.getHeight = getHeightI;
  80. }
  81. function retSmaller(inr, other){
  82. if(other > inr){
  83. setInnerWH();
  84. return inr;
  85. }else{
  86. return other;
  87. }
  88. }
  89. var theOne = {
  90. getScrollX:function(){return readScroll[readScrollX]|0;},
  91. getScrollY:function(){return readScroll[readScrollY]|0;},
  92. getWidth:getWidthC,
  93. getHeight:getHeightC
  94. };
  95. function main(){return theOne;}
  96. function rankObj(testObj){
  97. var dv,dhN;
  98. if(testObj&&(typeof testObj.clientWidth == 'number')&&
  99. (typeof testObj.clientHeight == 'number')){
  100. if(((dv = global.innerHeight - testObj.clientHeight) >= 0)&&
  101. ((dh = global.innerWidth - testObj.clientWidth) >= 0)){
  102. if(dh == dv){
  103. return 0;
  104. }else if((dh&&!dv)||(dv&&!dh)){
  105. return (dh+dv);
  106. }
  107. }
  108. }
  109. return NaN;
  110. }
  111. if((typeof global.innerHeight == 'number')&&
  112. (typeof global.innerWidth == 'number')){
  113. readSizeI = global;
  114. var bodyRank = rankObj(document.body);
  115. var rankDocEl = rankObj(document.documentElement);
  116. var selEl = null;
  117. if(!isNaN(bodyRank)){
  118. if(!isNaN(rankDocEl)){
  119. if(bodyRank < rankDocEl){
  120. selEl = document.body;
  121. }else if(bodyRank > rankDocEl){
  122. selEl = document.documentElement;
  123. }else{
  124. selEl = compatModeTest(document.body);
  125. }
  126. }else{
  127. selEl = document.body;
  128. }
  129. }else if(!isNaN(rankDocEl)){
  130. selEl = document.documentElement;
  131. }
  132. if(selEl){
  133. readSizeC = selEl
  134. theOne.getWidth = getWidthSmart;
  135. theOne.getHeight = getHeightSmart;
  136. }else{
  137. setInnerWH();
  138. }
  139. }else{
  140. readSizeC = compatModeTest(readSizeC);
  141. }
  142. if((typeof global.pageYOffset == 'number')&&
  143. (typeof global.pageXOffset == 'number')){
  144. readScroll = global;
  145. readScrollY = 'pageYOffset';
  146. readScrollX = 'pageXOffset';
  147. }else{
  148. readScroll = compatModeTest(readScroll);
  149. }
  150. return (getWindowState = main)();
  151. }
  152. var windowState = getWindowState();
  153. function readWindow(){
  154. scaleYAdjust = (((windowCenterY =
  155. (windowState.getHeight() >>1)) - 16)*
  156. zMultiplier);
  157. scaleXAdjust = (((windowCenterX =
  158. (windowState.getWidth() >> 1)) - 16)*
  159. zMultiplier);
  160. sy = windowCenterY + windowState.getScrollY();
  161. sx = windowCenterX + windowState.getScrollX();
  162. }
  163. function getStyleObj(id){
  164. var obj = null;
  165. if(document.getElementById){
  166. obj = document.getElementById(id);
  167. }else if(document.all){
  168. obj = document.all[id];
  169. }else if(document.layers){
  170. obj = document.layers[id];
  171. }
  172. return ((typeof obj != 'undefined')&&
  173. (typeof obj.style != 'undefined'))?
  174. obj.style:obj;
  175. }
  176. function starObj(id, parent, prv){
  177. var next,reset;
  178. var divClip, div = getStyleObj("stars"+id);
  179. var y,x,z,v,dx,dy,dm,dm2,px,py,widthPos,temp;
  180. (reset = function(){
  181. px = Math.random()<0.5 ? +1 : -1;
  182. py = Math.random()<0.5 ? +1 : -1;
  183. y = ((Math.random()*Math.random()*
  184. scaleYAdjust)+windowCenterY);
  185. x = ((Math.random()*Math.random()*
  186. scaleXAdjust)+windowCenterX);
  187. widthPos = (x + zMultiplier);
  188. z = 0;
  189. })();
  190. z = Math.random()*planeDepth*0.8;
  191. function step(){
  192. temp = x * (v = d/(depthDimentsion - z));
  193. dm = ((dm2 = ((widthPos * v)-temp)|0)>>1);
  194. dy = (y * v);
  195. dx = (temp);
  196. }
  197. if(div){
  198. if(!posMod){
  199. posMod = (typeof div.top == 'string')?'px':0;
  200. }
  201. divClip = ((typeof div.clip != 'undefined')&&
  202. (typeof div.clip != 'string'))?
  203. div.clip:div;
  204. this.position = function(){
  205. step();
  206. if(((z += fv) >= planeDepth)||
  207. ((dy+dm) > windowCenterY)||
  208. ((dx+dm) > windowCenterX)){
  209. reset();
  210. step();
  211. dm = 0;
  212. }
  213. div.top = ((sy+(py*dy)-dm)|0)+posMod;
  214. div.left = ((sx+(px*dx)-dm)|0)+posMod;
  215. divClip.width = (divClip.height = dm2+posMod);
  216. next.position();
  217. };
  218. }else{
  219. this.position = function(){return;};
  220. }
  221. if(++id < numberOfStars){
  222. next = new starObj(id, parent)
  223. }else{
  224. next = parent
  225. }
  226. }
  227. function init(){
  228. if(!getStyleObj("stars"+(numberOfStars-1))){
  229. setTimeout(starField, 200);
  230. }else{
  231. readWindow();
  232. starObjs = new starObj(0, init);
  233. init.act();
  234. }
  235. };
  236. init.position = function(){return;}
  237. init.act = function(){
  238. readWindow();
  239. starObjs.position();
  240. setTimeout(init.act,50);
  241. };
  242. init.act.toString = function(){
  243. return globalName+'.act()';
  244. };
  245. init.toString = function(){
  246. while(global[globalName])globalName += globalName;
  247. global[globalName] = this;
  248. return globalName+'()';
  249. };
  250. for(var c = numberOfStars;c--;){
  251. starHTML[1] = c;
  252. document.write(starHTML.join(''));
  253. }
  254. setTimeout(init, 200);
  255. })();
  256. </script></head>
  257. <link href='http://fonts.googleapis.com/css?family=Aldrich' rel='stylesheet' type='text/css'>
  258. <style type="text/css">
  259. body {
  260. background-color:#000000;
  261. background-position:center;}
  262. h1 {
  263. text-align:center;
  264. text-transform:uppercase;
  265. color:#FFFFFF;
  266. font-family:'Aldrich',sans-serif;
  267. font-size:45pt;
  268. margin-top:0px;
  269. }
  270. img {
  271. opacity:0.5;-webkit-transition:all 250ms ease;-moz-transition:all 250ms ease;-o-transition:all 250ms ease;transition:all 250ms ease;
  272. margin-top:-10px;
  273. }
  274. img:hover{
  275. opacity:1;
  276. }
  277. pre {
  278. text-align:center;
  279. color:#CCCCCC;
  280. }
  281. a {
  282. text-decoration:none;
  283. color:green;
  284. }
  285. a:hover {
  286. text-decoration:underline;
  287. }
  288. hr {
  289. width:250px;
  290. }
  291. </style>
  292. <style type='text/css'>body, a, a:link{cursor:url(http://4.bp.blogspot.com/-hAF7tPUnmEE/TwGR3lRH0EI/AAAAAAAAAs8/6pki22hc3NE/s1600/ass.png), default;} a:hover {cursor:url(http://3.bp.blogspot.com/-bRikgqeZx0Q/TwGR4MUEC7I/AAAAAAAAAtA/isJmS0r35Qw/s1600/pointer.png),wait;}</style>
  293.  
  294. <body>
  295. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  296. <pre><p>
  297. <p>
  298. <center><img src="https://i.schoolido.lu/chibi/Matsuura_Kanan.png" width="200"/></center>
  299.  
  300. <font size="10" color="white">Hacked By GOMBRUS</font>
  301. <hr>
  302. <br>Greetz: <br>Mr.Yka37 - Astra - R3V0 - CRAZYCOD3-ID - Sec7ion - /RosesDie - Kirito_ID - Mr.Greatskiller - Mr.Forza</font>
  303. Dz!sban - The WTJ - xLon3ly -./MaleGhost<br>
  304.  
  305. <a href="https://www.facebook.com/lolicon.brotherhood/?fref=ts" target="blank"> <center> <font color="white" face="consolas" size="3">defacer@merahputih.id</font></a></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement