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

  • bandwidthcrisis@lemmy.world
    link
    fedilink
    arrow-up
    19
    ·
    14 hours ago

    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
      link
      fedilink
      arrow-up
      8
      arrow-down
      1
      ·
      10 hours ago

      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"
      
      • bandwidthcrisis@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        8 hours ago

        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.