This repo contains the TypeScript bindings for creating scripts for artemis.
An in depth guide is documented at https://puffycid.github.io/artemis-api
- Install a text editor or IDE that supports TypeScript. Such as VSCodium or VSCode
- Create a TypeScript file (ex: main.ts)
- Import
artemis-api
into your project and start scripting!
Basic example
import { processListing } from "./artemis-api/mod";
function main() {
const md5 = true;
const sha1 = false;
const sha256 = false;
const binary_info = true;
const proc_list = processListing(md5, sha1, sha256, binary_info);
return proc_list;
}
main();