this post was submitted on 18 Oct 2025
68 points (97.2% liked)

Asklemmy

50958 readers
516 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 6 years ago
MODERATORS
 

I have somehow found myself doing a lighthearted talk on retro hacking this Wednesday. Would anyone here happen to know anything about it?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] bandwidthcrisis@lemmy.world 19 points 3 days ago (1 children)

Not really hacking, but in the 90s you could usually just connect to a mail server and it would believe what you told it.

If you were careful you could just type an email directly: MAIL FROM, RCPT TO, etc.

I would write scripts at work to send spoof emails sometimes, you could put anything as the FROM address, like "info @ catfacts" or whatever.

Another "not really hacking" example is that when some companies first got an Internet connection, they would just allocate public IP addresses to everyone, no gateway or firewall. So you could browse any non-passworded smb shares just knowing the IP.

[โ€“] whoisearth@lemmy.ca 8 points 3 days ago (1 children)

It's not hacking. Most languages have the ability to send mail from any mail address. Poweshell example -

Send-MailMessage -from bill.gates@microsoft.com -to you@yourmail.com -subject "fuck you" -body "no really fuck you"

My point was really how there was little to no verification on SMTP servers back then and that you could send mail with a simple terminal program, or, more practically, a script.

Not hacking, but using knowledge of the insecurity of SMTP servers of the time, to allow spoofing easy spoofing.

Not so easy to find SMTP servers to do that with now.