Thread: Net Send

  1. #16
    napKINfolk.com napkin111's Avatar
    Join Date
    Apr 2002
    Posts
    310
    lol, I just discovered this marvel (netsend) last week in school and I was randomly sending "Raise your hand, I'm trying to see if there is any structure to the way they set up this network." I got a bunch of people to raise their hands, and it was totally random...it was like "BHS5219" and "BHS5220" were way across the room...the people who set up this network had no particular setup in mind...
    Oh yeah then I sent my teacher "Follow the white rabbit...", then it popped up on the over head, and the whole class was like "what does that mean Mrs. Campbell?" So she got out a pad of stick-its and wrote down who it was to and from, then put the pad on the projector. A friend had to go through some stealthy manuvers to get to it, then he whipped it across the room while her back was turned, I caught it, ripped off the top paper, then whipped it back. Mission accomplished! I guess she just totally forgot about it...
    Um...anyway , I wanna know how to stop these stoopid net sends that always pop up on my computer. I've been getting alot of lap dance and penis enlagement offers lately

    [edit] changed some stuff so this made more sense...[/edit]

    //napKIN
    "The best way to get answers is to just keep working the problem, recognizing when you are stalled, and directing the search pattern.....Don’t just wait for The Right Thing to strike you – try everything you think might even be in the right direction, so you can collect clues about the nature of the problem."
    -John Carmack

  2. #17
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331

  3. #18
    Registered User
    Join Date
    May 2003
    Posts
    67
    net stop messenger
    or
    net messenger stop
    one of the 2

  4. #19
    Registered User Xei's Avatar
    Join Date
    May 2002
    Posts
    719
    Yea, its the Messenger service. Since Microsoft has found out that Netsend is now more trouble than it's worth since brain-dead losers create companies to spam people with it, that they have disabled it on new versions of Windows by default.
    "What are you after - the vague post of the week award?" - Salem
    IPv6 Ready.
    Travel the world, meet interesting people...kill them.
    Trying to fix or change something, only guaruntees and perpetuates its existence.
    I don't know about angels, but it is fear that gives men wings.
    The problem with wanting something is the fear of losing it, or never having it. The thought makes you weak.

    E-Mail Xei

  5. #20
    Addicted to the Internet netboy's Avatar
    Join Date
    Dec 2001
    Posts
    158
    Err... I'm not very familiar with networking. Can anyone tell me what's port 139 about? Why can't it be 129 or 101 etc.?
    It's unfulfilled dreams that keep you alive.

    //netboy

  6. #21
    Wen Resu
    Join Date
    May 2003
    Posts
    219
    Ok net send works two ways
    NetBEUI style.
    net send LAB203-31 at my school would sent to to room 203 computer 31, due to our naming conventions.
    NetBEUI 192.168.x.x will send to the IP
    net send * just sends to everyone at once. Broadcasts the message. Max of 128 characters.

    fun is making an app that does
    system("Net Send * Hello and Welcome to SPAM, please disable your novel POS Server "); in an infinity loops

  7. #22
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    >>net send * just sends to everyone at once. Broadcasts the message. Max of 128 characters.


    [bart simpson]
    Why am i jus learning this NOW??
    [/bart simpson]

    Wouldnt the program, as written, send to you as well?

  8. #23
    Me -=SoKrA=-'s Avatar
    Join Date
    Oct 2002
    Location
    Europe
    Posts
    448
    Originally posted by RoD

    Wouldnt the program, as written, send to you as well?
    No, I think it takes your computer (or name) off the network when it´s sent. I tried that an it said the name was no longer avaliable.
    But if you send it only to yorself it doesn´t. Strange.
    Anyway, sending it with * will only send it to your workgroup, probably to avoid sending it to every single computer running Windows and connected to the internet on the world.
    One of my friends did a net send * at school. They send a letter home but he ripped it when he got home.
    SoKrA-BTS "Judge not the program I made, but the one I've yet to code"
    I say what I say, I mean what I mean.
    IDE: emacs + make + gcc and proud of it.

  9. #24
    Wen Resu
    Join Date
    May 2003
    Posts
    219
    just be smart a run it on some one elses puter
    anyway it sends it to everyone within your workgroup, including yourself..

  10. #25
    Banal internet user
    Join Date
    Aug 2002
    Posts
    1,380
    [batch file]
    :top
    net send * "For your convenience, the time is now %time%... thank you."
    goto top
    [/batch file]

    Though you may want to stop your local messenger service first

    And if you want to be a real $$$$$, and you know computer names on your network....

    "shutdown -r -m \\computername -t 1 -f"... guess what that does?

  11. #26
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    ::foaming at the mouth:: dammit why did they have to disable command prompt!!

    Can u shutdown by username?

  12. #27
    Banal internet user
    Join Date
    Aug 2002
    Posts
    1,380
    no only computers on your workgroup, and you have to specify a computername

    no command prompt? aww, that's no fun

    my school learned the importance of not keeping their webserver on the same workgroup as the computer lab this way

  13. #28
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    im trying to edit my prog so that the user entered string is the message, but the command is literal....

    Code:
    #include "stdafx.h"
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    using namespace std;
    
    
    int main(int argc, char* argv[])
    {
    	string spam;
    	
    	cout << "Hello and welcome to Net!"
    		 << endl;
    	cout << endl;
    
    	cout << "Enter the message to send (max of 128 char): ";
    	cin >> spam;
    
    	bool done = false;
    
    	while (done != true)
    	{
    		//see after the * we would want the spam
    		//variable, but by this time the whole line
    		//in the system command is literal and is used
    		//as is. system also does not take two parameters...
    		system("Net Send * "); 
    		
    		//So it doesnt infy during testing
    		done = true;
    	}
    
    	return 0;
    }

  14. #29
    Banal internet user
    Join Date
    Aug 2002
    Posts
    1,380
    Why not be simple and just do a batch file with an argument like...

    [spam.bat]
    @ECHO OFF
    :top
    net send * %1
    goto top
    [/spam.bat]

    Then you can just do - ' spam "my message" '
    Last edited by BMJ; 05-26-2003 at 05:10 PM.

  15. #30
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    dont know batch files and what not, trying to find a way around my wall

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. pointers
    By InvariantLoop in forum C Programming
    Replies: 13
    Last Post: 02-04-2005, 09:32 AM
  2. changing from name in net send command
    By cfrost in forum Networking/Device Communication
    Replies: 8
    Last Post: 05-04-2004, 07:42 PM
  3. NetBIOS net send
    By -=SoKrA=- in forum Windows Programming
    Replies: 1
    Last Post: 01-22-2004, 10:21 PM
  4. net send messenger
    By Locrieth in forum C++ Programming
    Replies: 13
    Last Post: 01-31-2003, 02:39 PM
  5. Net Send Programs
    By Unregistered in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 05-15-2002, 03:48 PM