• 3 Posts
  • 82 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle

  • If paying on a monthly basis, as soon as you pay for 12 consecutive months, you will receive this perpetual fallback license providing you with access to the exact product version for when your 12 consecutive months subscription started. You will receive perpetual fallback licenses for every version you’ve paid 12 consecutive months for.

    So, in your example, you unsubscribe in month 15. This means, you paid 14 months so you get to retain the version from month three (which is 12 full paid months to 14). This means a downgrade to 1.0.x and not to 1.2.x




  • elvith@feddit.detolinuxmemes@lemmy.worldmv Windows Linux
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    2 months ago

    I found a blog post outlining exactly that. If you use it locally, it will install and start a service temporarily. That service runs as SYSTEM and invokes your command. To succeed, you need to be a local administrator.

    If you try the same remote, it tries to access \\remote-server-ip\$admin and installs the service with that. To succeed your current account on your local machine must exist on the remote machine and must be an administrator there.

    So in short: It only works, if you’ve already the privilege to do so and the tool itself is not (ab)using a privilege escalation or something like that. Any hacker and virus may do the very same and doesn’t need psexec - it’s just easier for them to use that tool.


  • Never thought about that, but since these tools just work, when you copy them to your PC… how does psexec do that? It’d either need you to be an administrator (and then it’s not really a privilege escalation as you could have registered any program into the task scheduler or as a service to run as SYSTEM) or it’d need a delegate service, that should only be available when you use an installer - which again wasn’t was has been done when just copying the tool.





  • Congrats - Links Awakening is truly a masterpiece and yes, they really worked hard to get a whole Zelda onto the GB.

    I’ve never played a 3D Zelda before so I am looking forward to OoT

    In case you go the emulation route and don’t use the version on Nintendo Switch Online (or a virtual console version on older Nintendo consoles), you should also take a look at Ship Of Harkinian. They decompiled OoT and ported it to run natively on several platforms. In contrast to other versions, you can play it in wide-screen, with unlocked framerate (instead of 14-20fps of the original) and you can also enable several QoL features (everything optional). You only need to provide a ROM file, but in case you plan to go the emulation route, you’d need that anyways…



  • Windows doesn’t have sudo (not yet, at least) and privileges work a bit different as even as an administrator, you may not have full rights.

    To overcome that obstacle, you’d need to run a shell as an administrator (hold CTRL+Shift, then use the start menu entry or right-click it and select run as administrator).

    Next obstacle: We have a separate drive for each partition, but no root folder.

    If we assume we’re running on a laptop or PC with a single drive and a single partition*, then it’s just

    In cmd.exe:

    del /F /S C:\
    

    In Powershell:

    Remove-Item -Recurse -Force -Path C:\
    

    When you want to delete all (mounted) partitions/drives, you need to iterate over them. (Note that’s from the top of my head, didn’t check the script if it works).

    In cmd.exe:

    REM Not gonna do that, I'm no masochist
    

    In Powershell:

    Get-PSDrive -PSProvider FileSystem | Foreach-Object {
        Remove-Item -Recurse -Force -Path "$($_.Name):\"
    }
    

    Done. Mounting additional partitions before that is left as an exercise for the reader.

    *note that even a standard installation of windows creates 3 partitions. One for the bootloader, one for the recovery system and then the system drive. Only the latter is mounted and will be deleted by this. The other two will still be intact.


  • In theory there are unbeatable levels. With some updates Nintendo fixed glitches, hit boxes, etc. Usually, when you play a level that was uploaded on an older version of the game, you get the old behavior. But there was one update, which did not adhere to this, and which did cause some levels (designed with now fixed glitches) to be unbeatable now.

    But this project isn’t about beating all levels, it’s about beating all uncleared levels. Since those glitch levels probably were beaten before the patch OR you might be able to play them on an older version of the game (if the server allows it), these shouldn’t be a huge problem.



  • My newest vps runs with Caddy. Works like a charm. The downside was, that I didn’t think of the automatic certificate deployment when I set everything up and it wouldn’t come up a first when I only wanted to connect locally to it, as it tried to get a certificate but the challenge failed because I hadn’t the firewall open yet. But besides that it was very smooth so far.


  • Amazon Deep Glacier is a lot cheaper for storage (but expensive for retrieval).

    I use Archive Storage in Oracle Cloud S3 for my dr backups which is their equivalent of AWS deep glacier archive. It’s quite cheap, no restore fees, inbound traffic is free and outbound traffic is only paid, when you’re using more than 10TB per month. (Also first 10 GB of S3 storage is free)




  • elvith@feddit.detoSelfhosted@lemmy.worldSelf Hosting Fail
    link
    fedilink
    English
    arrow-up
    3
    ·
    4 months ago

    It’s not the most detailed thing, but I just use a free account on cron-job.org to send a head request every two minutes to a few services that are reachable from the internet (either just their homepage or some ping endpoint in the API) and then used the status page functionality to have a simple second status page on a third party server.

    You can do a bit more on their paid tier, but so far I didn’t need that.

    On the other hand, you could try if a free tier/cheap small vps on one of the many cloud providers is sufficient for an uptime Kuma installation. Just don’t use the same cloud provider as all other of your services run in.



  • No, it’s not „always up“.

    There are three main ways how Google, Bing,… can track you:

    1. When you’re doing a search while being logged in, it’s probably you
    2. If you’re not logged in, they can set a cookie to recognize you on your next visit (although they may not be able to link this to you, your email address,… but that’s not needed). They may mix your searches with those of the other users of your PC, when those are using the same PC, browser and account (e.g. if you have a family PC with a single windows/Linux account that everyone uses)
    3. Even if you’re not logged in and don’t accept / delete your cookies, they still see your IP. Depending on your ISP you might have the same Ip for a long time or you might have it rotated regularly. Now they could only track the searches of your household (assuming everyone isn’t logging in and deleting cookies immediately)

    With Searxng, they can only do the last variant. But assuming you use a “real” server in the internet (and not one at home), it will likely have the same IP for its lifetime. And if you’re using it alone, that’s the only thing they need to identify you and track your searches. The more other people use your instance, the less useful this kind of tracking gets. Too much noise to identify a single person.