{"id":15552107,"url":"https://github.com/sonodima/aobscan-cli","last_synced_at":"2025-04-23T19:31:07.398Z","repository":{"id":62240385,"uuid":"559047343","full_name":"sonodima/aobscan-cli","owner":"sonodima","description":"AOBscan CLI is a command-line utility for multi-threaded AOB memory scanning","archived":false,"fork":false,"pushed_at":"2023-03-30T14:04:48.000Z","size":832,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T17:07:12.845Z","etag":null,"topics":["aob","cli","console","memory","pattern","scan","signature"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/sonodima.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":"2022-10-28T22:58:40.000Z","updated_at":"2024-06-20T13:15:05.000Z","dependencies_parsed_at":"2022-10-29T01:46:34.518Z","dependency_job_id":null,"html_url":"https://github.com/sonodima/aobscan-cli","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonodima%2Faobscan-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonodima%2Faobscan-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonodima%2Faobscan-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonodima%2Faobscan-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonodima","download_url":"https://codeload.github.com/sonodima/aobscan-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242211227,"owners_count":20090230,"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":["aob","cli","console","memory","pattern","scan","signature"],"created_at":"2024-10-02T14:09:13.017Z","updated_at":"2025-03-06T12:31:16.126Z","avatar_url":"https://github.com/sonodima.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eAOBscan CLI 🔩\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/sonodima/aobscan-cli/releases/latest\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/v/release/sonodima/aobscan-cli?color=pink\u0026label=latest\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/sonodima/aobscan-cli/actions?workflow=CI\"\u003e\n    \u003cimg src=\"https://github.com/sonodima/aobscan-cli/workflows/CI/badge.svg\"/\u003e\n  \u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\"/\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\n\n\u003e AOBscan CLI is a command-line utility for multi-threaded AOB memory scanning\n\u003e based on the [AOBscan](https://github.com/sonodima/aobscan) library.\n\n## Features\n\n- User-friendly CLI interface\n- Single-threaded and multi-threaded file scanning\n- IDA-style patterns: `48 8b ? ? ? 48 8c`\n- Raw hexadecimal strings: `488b??????00`\n- Scan for pattern in an object file section _(by name)_\n- FAT Mach-O binaries support\n\n## Usage\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./media/usage.gif\" alt=\"Sample GIF\" /\u003e\n\u003c/p\u003e\n\n- Scan for an IDA-style pattern in a file\n\n```sh\naobscan -f \"file\" -- \"48 8b ? ? ? ? ? 48 8c\"\n```\n\n- Scan for the first match of a raw hexadecimal string in the `__text` section of a file\n\n```sh\naobscan -f \"file\" -s \"__text\" -i -- \"488b??????00\"\n```\n\nSee `aobscan --help` for all the available arguments and their descriptions.\n\n## Installation\n\n### 🦀 Cargo (Windows/macOS/Linux)\n\nWho doesn't love Cargo? You can install **AOBscan CLI** with it, by running:\n\n```sh\ncargo install aobscan-cli\n```\n\nYou can now launch the program with the `aobscan-cli` command.\n\n### 🍺 Homebrew (macOS/Linux)\n\nThe easiest way to install **AOBscan CLI** is via [Homebrew](https://brew.sh/),\nusing [my TAP:](https://github.com/sonodima/homebrew-sonodima)\n\n```sh\nbrew tap sonodima/sonodima\nbrew install aobscan\n```\n\nYou can now launch the program with the `aobscan` command.\n\n### 📦 Pre-built Binaries\n\nBinaries for Windows, Linux and macOS are available on the\n[releases](https://github.com/sonodima/aobscan-cli/releases) page.\n\n### 🔩 From Source\n\n\u003e Rust is required to build from source. If you don't have it installed, you can\n\u003e install it using [rustup](https://rustup.rs/).\n\n```sh\ngit clone https://github.com/sonodima/aobscan-cli\ncd aobscan-cli\ncargo build --release\n```\n\nThe compiled binary will be located at `target/release/aobscan-cli`\n\n## Read More\n\nIf you are interested in benchmarks or learning more about AOB scanning,\ncheck out the [AOBscan](https://github.com/sonodima/aobscan) library,\nwhich is the core of this project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonodima%2Faobscan-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonodima%2Faobscan-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonodima%2Faobscan-cli/lists"}