Well, on another note, how would you use someones IP address to "hack" , "crack" , or whatever you want to dress it up and call it? How would I like make a box pop up saying: HAI!
NOTE: I don't want directions on how to, because I think that breaks a rule somewhere, I just want to know like: You put it into a command that does blank then you type in "HAI!" and bam!
I did that today at school. Net Send isn't hacking at all. It's a useful way to message people quickly on local networks, so lets just say we're not trying to do this at school. But some schools tell their students to use this..
net send * HAI!
That will tell everyone "Hai!", and will tell them which computer it was from. They will be able to check who was logged in at the time that message was sent, so don't do that, or you'll get in shit, and possibly expelled from certain schools. (They just don't like anybody messing around with command prompt.)
Write the code below in notepad, and save it as Messenger.bat
When you're done that, open it, and enter an IP address from someone else in the same local network, and a message. It didn't work with me at school when I tried it, so I did "*" for the user, and it successfully sent "Hi." to everyone in the "WorkGroup". I haven't gotten into any shit yet, so I don't think it displayed it to anyone lol..
@ echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Goto A
Goto control panel, click on administrative tools(switch to classic view) Then click on services. Find messenger service. Open it. You'll see startup type which would be disabled. So click on that and select manual. Now press the start button and apply. Do the same on the remote computer. Until this service is activated on that pc, you won't be able to use this.
Enter an IP address to send it to someone. To get the person's ip address, you do:
ipconfig
in command prompt on [b]their[b] computer. And it's there.
Use that, for "user:" and then whatever you want for "Message".
Post has been edited 2 time(s), last time on May 6 2008, 10:03 pm by Matt Burch.
None.