Live data from Hacker News

Saying “sup” with `net send`

drew.shoes

31–40 of 144 posts

Re: Saying “sup” with `net send`

#31
We used to do this in high school all the time.

The other thing we did was access network shares which you could see, but if you tried clicking them in explorer they'd say "access denied". The administrator apparently didn't lock things down very hard so a two-line .bat file:

  @echo off
  net use Z: \\administrators
Would get us access to all sorts of crazy stuff.

Re: Saying “sup” with `net send`

#32
When I was in college I realized that they hadn't disabled net send with wildcards on the CS computer network. We all had individual logins.

One day I walk into my lab class and see that a poor soul forgot to logout of his session. I'm sitting with my lab group and explain this "net send *" macro that would send a message to every single account on the system.

Another person in my group says "I'll do it." He types it in and presses enter.

We log out of the account, then log into one of our accounts, see the message, laugh and move on.

The next week, I get to my lab and this kid walks in and says to my lab group member sitting in front of the computer "Can I speak to you outside?"

He goes outside and we think nothing of it, but then I hear my lab partner outside the door say in a raised tone "Look, I have no idea what you're talking about! Goodbye!" and he comes storming back in.

This lab partner was absent the week before and didn't know what had transpired. We ask, "What did that guy want?" He says, "Some BS about how he thinks I sent a message through his account to everyone on the network because he forgot to logout last week and now he's in trouble with the CS department because they think he did it."

Our jaws dropped and I think if he had spoken to anyone else in the group we probably would have laughed and he would have known it was us right away. I still wonder how much trouble he got in on our behalf for embarrassing the CS IT department. Didn't seem like that big a deal to me.

Re: Saying “sup” with `net send`

#33
I was working a tech conference, probably around 2001, with about a hundred PCs networked together. A colleague of mine intended to send a simple "net send" message to only my workstation, just as a joke. He messed up the syntax and the popup appeared on every PC in the conference, including the giant screen in the main conference hall. The message: "Fuck you". He was fired the next day.

(Don't feel bad for the guy. Getting fired was the best thing that ever happened to him. He was a weekend "action photographer" [surf/skate/snowboard/...] who decided to go full-time after losing his job. He rode the early-2000s "extreme sports" wave and ended up being quite successful, and more importantly, much happier.)

Re: Saying “sup” with `net send`

#34
I did this prank, only it was more elaborate. We were in the lab, playing around with Windows NT (so all machines were set up with the same Administrator password), and one thing you could do, is to get a remote telnet, and `net send` to yourself, but on the remote machine, so the origin would basically be that person's machine, which makes it impossible to detect the actual sender.

Once the person was sufficiently annoyed, he disabled the Messenger service, but again, because all Administrator passwords were same, it was possible to just connect to the Services snap-in in Microsoft Management Console, and re-enable it, send the message, and immediately disable it, so once that person went to check - the service would be off...

In retrospect it was somewhat cruel, but oh well...

Re: Saying “sup” with `net send`

#36
It's fun to see how we had such similar experiences growing up. We pretty much did the same thing in high school with Net Send. Except we sent "All your base are belong to us" and then left the library computer lab in a real hurry once we saw the message go everywhere. Pretty sure it reached other schools too.

Re: Saying “sup” with `net send`

#37
At university, we had a whole IM network built around "write" on a multiuser *nix server (over the past 20+ years, the university netsoc has run services on freebsd, solaris and various flavours of Linux). We also had terminal based maps which would allow you to find friends based on the IP they logged in from.

See https://c-hey.redbrick.dcu.ie/ for the wrapper around write. These days students seem to prefer discord. :/

Re: Saying “sup” with `net send`

#39

We used to do this in high school all the time. The other thing we did was access network shares which you could see, but if you tried clicking them in explorer they'd say "access denied". The administrator apparently didn't lock things down very hard so a two-line .bat file: @echo off net use Z: \\administrators Would get us access to all sorts of crazy stuff.

We used to run executable versions of Quake and Tribes off the Administrative share. No need to install. Just run .exe and it threw you into the LAN game.

Re: Saying “sup” with `net send`

#40
many years ago I had a fortran class where our lab was a bunch of x-terminals connected to some old SunOS Sparc thing. all of the user sessions used ttys that for some reason were world writeable. anyone who has had the misfortune of writing fortran code will remember that its very column dependent. each line of code has to have certain elements lined up in the proper columns.

so, of course I wrote a little script that wrote a single space character to a random tty every so often. the character wouldn't be in the users source code but since it was shown on their terminal they would generally hit backspace to "fix" it which made the text on screen line up but misaligned the columns in their actual source file.

very few people got their assignments to compile

Post reply on HN