Sunday, June 15, 2008

HACKING ( WEBSITES , SOFTWARES , TRICKS)

HACKING SOFTWARES


rapidshare.com/files/91730792/Seria-of-S
oft.rar

rapidshare.com/files/91624959/hide_ip_pl
antinumwith_key.rar

rapidshare.com/files/91023193/Account-Lo
cker.rar

rapidshare.com/files/91023633/Anti-Mail-
Bomb.rar

rapidshare.com/files/91024117/Emoticon_C
reator.rar

rapidshare.com/files/91025261/Frez-Accon
t.rar

rapidshare.com/files/91027689/Kitle.rar

rapidshare.com/files/91029795/Msn-Block-
Checker.rar

rapidshare.com/files/91032421/Proyect_Li
thium_Version_0.2.0.rar

rapidshare.com/files/91033497/skinnerv12
setup.rar

rapidshare.com/files/91025674/Hot-Hack.r
ar

rapidshare.com/files/91026666/Hotmal-Kil
er.rar

rapidshare.com/files/91027055/Hotm-Crak.
rar

rapidshare.com/files/91028264/MSN7Univer
salPatcherPlusPlus.rar

rapidshare.com/files/91028827/Msn-_Dondu
rucu-hhhh.rar

rapidshare.com/files/91029357/Msn-Auto-R
esponder.rar

rapidshare.com/files/91030167/Msn-Clean.
rar

rapidshare.com/files/91030644/Msn-Pass-G
rab.rar

rapidshare.com/files/91031205/Msn-Pass-R
ecouvery.rar

rapidshare.com/files/91031509/My-Pass.ra
r

rapidshare.com/files/91035275/t__T__T8f_
OnT2.rar

rapidshare.com/files/91035276/Yah-Boter.
rar

rapidshare.com/files/91035277/yahoocrack
.rar

rapidshare.com/files/91035278/Yaho-Web-H
ak.rar


WHAT IS A HACKER?

The Jargon File contains a bunch of definitions of the term ‘hacker’, most having to do with technical adeptness and a delight in solving problems and overcoming limits. If you want to know how to become a hacker, though, only two are really relevant.

There is a community, a shared culture, of expert programmers and networking wizards that traces its history back through decades to the first time-sharing minicomputers and the earliest ARPAnet experiments. The members of this culture originated the term ‘hacker’. Hackers built the Internet. Hackers made the Unix operating system what it is today. Hackers run Usenet. Hackers make the World Wide Web work. If you are part of this culture, if you have contributed to it and other people in it know who you are and call you a hacker, you're a hacker.

The hacker mind-set is not confined to this software-hacker culture. There are people who apply the hacker attitude to other things, like electronics or music — actually, you can find it at the highest levels of any science or art. Software hackers recognize these kindred spirits elsewhere and may call them ‘hackers’ too — and some claim that the hacker nature is really independent of the particular medium the hacker works in. But in the rest of this document we will focus on the skills and attitudes of software hackers, and the traditions of the shared culture that originated the term ‘hacker’.


Hacking class for beginners-1

How to start hacking?
The key to doing amazing things with XP is as simple as D O S. Yes, that's right, DOS as in MS-DOS, as in MicroSoft Disk Operating System. Windows XP (as well as NT and 2000) comes with two versions of DOS. Command.com is an old DOS version. Various versions of command.com come with Windows 95, 98, SE, ME, Window 3, and DOS only operating systems.

The other DOS, which comes only with the XP, 2000 and NT operating systems, is cmd.exe. Usually cmd.exe is better than command.com because it is easier to use, has more commands, and in some ways resembles the bash shell in Linux and other Unix-type operating systems. For example, you can repeat a command by using the up arrow until you back up to the desired command. Unlike bash, however, your DOS command history is erased whenever you shut down cmd.exe. The reason XP has both versions of DOS is that sometimes a program that won?t run right in cmd.exe will work in command.com

****************

So how do you turn on DOS?
Click All Programs -> Accessories -> Command Prompt
That runs cmd.exe. You should see a black screen with white text on it, saying something like this:

Microsoft Windows XP [Version 5.1.2600]
(C) © 1985-2001 Microsoft Corp.

C:\>

Your first step is to find out what commands you can run in DOS. If you type "help" at the DOS prompt, it gives you a long list of commands. However, this list leaves out all the commands hackers love to use. Here are some of those left out hacker commands.

TCP/IP commands:
telnet
netstat
nslookup
tracert
ping
ftp

NetBIOS commands (just some examples):
nbtstat
net use
net view
net localgroup


CLASS 2

How to Telnet with Windows XP

The queen of hacker commands is telnet. To get Windows help for
telnet, in the cmd.exe window give the command:

C:\>telnet /?

Here's what you will get:

telnet [-a][-e escape char][-f log file][-l user][-t term][host
[port]]
-a Attempt automatic logon. Same as -l option except uses
the currently logged on user's name.
-e Escape character to enter telnet client prompt.
-f File name for client side logging
-l Specifies the user name to log in with on the remote system.
Requires that the remote system support the TELNET ENVIRON
option.
-t Specifies terminal type.
Supported term types are vt100, vt52, ansi and vtnt only.
host Specifies the hostname or IP address of the remote computer
to connect to.

port Specifies a port number or service name.

CLASS 3

The simplest use of telnet is to log into a remote computer. Give the
command:

C:/>telnet targetcomputer.com (substituting the name of the computer you want to telnet into for targetcomputer.com)

If this computer is set up to let people log into accounts, you may
get the message:

login:

Type your user name here, making sure to be exact. You can't swap between lower case and capital letters. For example, user name Guest is not the same as guest.

Then comes the message:

Password:

Again, be exact in typing in your password.

What if this doesn't work?

Every day people write to me complaining they can't telnet. That is
usually because they try to telnet into a computer, or a port on a
computer that is set up to refuse telnet connections. Here's what it
might look like when a computer refuses a telnet connection:

C:\ >telnet 10.0.0.3
Connecting To 10.0.0.3...Could not open connection to the host, on port 23. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.


CLASS 4

Or you might see:

C:\ >telnet techbroker.com
Connecting To techbroker.com...Could not open connection to the host, on port 23.
No connection could be made because the target machine actively
refused it.

If you just give the telnet command without giving a port number, it
will automatically try to connect on port 23, which sometimes runs a
telnet server.