Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivision-research/wasamole
Wasamole is a tasty framework for WebAssembly Source Analysis: (WASA)-mole.
https://github.com/ivision-research/wasamole
assembler disassembler dynamic-analysis reverse-engineering static-analysis virtual-machine wasm
Last synced: about 1 month ago
JSON representation
Wasamole is a tasty framework for WebAssembly Source Analysis: (WASA)-mole.
- Host: GitHub
- URL: https://github.com/ivision-research/wasamole
- Owner: ivision-research
- License: mit
- Created: 2020-06-11T21:44:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-30T18:25:11.000Z (over 4 years ago)
- Last Synced: 2024-11-13T09:52:47.445Z (about 1 month ago)
- Topics: assembler, disassembler, dynamic-analysis, reverse-engineering, static-analysis, virtual-machine, wasm
- Language: Python
- Size: 21.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wasamole
_A tasty framework for WebAssembly Software Analysis_
## Description
Wasamole is a framework for analysing [WebAssembly](https://webassembly.github.io/spec/core/) programs. It is meant to provide:
1. A WASM disassembler.
2. A WASM assembler.
3. A WASM VM implementation.
4. A set of core modules to be used to build other WASM-based tools.## Development
When working on Wasamole please keep the following things in mind.
### Formatting
All code should be formatted with [black](https://github.com/psf/black). There is a `make` target for it:
`make format`
### Type Checking
All code should be type checked with [mypy](http://mypy-lang.org/). There is a `make` target for it:
`make typecheck`
### Testing
Run unit tests with:
`make test`