Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shreyasminocha/gyan85
Tooling for pwn.college's yan85 architecture (emulator, {dis,}assembler)
https://github.com/shreyasminocha/gyan85
yan85
Last synced: about 1 month ago
JSON representation
Tooling for pwn.college's yan85 architecture (emulator, {dis,}assembler)
- Host: GitHub
- URL: https://github.com/shreyasminocha/gyan85
- Owner: shreyasminocha
- License: mit
- Created: 2023-03-19T21:01:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T16:00:40.000Z (6 months ago)
- Last Synced: 2024-10-14T12:14:04.289Z (3 months ago)
- Topics: yan85
- Language: Rust
- Homepage:
- Size: 239 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gyan85
Tooling for the [yan85](https://dojo.pwn.college/program-security/reverse-engineering) architecture from [pwn.college](https://pwn.college).
## Installation
No packages or binaries are currently available, but you can clone this repository and build with:
```sh
cargo build --release
```You can then use the binary at `./target/release/yan85`.
## Usage
gyan85's emulator and disassembler features operate on files that contain raw yan85 bytes.
Since opcodes change from level-to-level, gyan supports reading opcodes from a yaml file via the `-c` flag. See [`constants.yml`](constants.yml) for an example.
### Emulator
```sh
gyan85 -c 20.0.yml emu -d br20.0.bin
```### Disassembler
```sh
gyan85 -c 20.0.yml disasm br20.0.bin
```### Assembler
```sh
gyan85 -c 20.0.yml asm br20.0.asm br20.0.bin
```## License
[MIT license](./LICENSE).