this post was submitted on 20 Apr 2024
0 points (NaN% liked)

linuxmemes

21103 readers
1686 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.

  • Please report posts and comments that break these rules!

    founded 1 year ago
    MODERATORS
     
    top 10 comments
    sorted by: hot top controversial new old
    [–] PhreakyByNature@feddit.uk 0 points 6 months ago (2 children)

    Anyone who has to use Windows and suffers this, PowerToys is your friend. Locksmith identifies what's locking your file and allows you to free it up. Dunno why PowerToys isn't bundled by default tbh.

    [–] ProfessorProteus@lemmy.world 1 points 6 months ago (1 children)

    Dunno why PowerToys isn't bundled by default tbh.

    PowerToys give the user more power, which goes directly against Microsoft's own goal.

    Also, less seriously, "toys" implies the user might enjoy the experience, and you know they can't let that happen.

    [–] alqloe@lemmy.dbzer0.com 0 points 6 months ago (1 children)

    Shut up. It is literally made by Microsoft. As a place to experiment what to include in Windows. Don't argue with strawmen

    [–] danc4498@lemmy.world 0 points 6 months ago (1 children)

    Shut up. I also think power toys that feature basic functionality and have been around for decades should be included in Windows. I can’t always install this on a computer that needs it.

    [–] Caboose12000@lemmy.world 1 points 6 months ago

    Shut up. I agree with you it should be included in windows, I just wanted to feel included

    [–] elvith@feddit.de 0 points 6 months ago (1 children)

    Also please pre-install the sysinternals suite, thanks

    [–] Omgboom@lemmy.zip 0 points 6 months ago (1 children)

    Psexec can be pretty dangerous. Psexec.exe -i -s gives you access to the NTAUTHORITY/SYSTEM account, which is higher than Administrator. One time at work I was trying to do something and was getting permission denied so I decided to use that to get around the problem, I got to spend the afternoon talking to our security administrator because he got a bunch of alerts from our antivirus.

    [–] elvith@feddit.de 0 points 6 months ago (1 children)

    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.

    [–] 0xD@infosec.pub 0 points 6 months ago* (last edited 6 months ago) (1 children)

    You need Administrative permissions for psexec. It uploads a file to the target computer's \admin$ share (just C:\Windows) and starts a service to execute it. Services run as SYSTEM so that's why you get those privileges.

    (Hah, I forgot your message while typing mine and just copied you :)

    Edit: fixed c$ to admin$

    [–] elvith@feddit.de 0 points 6 months ago* (last edited 6 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.