[Guide]Way to Disable Keylogger/ Telemetry v3.55

Discussion in 'Windows 10' started by LiteOS, Oct 9, 2014.

Thread Status:
Not open for further replies.
  1. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    #261 murphy78, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    What about the single elevate line s1ave77 got me using lately:
    Code:
    powershell -command Start-Process '%0' -Verb runAs -ArgumentList '%* '
    can you work with that?
     
  2. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #262 Mr Jinje, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #263 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    Nice one .... :good3:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. KnowledgeableNewbie

    KnowledgeableNewbie MDL Member

    Sep 30, 2014
    178
    28
    10
    ok ran the PS script and got this message "File D:\Unzip1\Tracking 1.08\Tracking Wiz.ps1 cannot be loaded because the execution of scripts is disabled on this system." don't know anything about PS. is there a way to enable just for this script? btw, running on Win7 just to see what it does. gotta try a VM over the weekend.
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #265 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    In Powershell prompt:
    Code:
    Set-ExecutionPolicy RemoteSigned
    or

    from cmd (after navigating to directory with cd)
    Code:
    powershell -executionpolicy bypass -File "Tracking Wiz.ps1"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. KnowledgeableNewbie

    KnowledgeableNewbie MDL Member

    Sep 30, 2014
    178
    28
    10
    #266 KnowledgeableNewbie, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    thanks for the quick reply.
     
  7. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,710
    6,739
    270
    #267 EFA11, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
  8. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #268 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    We still need Mr Jinjes 'PS Fu' to get rid or that:



    Code:
    Set-Service : Service 'dmwappushsvc (dmwappushsvc)' cannot be configured due to the following error: Access is denied
    At C:\Users\s1ave77\Desktop\###.TELEMETRY.###\MrJinjes.telemetry.ps1:79 char:1
    + Set-Service dmwappushsvc -startupType disabled
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : PermissionDenied: (System.ServiceProcess.ServiceController:ServiceController) [Set-Servi
       ce], ServiceCommandException
        + FullyQualifiedErrorId : CouldNotSetService,Microsoft.PowerShell.Commands.SetServiceCommand

    While the first command is processed the second fails:

    Code:
    Set-Service DiagTrack -startupType disabled
    Set-Service dmwappushsvc -startupType disabled
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    I'm still trying to figure it out...
     
  10. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    Looks like they've give that service system privileges.

    Gimme a sec while I pull out regedit in a Windows 10 VM
     
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    That stone is rolling :good3:. Needs only some refinement.

    Will check out now ... see ya all later :rolleyes:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. KnowledgeableNewbie

    KnowledgeableNewbie MDL Member

    Sep 30, 2014
    178
    28
    10
    nice rewrite. see you solved the ::localhost problem. not a criticism, on my computer i'm going to edit to use numbers for menu choices. then i can rename to what ever i want ( i.e. (D)nable can be renamed Enable with no conflict). just a matter of astetics for me. i'm weird that way.
     
  13. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    OK after much digging.

    There is not clean way to do this.

    The DMWAPPUSHSVC is being run from the SVCHOST.exe in SYSTEM32 as a dll. This means the process is being executed as a system service. While being access from the network via netsvcs. I just tried to edit the required privileges without making a dent in it.
     
  14. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    #274 Smorgan, Oct 17, 2014
    Last edited: Oct 17, 2014
    I then tried the following:

    Set the privileges in the registry so I can do it.
    Set the permissions on svchost.exe
    Set the permissions on dmwappushsvc.exe
    Tried to do net stop...
    Tried to Log off while the service was disabled to restart the services.

    Can't stop it because its a remote network service.

    I think we found the logger ....

    I have no idea what they did but we're gonna have to use the registry edit then restart the explorer to make it all work.
     
  15. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
  16. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #277 Mr Jinje, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    Doing it my way, I get these privileges enabled

    vs as Administrator -- notice the SeImpersonatePrivilege, all admin's have this right. It's the reason we can "Impersonate a client after authentication"

     
  17. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    Very cool. Any idea how they steal the permissions from trustedinstaller with that runastokens thing?
     
  18. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    I'm on board with the gaining superuser over Windows because this is ridiculous.

    What will the impersonation app be limited in doing or will it be unlimited in terms of restoring justice? In making the administrators account be able to do just as much as the Trusted-installer?
     
  19. venu

    venu MDL Addicted

    Oct 16, 2009
    894
    100
    30
    I dont know whether this is relevant to your research but I've nuked both the services using Helge Klein's SetACL studio (free 30 day trial). No ill effects till now.