CMD HACKING COMMANDS
First, open your Network Connection and right click and select Properties. Then Select TCP/IP and click on Properties again. Now Click on Advanced and WINS tab. Select Default for NeBIOS.
Now back to the main Local Area Connection window, select File and Print Sharing for Mic*ft Networks and hit enter.
This is just to make sure you have NetBIOS enabled. We will have some fun with NetBIOS on CMD.
First thing you need to know is some very helpfull commands to use on CMD(Command Prompt).
In case you don't know how to get CMD open in your box, then click on Start, then Run, then type "cmd" (no quotes, off course... you know the drill).
Back to commands:
Code:
Code:
nslookup net view net use net user ping tracert arp route nbtstat netstat ipconfig
Lets start easy...
1) ping : This command will allow you to know if the host you pinging is alive, which means if it is up at the time of executing the "ping" command.
Code:
Code:
ping x.x.x.x (x is the IP address)
Code:
ping www.whatever.com (www.whatever.com is the website you want to ping, but you don't know the IP)
2) nslookup : This command has many functionalities.
One is for resolving DNS into IP.
Lets say you know the website URL but you don't know its IP(and you want to find out).
nslookup www.whatever.com (www.whatever.com is the website you want to find out the IP)
Now, another really nice function of nslookup is to find out IP of specific Mail Severs.
Code:
Code:
nslookup (enter) set type=mx (enter) yahoo.com
OK, now why would you want to have an IP of a mail server?
To send spoofed mail to your friends or even for SE.
In case you looking for "How to spoof email", then look for my "How to spoof email tutorial"http://www.infowar.com/forums/showth...&threadid=2360
3) tracert : This command will give you the hops that a packet will travel to reach its final destination.
OBS: This command is good to know the route a packet takes before it goes to the target box.
Code:
Code:
tracert x.x.x.x (x is the IP address)
Code:
tracert www.whatever.com (www.whatever.com is the website you don't know the IP)
Code:
Code:
arp -a
Code:
Code:
route print
Your IP, gateway, dns in use.
Code:
Code:
ipconfig
Code:
Code:
ipconfig /all
Also, in case you have a dynamic IP and want to change it, then type...
Code:
Code:
ipconfig /release (this will release your IP) ipconfig /renew (this will renew your iP)
7) netstat : This command will show you connection to your box.
Code:
Code:
netstat
Code:
Code:
netstat -a (this will show you all the listening ports and connection with DNS names) netstat -n (this will show you all the open connection with IP addresses) netstat -an (this will combined both of the above)
Code:
Code:
nbtstat -A x.x.x.x (x is the IP address) nbtstat -a computername
Now some hints:
Code:
Code:
net use \ipaddressipc$ "" /user:administrator
Now if you want to connect to the target box and browse the entire C drive, then use this command:
Code:
Code:
net use K: \computernameC$
OBS: Keep in mind that this will only works if the target box doesn't have an administrator password set.
And least but not last, the "help" command.
Code:
Code:
whatevercommand /help
Code:
Code:
whatevercommand /?
Very useful if you know the command, but forgot the right switch.
1 comments:
Good day ! Do you happen to know how to check if your own content is exclusive in the Internet and no other person is it without your awareness?
Post a Comment