Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
- <title>ҳ̸Ҳ̸ҳ Newbie Jatuh Cinta ^_^ ҳ̸Ҳ̸ҳ</title> <style type="text/css"><!-- a:link{color:#ffffff;text-decoration:none}--></style> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><script language="JavaScript">function tb5_makeArray(n){ this.length = n; return this.length;
- }
- tb5_messages = new tb5_makeArray(2);
- tb5_messages[0] = "Tested By";
- tb5_messages[1] = "FirewalL21";
- tb5_rptType = 'infinite';
- tb5_rptNbr = 100;
- tb5_speed = 300;
- tb5_delay = 10;
- var tb5_counter=1;
- var tb5_currMsg=0;
- var tb5_stsmsg="";
- function tb5_shuffle(arr){
- var k;
- for (i=0; i<arr.length; i++){ k = Math.round(Math.random() * (arr.length - i - 1)) + i; temp = arr[i];arr[i]=arr[k];arr[k]=temp;
- }
- return arr;
- }
- tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
- tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
- for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "_";
- }
- tb5_arr = tb5_shuffle(tb5_arr);
- function tb5_init(n){
- var k;
- if (n == tb5_arr.length){ if (tb5_currMsg == tb5_messages.length-1){ if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){ clearTimeout(tb5_timerID); return; } tb5_counter++; tb5_currMsg=0; } else{ tb5_currMsg++; } n=0; tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length); tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length); for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "_"; } tb5_arr = tb5_shuffle(tb5_arr); tb5_sp=tb5_delay;
- }
- else{ tb5_sp=tb5_speed; k = tb5_arr[n]; tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k); tb5_stsmsg = ""; for (var i=0; i<tb5_sts.length; i++) tb5_stsmsg += tb5_sts[i]; document.title = tb5_stsmsg; n++; } tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
- }
- function tb5_randomizetitle(){ tb5_init(0);
- }
- tb5_randomizetitle();</script><script>/*
- An object-oriented Typing Text script, to allow for multiple instances.
- A script that causes any text inside any text element to be "typed out", one letter at a
- time. Note that any HTML tags will not be included in the typed output, to prevent them
- from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE
- v6.
- Browsers that do not support this script will simply see the text fully displayed from the
- start, including any HTML tags.
- Functions defined: TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function()
- {return}]): Create a new TypingText object around the given element. Optionally specify a delay between characters of interval milliseconds. cursor allows users to specify some HTML to be appended to the end of the string whilst typing. Optionally, can also be a function which accepts the current text as an argument. This allows the user to create a "dynamic cursor" which changes depending on the latest character or the current length of the string. finishedCallback allows advanced scripters to supply a function to be executed on finishing. The function must accept no arguments. TypingText.run(): Run the effect. static TypingText.runAll(): Run all TypingText-enabled objects on the page.
- */
- TypingText = function(element, interval, cursor, finishedCallback) { if((typeof document.getElementById == "undefined") || (typeof element.innerHTML ==
- "undefined")) { this.running = true; // Never run. return; } this.element = element; this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; }); this.interval = (typeof interval == "undefined" ? 100 : interval); this.origText = this.element.innerHTML; this.unparsedOrigText = this.origText; this.cursor = (cursor ? cursor : ""); this.currentText = ""; this.currentChar = 0; this.element.typingText = this; if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++; TypingText.all.push(this); this.running = false; this.inTag = false; this.tagBuffer = ""; this.inHTMLEntity = false; this.HTMLEntityBuffer = "";
- }
- TypingText.all = new Array();
- TypingText.currentIndex = 0;
- TypingText.runAll = function() { for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
- }
- TypingText.prototype.run = function() { if(this.running) return; if(typeof this.origText == "undefined") { setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
- this.interval); // We haven't finished loading yet. Have patience. return; } if(this.currentText == "") this.element.innerHTML = "";
- // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text. if(this.currentChar < this.origText.length) { if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) { this.tagBuffer = "<"; this.inTag = true; this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) { this.tagBuffer += ">"; this.inTag = false; this.currentText += this.tagBuffer; this.currentChar++; this.run(); return; } else if(this.inTag) { this.tagBuffer += this.origText.charAt(this.currentChar); this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) { this.HTMLEntityBuffer = "&"; this.inHTMLEntity = true; this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) { this.HTMLEntityBuffer += ";"; this.inHTMLEntity = false; this.currentText += this.HTMLEntityBuffer; this.currentChar++; this.run(); return; } else if(this.inHTMLEntity) { this.HTMLEntityBuffer += this.origText.charAt(this.currentChar); this.currentChar++; this.run(); return; } else { this.currentText += this.origText.charAt(this.currentChar); } this.element.innerHTML = this.currentText; this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof
- this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : ""); this.currentChar++; setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
- this.interval); } else { this.currentText = ""; this.currentChar = 0; this.running = false; this.finishedCallback(); }
- }</script>
- </h2>
- </div>
- <div class='post-dalem'>
- <p><style>
- @font-face{font-family:"firefly";src:url('http://fontsforweb.com/public/fonts/189/ZOINKFAT.eot');src:local("ZoinkFat"),url('http://fontsforweb.com/public/fonts/189/ZOINKFAT.ttf') format("truetype")}.fontsforweb_fontid_189{font-family:"firefly"}.fireflies{-webkit-animation:skyin 6s;-moz-animation:skyin 6s;-ms-animation:skyin 6s;animation:skyin 6s;font:50px firefly;color:#7FFF00;text-shadow:5px 10px 10px #7FFF00;position:absolute;margin-left:18%;margin-top:2%}#menu_footer{display:none}.breadCrumb{display:none}a:link{text-decoration:none;color:#3b5998}a:visited{text-decoration:none;color:#3b5998}.Firefly{color:#7FFF00;text-shadow:0 0 5px #7FFF00;text-align:left;margin:0 auto;padding:10px;position:relative;height:600px;width:900px;font:15px 'consolas'}body{overflow-x:hidden;margin:0;background:#000 url(http://www.pngmart.com/files/1/Dark-Red-Heart-PNG-HD.png) center no-repeat;background-attachment:fixed}
- </style><br />
- <span style="font:50px firefly;-webkit-animation:inzoomnav 3s;-moz-animation:inzoomnav 3s;-ms-animation:inzoomnav 3s;animation:inzoomnav 3s;position:absolute;margin-left:4%;margin-top:2%;color:#7FFF00;text-shadow:5px 10px 10px #7FFF00"></span><div class="fireflies"></div><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script><br />
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-26422548-1']);
- _gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- </script><br />
- <script>
- TypingText = function(element, interval, cursor, finishedCallback) {
- if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
- this.running = true; // Never run.
- return;
- }
- this.element = element;
- this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
- this.interval = (typeof interval == "undefined" ? 500 : interval);
- this.origText = this.element.innerHTML;
- this.unparsedOrigText = this.origText;
- this.cursor = (cursor ? cursor : "");
- this.currentText = "";
- this.currentChar = 0;
- this.element.typingText = this;
- if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
- TypingText.all.push(this);
- this.running = false;
- this.inTag = false;
- this.tagBuffer = "";
- this.inHTMLEntity = false;
- this.HTMLEntityBuffer = "";
- }
- TypingText.all = new Array();
- TypingText.currentIndex = 0;
- TypingText.runAll = function() {
- for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
- }
- TypingText.prototype.run = function() {
- if(this.running) return;
- if(typeof this.origText == "undefined") {
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
- return;
- }
- if(this.currentText == "") this.element.innerHTML = "";
- // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
- if(this.currentChar < this.origText.length) {
- if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
- this.tagBuffer = "<";
- this.inTag = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
- this.tagBuffer += ">";
- this.inTag = false;
- this.currentText += this.tagBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inTag) {
- this.tagBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
- this.HTMLEntityBuffer = "&";
- this.inHTMLEntity = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
- this.HTMLEntityBuffer += ";";
- this.inHTMLEntity = false;
- this.currentText += this.HTMLEntityBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inHTMLEntity) {
- this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else {
- this.currentText += this.origText.charAt(this.currentChar);
- }
- this.element.innerHTML = this.currentText;
- this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
- this.currentChar++;
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
- } else {
- this.currentText = "";
- this.currentChar = 0;
- this.running = false;
- this.finishedCallback();
- }
- }
- </script>
- <div class="mal ptm uiInterstitial login_page_interstitial uiInterstitialLarge white_box">
- <div class="uiHeader uiHeaderBottomBorder mhl mts uiHeaderSection">
- <div class="clearfix uiHeaderTop">
- <div>
- </div></div></div><div class="phl ptm uiInterstitialContent">
- <div class="login_form_container">
- </p></div><div class="Firefly">
- <div
- id="example1"></div><p id="example2">
- - Andai aku seorang hacker yang bisa dengan mudah mencari bug vurnerability dihatimu, <br>
- dengan scanning nmap -v -sS -O www.yourheart.me<br>
- Mendapatkan port 80/tcp open dan melakukan penetrasi testing terhadap databasemu,<br>
- Walaupun port 22/ssh closed ports yang kau kunci rapat,<br>
- aku akan berusaha membuat backdoor sebagai jalan menuju hatimu,<br>
- <br>
- Tanpa kau sadari vuln terhadap Blind sqli tepat di "your_heart.php"<br>
- "You have an error in your heart syntax;<br>
- check the manual that corresponds to your heart<br>
- server version for the right syntax to use near ''SELECT * FROM cp WHERE location='' at line 666"<br>
- <br>
- - Andai aku seorang hacker dengan bug blind sqli dan melakukan code injection tepat di your_heart.php,<br>
- Ya... andai aku seorang hacker,<br>
- Hanya butuh waktu sedini mungkin untuk mendapatkan aksess ke databasemu, <br>
- Upload backdoor di hatimu, Safe mode OFF dan search local root exploit untuk lakukan rooting di systemmu,<br>
- <br>
- - Andai aku seorang hacker, dengan shell sederhana c99.php yang telah terupload<br>
- dan sebuah netcut dengan mudah melakukan Back Connect dan mendapatkan akses root pada hatimu,<br>
- <br>
- "whoami" uid=0(root) gid=0(root) groups=0(root)<br>
- <br>
- - Andai aku seorang hacker dan tanpa kau sadari aku telah mendapatkanmu seutuhnya,<br>
- dan akan meninggalkan sebuah file readme.txt khusus dengan hak akses -rw——- 600<br>
- agar hanya kau dan aku dan hanya kita berdua yang bisa membacanya,<br>
- <br>
- <br>
- readme.txt<br>
- <br>
- " Please open your heart"<br>
- <br>
- <br>
- Namun aku bukanlah seorang hacker,..<br>
- Aku hanya manusia biasa, yang berharap punya kesempatan,..<br>
- Kesempatan untuk tetap bersama dan terus memilikimu,..<br>
- Dan menjadikanmu cinta terakhir dalam hidupku :)<br>
- <br>
- pwn3d by FirewalL21
- </br>
- </p><script type="text/javascript">
- //Define first typing example:
- new TypingText(document.getElementById("example1"));
- //Define second typing example (use "slashing" cursor at the end):
- new TypingText(document.getElementById("example2"), 100, function(i){
- var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
- ar.length]; });
- //Type out examples:
- TypingText.runAll();
- </script><br />
- <embed
- src="http://www.youtube.com/v/jP6eEKrghGI&autoplay=1&loop=1&playlist=jP6eEKrghGI"
- type="application/x-shockwave-flash" wmode="transparent" height="1"
- width="1"></embed>
- <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'></noscript></body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement