{"id":13799856,"url":"https://github.com/rarecoil/sinkdweller","last_synced_at":"2025-07-01T09:08:09.023Z","repository":{"id":34080441,"uuid":"169007963","full_name":"rarecoil/sinkdweller","owner":"rarecoil","description":"A TypeScript-based frontend to the radamsa fuzzer. No dependencies on most platforms.","archived":false,"fork":false,"pushed_at":"2023-01-03T16:18:40.000Z","size":2703,"stargazers_count":4,"open_issues_count":11,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-27T08:55:05.937Z","etag":null,"topics":["cygwin","fuzzing","node-fuzzer","nodejs","radamsa","typescript","windows"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rarecoil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-04T00:05:30.000Z","updated_at":"2022-02-23T01:40:55.000Z","dependencies_parsed_at":"2023-01-15T04:45:21.919Z","dependency_job_id":null,"html_url":"https://github.com/rarecoil/sinkdweller","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/rarecoil/sinkdweller","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rarecoil%2Fsinkdweller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rarecoil%2Fsinkdweller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rarecoil%2Fsinkdweller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rarecoil%2Fsinkdweller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rarecoil","download_url":"https://codeload.github.com/rarecoil/sinkdweller/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rarecoil%2Fsinkdweller/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262786619,"owners_count":23364148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cygwin","fuzzing","node-fuzzer","nodejs","radamsa","typescript","windows"],"created_at":"2024-08-04T00:01:06.664Z","updated_at":"2025-07-01T09:08:08.988Z","avatar_url":"https://github.com/rarecoil.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","Fuzzing"],"sub_categories":["DHCP"],"readme":"# sinkdweller\n\n[![Build Status](https://travis-ci.org/rarecoil/sinkdweller.svg?branch=master)](https://travis-ci.org/rarecoil/sinkdweller) [![Known Vulnerabilities](https://snyk.io/test/github/rarecoil/sinkdweller/badge.svg?targetFile=package.json)](https://snyk.io/test/github/rarecoil/sinkdweller?targetFile=package.json) [![Dependencies](https://david-dm.org/rarecoil/sinkdweller.svg)](https://david-dm.org/)\n\n### A simple Node/TypeScript wrapper for [radamsa](https://www.ee.oulu.fi/roles/ouspg/Radamsa).\n\nThe [radamsa](https://gitlab.com/akihe/radamsa) general purpose fuzzer is a common tool in security circles, named after a strange troll that lives under a sink in a Scandinavian children's story. Sinkdweller is a TypeScript class that wraps the Radamsa fuzzer. For convenience, this module contains statically-linked executables of the Radamsa fuzzer in `bin` for Windows, Linux x64, and macOS, although you do not have to use them if you do not trust them. The Cygwin build for Radamsa includes the Cygwin DLL, so Cygwin should no longer be required for radamsa to work on Windows.\n\nNote that this is still a rudimentary wrapper written quickly that relies on spawning radamsa in a child process. This will cause a significant performance impact in some cases with this process overhead. \n\n\n### Quickstart\n\nThe simplest example:\n\n````javascript\nconst Sinkdweller = require('sinkdweller');\n\nlet fuzzer = new Sinkdweller();\nlet data   = new Buffer.from('foo');\n\n// who knows what you'll get\nlet result = fuzzer.fuzzSync(data);\n````\n\n\nA slightly more complex variant:\n\n````javascript\nconst Sinkdweller = require('sinkdweller');\n\nlet fuzzer = new Sinkdweller();\nfuzzer.setSeed(() =\u003e {\n    // set a seed function that returns a value\n    return 3;\n});\n\nlet data   = new Buffer.from('foo');\nlet result = fuzzer.fuzzSync(data); // \"fono\"\n````\n\nSee `examples/` for some more examples, and the code at `src/Sinkdweller.ts` for full comments.\n\n### License\n\u0026copy; 2019 MIT.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frarecoil%2Fsinkdweller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frarecoil%2Fsinkdweller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frarecoil%2Fsinkdweller/lists"}