{"id":19045410,"url":"https://github.com/marirs/strings-rs","last_synced_at":"2026-02-12T01:34:30.255Z","repository":{"id":84061055,"uuid":"571649883","full_name":"marirs/strings-rs","owner":"marirs","description":"Extract static, stack, tight, decoded strings from a given file","archived":false,"fork":false,"pushed_at":"2024-10-16T07:20:21.000Z","size":5471,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-18T21:13:09.597Z","etag":null,"topics":["floss","rust","rust-crate","rust-lang","rust-library","strings"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marirs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-11-28T15:32:50.000Z","updated_at":"2024-10-16T07:20:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"bf490da4-b213-4bbe-a92c-4b7949c647d2","html_url":"https://github.com/marirs/strings-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marirs/strings-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marirs%2Fstrings-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marirs%2Fstrings-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marirs%2Fstrings-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marirs%2Fstrings-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marirs","download_url":"https://codeload.github.com/marirs/strings-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marirs%2Fstrings-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29352846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"ssl_error","status_checked_at":"2026-02-12T01:00:51.346Z","response_time":97,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["floss","rust","rust-crate","rust-lang","rust-library","strings"],"created_at":"2024-11-08T22:50:09.231Z","updated_at":"2026-02-12T01:34:30.241Z","avatar_url":"https://github.com/marirs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# STRINGS\n\nThis is a library to statically de-obufscate strings from malware binaries. It performs extraction of:\n- static strings: \"regular\" ASCII and UTF-16LE strings\n- stack strings: strings constructed on the stack at run-time\n- tight strings: special form of stack strings, decoded on the stack\n- decoded strings: strings decoded in a function\n\nThis is a rust port of the original Floss project initially written in python.\n[See original](https://github.com/mandiant/flare-floss).\n\nMost of the work is also guided by the [Goblin Project.](https://github.com/m4b/goblin)\n\n## USAGE\n```toml\n[dependencies]\nstrings = { git = \"https://github.com/marirs/strings-rs\", branch = \"master\" }\n```\nAnd\n\n```rust\nuse log::Level;\nuse simple_logger::init_with_level;\nuse floss::analyze;\nuse floss::results::{StaticString, StringOptions};\n\npub fn main(){\n    init_with_level(Level::Trace);\n    let signature_path = \"(embedded signatures)\";\n    let results = analyze(\"data/test-decode-to-stack.exe\", vec![StringOptions::StaticString(StaticString::default())], vec![], \"sc32\",signature_path, false);\n    println!(\"{:?}\", results);\n}\n```\n---\nLICENSE: Apache 2.0","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarirs%2Fstrings-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarirs%2Fstrings-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarirs%2Fstrings-rs/lists"}