Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattnotmitt/libyara-wasm
PoC compilation of libyara into WASM, for potential future CyberChef integration
https://github.com/mattnotmitt/libyara-wasm
Last synced: about 2 months ago
JSON representation
PoC compilation of libyara into WASM, for potential future CyberChef integration
- Host: GitHub
- URL: https://github.com/mattnotmitt/libyara-wasm
- Owner: mattnotmitt
- License: isc
- Created: 2018-11-27T22:59:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-18T14:44:23.000Z (over 2 years ago)
- Last Synced: 2024-10-14T10:57:59.858Z (2 months ago)
- Language: C++
- Homepage:
- Size: 434 KB
- Stars: 12
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libyara-wasm
[![Build Status](https://github.com/mattnotmitt/libyara-wasm/workflows/Build%20%26%20Deploy/badge.svg)](https://github.com/mattnotmitt/libyara-wasm/actions?workflow=Build%20%26%20Deploy)WASM-based JS Library using a c++ wrapper around [libyara](https://github.com/virustotal/yara). Currently only exposes methods required by [CyberChef](https://github.com/gchq/CyberChef) but may potentially expose more in the future. No documentation at the moment.
## Build```sh
mkdir build && cd build
emconfigure cmake ..
emmake make -jx # where x is number of threads to build with
```