Skip to content

Instantly share code, notes, and snippets.

@JuliusCesar23
Last active March 16, 2022 13:07
Show Gist options
  • Save JuliusCesar23/9c016570ebfb05971948b1b3185c84c1 to your computer and use it in GitHub Desktop.
Save JuliusCesar23/9c016570ebfb05971948b1b3185c84c1 to your computer and use it in GitHub Desktop.
Remove proxy virus from windows proxy 127.0.0.1:86
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\S-1-5-18\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\#############\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxySettingsPerUser"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Control Panel]
"ProxySettingsPerUser"=dword:00000000
@JuliusCesar23
Copy link
Author

change ### for the value of wmic useraccount where name='%username%' get sid | findstr "S-"
(Your user sid)
Reg file not mine i found it on a microsoft page i added the command to get the sid easier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment