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.
- Host: GitHub
- URL: https://github.com/nerixyz/crashy
- Owner: Nerixyz
- Created: 2023-09-20T14:20:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-25T15:00:53.000Z (over 2 years ago)
- Last Synced: 2023-09-26T02:22:49.664Z (over 2 years ago)
- Topics: cpp, crash-reporting, windows
- Language: C++
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```