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

https://github.com/nerixyz/crashy

A Windows CLI to crash other programs.
https://github.com/nerixyz/crashy

cpp crash-reporting windows

Last synced: about 1 month ago
JSON representation

A Windows CLI to crash other programs.

Awesome Lists containing this project

README

          

# Crashy

This is a simple app that can be used to crash other processes on Windows.
It's intended for debugging and generating crashdumps/minidumps (i.e. to be used on apps using breakpad or crashpad or similar).

Download the app and its payload from the [releases tab](https://github.com/Nerixyz/crashy/releases).

## Usage

```text
crashy.exe [-p ]
```

`` will default to `crashy-payload.dll` - the path is relative to the location of the executable.

## Building

A recent C++ compiler and CMake are required. This example uses `ninja` as the generator.

```text
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
cd build
ninja all
```