• arc
    link
    fedilink
    English
    arrow-up
    65
    arrow-down
    8
    ·
    11 months ago

    I wouldn’t trust anything from a P2P site that purports to be:

    1. A cracked game / application for desktop and mobile platforms. Maybe it’s legit but assume it is malware.
    2. A serial number generator. If you absolutely must run one of these do it from a throwaway VM, or via WINE emulation to mitigate what it might do.
    3. An encrypted archive with a README. It’s a scam designed to make people sign up to other scams to release a non-existent password.
    4. A movie / audio with an extension such as .scr, .wma, .com, .exe etc. It’s malware.

    Movies, audio & books are generally safe providing they use a recognized extension - mp3, mp4, pdf, mkv, aac, flac, epub etc. Stuff that runs under emulation like console games is generally safe. I say “generally” because an exploit could still be crafted to escape a popular media player or emulator and cause actual harm to your computer.

    All the ads and 3rd party scripts should be considered malicious too and should be erased with an adblocker, or even better use Tor.

    So basically use some common sense and if you really want some game or app, just buy the damned thing or wait for it to go on sale.

    • KubeRoot@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      23
      ·
      11 months ago

      WINE is not safe to run malware in, it’s not a secure sandbox. AFAIK, anything expecting it can do anything a Linux binary can. (Also, not an emulator, it’s in the original name - WINE Is Not an Emulator)

      • arc
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        4
        ·
        edit-2
        11 months ago

        I know what WINE is and the gist of “Wine is not an emulator”. I have used it extensively and for a while it even contained some of my code (not sure if it still does). But it is still emulating but not in the way people think. WINE is not emulating the operating system but it is emulating the interface that an executable interacts with Windows, aka the Win32 APIs and other DLLs.

        They even touch on this in their FAQ - *That said, Wine can be thought of as a Windows emulator in much the same way that Windows Vista can be thought of as a Windows XP emulator: both allow you to run the same applications by translating system calls in much the same way. Setting Wine to mimic Windows XP is not much different from setting Vista to launch an application in XP compatibility mode. *

        As far as a potentially malicious executable is concerned, you can create a throwaway wine folder to run the thing and delete it as soon as it is done, e.g.

        e.g.

        export WINEPREFIX=~/tmpwin
        winecfg
        # disable wininet from libraries tab, remove Z:, unlink all desktop integration folders
        wine keygen.exe
        # when done...
        rm -rf tmpwin
        

        It doesn’t matter if keygen.exe is evil because it can write anything it likes to the fake C: and the fake registry and it’s blown away. As a precaution disable networking so it can’t reach out either. In the extremely unlikely event that keygen.exe had code to detect it was running under WINE, it would still be subject to the permissions of the uid you had run it as, so you could take even more precautions if you felt so inclined. You could even use a dockerized WINE if you felt like it.

        • KubeRoot@discuss.tchncs.de
          link
          fedilink
          English
          arrow-up
          4
          ·
          11 months ago

          On the topic of whether or not it’s an emulator, sounds like semantics in the end - fair enough, I disagree but you make a fair point.

          That said, in terms of security I think it’s very important to point it out that it isn’t any more secure than running a random Linux executable. In my view, the original comment is advocating for running unknown executables under wine as a security measure, and the further argument is that it’s more secure because most attacks don’t target that.

          Sounds like if people rely on that for security, malware will just start targeting that after people get used to assuming it’s safe.

          • arc
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            11 months ago

            I doubt many people are ever going to do what I suggested so the effort / payoff for malware writers makes it very unlikely they’d bother. They’ll just assume 99.999% of people running the binary are doing so on Windows and code accordingly. Of course anything is theoretically possible.

      • arc
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        3
        ·
        11 months ago

        Read their own FAQ. It’s not an emulator in the classic sense of emulating the OS. It is however emulating the API of Windows. I quoted the pertinent line of the FAQ elsewhere and made my point clearer

        • arc
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          2
          ·
          edit-2
          11 months ago

          Not sure what the thumbs down is about. It’s right there in their own FAQ.

          In fact it ends by saying - “Wine is not just an emulator” is more accurate.

          • nevalem@programming.dev
            link
            fedilink
            English
            arrow-up
            4
            ·
            11 months ago

            There is a storied history in computing to use tongue in cheek self referential acronyms to denote some humor and finality in distinguishing things that purposely fill a niche in the world of competing, often pricey, commercial software and other hackable reasons.

            So I bet you’re rubbing wrong those of us who remember that gnu is not unix, and more specifically wine is not an emulator. Because they really aren’t.

    • Fylkir@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      11 months ago
      1. You could trivially verify an emulated game with a checksum

      2. If a game is released on GOG, there are Checksums that are hidden from the user. GOG games are DRM-free, so there’s no reason anyone would modify the installer.

    • SokathHisEyesOpen@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      11 months ago

      Are cracked games no good anymore? You used to be able to get just about any cracked game back in the day. Sure, some of them might be malware, but it was easy to find one that wasn’t.