zone-h URL: http://www.zone-h.org/mirror/id/24942804
Capture Date: 2015-10-11 03:35:25 JST
zone-h info:
Mirror saved on : 2015-10-10 09:49:39
Notified by : BloodSecurity
Domain : http://ofertas.jp/d4rkj1n.htm
IP address : 49.212.190.141
System : Linux
Web server : Apache
Analyze:
String Match:
Header:
2 : Hacked
1 : Hacked by
1 : Hacked By
Contents:
4 : Hacker
2 : Hacked
2 : BloodSecurity
1 : Anonymous
1 : Hacked by
1 : Cyber Army
1 : Philippine Cyber Army
1 : crazy
1 : Yamiko
1 : Hacked By
MD5: 6d3b31562412004635b8e1360ee71171
24942803
* 24942804
Analyze: String Match Header: 3, 4 ; String Match Contents: 10, 15 ; MD5: 2 ;
Header:
Server: Apache/2.2.15 (CentOS)
Last-Modified: Sat, 10 Oct 2015 09:42:58 GMT
X-Meta-Author: Hacked By D4rkj1n
X-Meta-Description: Website Hacked by BloodSec International.
Contents:
<!doctype html>
<head>
<title>BloodSec International</title>
<link rel="SHORTCUT ICON" href="http://www14.0zz0.com/2015/03/06/20/654342123.png" type="image/gif">
<meta name="Author" content="Hacked By D4rkj1n"/>
<meta name="copyright" content="BloodSec International"/>
<meta name="description" content="Website Hacked by BloodSec International."/>
<link href="http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css"/>
<link href="http://fonts.googleapis.com/css?family=Iceberg" rel="stylesheet" type="text/css"/>
<link href="http://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet" type="text/css"/>
<link href='http://fonts.googleapis.com/css?family=Abel:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Abel:400' rel='stylesheet' type='text/css'>
<style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur862.ani), url(http://cur.cursors-4u.net/cursors/cur-9/cur862.png), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2011/11/22/night-diamond-bloody-red-link-select.html" target="_blank" title="Night Diamond Bloody Red - Link Select"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Night Diamond Bloody Red - Link Select" style="position:absolute; top: 0px; right: 0px;" /></a>
<link href="http://fonts.googleapis.com/css?family=Orbitron:400,900" rel="stylesheet" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
! function($) {
"use strict";
var Typed = function(el, options) {
this.el = $(el);
this.options = $.extend({}, $.fn.typed.defaults, options);
this.isInput = this.el.is('input');
this.attr = this.options.attr;
this.showCursor = this.isInput ? false : this.options.showCursor;
this.elContent = this.attr ? this.el.attr(this.attr) : this.el.text()
this.contentType = this.options.contentType;
this.typeSpeed = this.options.typeSpeed;
this.startDelay = this.options.startDelay;
this.backSpeed = this.options.backSpeed;
this.backDelay = this.options.backDelay;
this.strings = this.options.strings;
this.strPos = 0;
this.arrayPos = 0;
this.stopNum = 0;
this.loop = this.options.loop;
this.loopCount = this.options.loopCount;
this.curLoop = 0;
this.stop = false;
this.cursorChar = this.options.cursorChar;
this.build();
};
Typed.prototype = {
constructor: Typed
,
init: function() {
var self = this;
self.timeout = setTimeout(function() {
self.typewrite(self.strings[self.arrayPos], self.strPos);
}, self.startDelay);
}
,
build: function() {
if (this.showCursor === true) {
this.cursor = $("<span class=\"typed-cursor\">" + this.cursorChar + "</span>");
this.el.after(this.cursor);
}
this.init();
}
,
typewrite: function(curString, curStrPos) {
if (this.stop === true) {
return;
}
var humanize = Math.round(Math.random() * (100 - 30)) + this.typeSpeed;
var self = this;
self.timeout = setTimeout(function() {
var charPause = 0;
var substr = curString.substr(curStrPos);
if (substr.charAt(0) === '^') {
var skip = 1;
if (/^\^\d+/.test(substr)) {
substr = /\d+/.exec(substr)[0];
skip += substr.length;
charPause = parseInt(substr);
}
curString = curString.substring(0, curStrPos) + curString.substring(curStrPos + skip);
}
if (self.contentType === 'html') {
var curChar = curString.substr(curStrPos).charAt(0)
if (curChar === '<' || curChar === '&') {
var tag = '';
var endTag = '';
if (curChar === '<') {
endTag = '>'
} else {
endTag = ';'
}
while (curString.substr(curStrPos).charAt(0) !== endTag) {
tag += curString.substr(curStrPos).charAt(0);
curStrPos++;
}
curStrPos++;
tag += endTag;
}
}
self.timeout = setTimeout(function() {
if (curStrPos === curString.length) {
self.options.onStringTyped(self.arrayPos);
if (self.arrayPos === self.strings.length - 1) {
self.options.callback();
self.curLoop++;
if (self.loop === false || self.curLoop === self.loopCount)
return;
}
self.timeout = setTimeout(function() {
self.backspace(curString, curStrPos);
}, self.backDelay);
} else {
if (curStrPos === 0)
self.options.preStringTyped(self.arrayPos);
var nextString = curString.substr(0, curStrPos + 1);
if (self.attr) {
self.el.attr(self.attr, nextString);
} else {
if (self.isInput) {
self.el.val(nextString);
} else if (self.contentType === 'html') {
self.el.html(nextString);
} else {
self.el.text(nextString);
}
}
curStrPos++;
self.typewrite(curString, curStrPos);
}
}, charPause);
}, humanize);
}
,
backspace: function(curString, curStrPos) {
if (this.stop === true) {
return;
}
var humanize = Math.round(Math.random() * (100 - 30)) + this.backSpeed;
var self = this;
self.timeout = setTimeout(function() {
if (self.contentType === 'html') {
if (curString.substr(curStrPos).charAt(0) === '>') {
var tag = '';
while (curString.substr(curStrPos).charAt(0) !== '<') {
tag -= curString.substr(curStrPos).charAt(0);
curStrPos--;
}
curStrPos--;
tag += '<';
}
}
var nextString = curString.substr(0, curStrPos);
if (self.attr) {
self.el.attr(self.attr, nextString);
} else {
if (self.isInput) {
self.el.val(nextString);
} else if (self.contentType === 'html') {
self.el.html(nextString);
} else {
self.el.text(nextString);
}
}
if (curStrPos > self.stopNum) {
curStrPos--;
self.backspace(curString, curStrPos);
}
else if (curStrPos <= self.stopNum) {
self.arrayPos++;
if (self.arrayPos === self.strings.length) {
self.arrayPos = 0;
self.init();
} else
self.typewrite(self.strings[self.arrayPos], curStrPos);
}
}, humanize);
}
,
reset: function() {
var self = this;
clearInterval(self.timeout);
var id = this.el.attr('id');
this.el.after('<span id="' + id + '"/>')
this.el.remove();
if (typeof this.cursor !== 'undefined') {
this.cursor.remove();
}
self.options.resetCallback();
}
};
$.fn.typed = function(option) {
return this.each(function() {
var $this = $(this),
data = $this.data('typed'),
options = typeof option == 'object' && option;
if (!data) $this.data('typed', (data = new Typed(this, options)));
if (typeof option == 'string') data[option]();
});
};
$.fn.typed.defaults = {
strings: [""],
typeSpeed: 0,
startDelay: 0,
backSpeed: 0,
backDelay: 500,
// loop
loop: false,
// false = infinite
loopCount: false,
showCursor: true,
cursorChar: "|",
attr: null,
contentType: 'html',
callback: function() {},
preStringTyped: function() {},
onStringTyped: function() {},
resetCallback: function() {}
};
}(window.jQuery);
</script>
<script>
$(function(){
$("#typed").typed({
strings: ["BloodSecurity Hackers, Skw4t3R"],
typeSpeed: 100,
backDelay: 1000,
loop: true,
contentType: 'html',
loopCount: false,
callback: function(){ foo(); },
resetCallback: function() { newTyped(); }
});
$(".reset").click(function(){
$("#typed").typed('reset');
});
});
function newTyped(){ }
function foo(){ console.log("Callback"); }
</script>
<style>
body {
background-color:black;
color:white;
font-family: Orbitron !important;
}
a {
color:green;
text-decoration: none;
cursor:pointer;
}
a:hover { color:orange;}
.type-wrap{
margin:10px auto;
padding:20px;
}
.grp {
color: white;
font-size: 72px;
text-shadow: 0px 0px 8px red,0px 0px 8px red;
}
#rotate {
-webkit-animation: rotatePositive 5s infinite linear;
-moz-animation: rotatePositive 5s infinite linear;
-ms-animation: rotatePositive 5s infinite linear;
-o-animation: rotatePositive 5s infinite linear;
animation: rotatePositive 5s infinite linear;
}
@-webkit-keyframes rotatePositive {
0% { -webkit-transform: rotatey(0deg); }
100% { -webkit-transform: rotatey(360deg); }
}
@-moz-keyframes rotatePositive {
0% { -moz-transform: rotatey(0deg); }
100% { -moz-transform: rotatey(360deg); }
}
@-ms-keyframes rotatePositive {
0% { -ms-transform: rotatey(0deg); }
100% { -ms-transform: rotatey(360deg); }
}
@-o-keyframes rotatePositive {
0% { -o-transform: rotatey(0deg); }
100% { -o-transform: rotatey(360deg); }
}
@keyframes rotatePositive {
0% { transform: rotatey(0deg); }
100% { transform: rotatey(360deg); }
}
#blink {text-decoration:blink;
-webkit-animation-name: blink;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
-webkit-animation-duration: 1s;
}
.typed-cursor{
opacity: 1;
font-weight: 100;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
-ms-animation: blink 0.7s infinite;
-o-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-ms-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-o-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
#plate{
position: absolute;!important;
top:0!important;
left:0!important;
width:100%;
height:100%;
overflow:hidden!important;
z-index:-1!important;
margin:0;
padding:0;
position:fixed;
opacity:0.6;
}
.hackBody{
min-height:550px;
}
.container
{
margin-top:10px;
}
</style>
</head>
<body>
<div align="center">
<div class="container">
<div class="hackBody">
<div id="plate">
<canvas id="can" class="transparent_class"></canvas>
</div> <script src="http://www.nycfragrance.com/csvcategoryimportver1.0.3/system/css/layout/js/crazyIntro.js"></script>
<body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
<iframe width="1" height="1" src="http://www.youtube.com/embed/LDTpnsHyNnY?rel=0&autoplay=1&loop=1&playlist=LDTpnsHyNnY" frameborder="0" allowfullscreen></iframe>
<center>
<a href="#"><img src="http://cs.i-services.com.hk/system/templates_c/vifocj.jpg" width="20%"></a>
<div class="h1"><font size="12px"><b>BloodSec</b> <span style="color:white ; text-shadow: #000 3px 3px 5px"><b>International</b></span></div></font>
<div class="h2"><font size="6px"><b><span style="color:red ; text-shadow: #000 3px 3px 5px">./D4rkj1n</b></div><br></font>
<div class="h5">The page you are looking for has been <font color="red">COMPROMISED.</font></div>
<div class="h5">by <font color="red">BloodSecurity Hackers</font><div class="h3"><br> uid=0(root) gid=0(root) groups=0(root)<br>
<ul class="cbdb-menu">
</ul>
<embed width="600" height="40" align="middle" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" quality="high" src="http://www.widgeo.net/effets/2.swf" flashvars="letter=SECURITY IS JUST AN ILLUSION"></br>
<br>
<div class="h4"><font color="white">-:-</font><b>Greets:</b><font color="white">-:-</font></div>
<center><div style="width:500px"><marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
<font size="5px" style="font-family: Iceberg, sans-serif;color:black;text-shadow: 0 0 3px red, 0px 0px 5px red" >- D4rkj1n - Smurfie - NeoZone - 1nt0x1c4t3d - 3Turr - Asjin The White - CyberGhost - LittleDevilUzagi - m4st3rb4nd01 - Yamiko - 1nuT1L - Shadowmask - 1337 - Gl33cher - Jh4nzki3 - Skwater - W4RH4mm3R - #[C]asper - K4izen - T14g0 - Scørpiøn Ghøst - SILENT ANGEL - 7rb _Å - r4c - Kent - Kh4lifax - Synd1c4te - NewbiexHacker - Linker - XSaigon - Bl4ckb133d - GantengCrews - Phantom Hackers - Philippine hacking community - Philippine Cyber Army - Anonymous PH -</font></marquee></div></center>
</div>
</center>
</body>
</html>