{"id":23419370,"url":"https://github.com/bannsec/stegoveritas","last_synced_at":"2025-04-12T23:34:29.867Z","repository":{"id":36153037,"uuid":"40457073","full_name":"bannsec/stegoVeritas","owner":"bannsec","description":"Yet another Stego Tool","archived":false,"fork":false,"pushed_at":"2023-07-03T23:15:06.000Z","size":2371,"stargazers_count":377,"open_issues_count":4,"forks_count":38,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-12T23:34:21.841Z","etag":null,"topics":["python3","steganography","stego"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bannsec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-08-10T01:30:44.000Z","updated_at":"2025-04-10T20:41:40.000Z","dependencies_parsed_at":"2023-10-20T18:17:35.281Z","dependency_job_id":null,"html_url":"https://github.com/bannsec/stegoVeritas","commit_stats":{"total_commits":134,"total_committers":14,"mean_commits":9.571428571428571,"dds":"0.12686567164179108","last_synced_commit":"678aa853b75b4a04f902c7f9fbea6ac30bf2af49"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bannsec%2FstegoVeritas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bannsec%2FstegoVeritas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bannsec%2FstegoVeritas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bannsec%2FstegoVeritas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bannsec","download_url":"https://codeload.github.com/bannsec/stegoVeritas/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248647259,"owners_count":21139081,"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":["python3","steganography","stego"],"created_at":"2024-12-23T01:17:49.726Z","updated_at":"2025-04-12T23:34:29.833Z","avatar_url":"https://github.com/bannsec.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Unit Tests](https://github.com/bannsec/stegoVeritas/actions/workflows/unit_tests.yml/badge.svg)](https://github.com/bannsec/stegoVeritas/actions/workflows/unit_tests.yml)\n[![PyPI Statistics](https://img.shields.io/pypi/dm/stegoveritas.svg)](https://pypistats.org/packages/stegoveritas)\n[![Latest Release](https://img.shields.io/pypi/v/stegoveritas.svg)](https://pypi.python.org/pypi/stegoveritas/)\n\n# StegoVeritas\nYet another Stego Tool\n\n# Quick Start\n\n## Install\n\n### Option 1 -- pip\n\n```bash\n$ pip3 install stegoveritas\n$ stegoveritas_install_deps\n```\n\n`stegoveritas_install_deps` currently supports: ubuntu, debian, kali, parrotOS, fedora, archlinux and MacOS.\n\n### Option 2 -- docker\n\n```bash\n$ sudo docker run -it --rm bannsec/stegoveritas\n```\n\n### Option 3 -- [BlackArch](https://blackarch.org/)\n\n```bash\n$ sudo pacman -S stegoveritas\n```\n\n[PKGBUILD](https://github.com/BlackArch/blackarch/blob/master/packages/stegoveritas/PKGBUILD)\n\n## Running\nStegoVeritas has default actions for most image types (gif,jpeg,png,tiff,bmp)\nand will attempt to run on __any__ file.\n\n`stegoveritas \u003cfile\u003e`\n\nIf you want to do something specific, you can check out the help:\n\n```\nstegoveritas -h\nusage: stegoveritas [-h] [-out dir] [-debug] [-password PASSWORD]\n                    [-wordlist WORDLIST] [-meta] [-imageTransform]\n                    [-bruteLSB] [-colorMap [N [N ...]]]\n                    [-colorMapRange Start End] [-extractLSB]\n                    [-red index [index ...]] [-green index [index ...]]\n                    [-blue index [index ...]] [-alpha index [index ...]]\n                    [-extract_frames] [-trailing] [-steghide] [-exif]\n                    [-xmp] [-carve] [-steghide]\n                    file\n\nYet another Stego tool\n\npositional arguments:\n  file                  The file to analyze\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -out dir              Directory to place output in. Defaults to ./results\n  -debug                Enable debugging logging.\n  -password PASSWORD    When applicable, attempt to use this password to\n                        extract data.\n  -wordlist WORDLIST    When applicable, attempt to brute force with this\n                        wordlist.\n\nimage options:\n  -meta                 Check file for metadata information\n  -imageTransform       Perform various image transformations on the input\n                        image and save them to the output directory\n  -bruteLSB             Attempt to brute force any LSB related steganography.\n  -colorMap [N [N ...]]\n                        Analyze a color map. Optional arguments are colormap\n                        indexes to save while searching\n  -colorMapRange Start End\n                        Analyze a color map. Same as colorMap but implies a\n                        range of colorMap values to keep\n  -extractLSB           Extract a specific LSB RGB from the image. Use with\n                        -red, -green, -blue, and -alpha\n  -red index [index ...]\n  -green index [index ...]\n  -blue index [index ...]\n  -alpha index [index ...]\n  -extract_frames       Split up an animated gif into individual frames.\n  -trailing             Check for trailing data on the given file\n  -steghide             Check for StegHide hidden info.\n\nmulti options:\n  -exif                 Check this file for exif information.\n  -xmp                  Check this file for XMP information.\n  -carve                Attempt to carve/extract things from this file.\n\nHave a good example? Wish it did something more? Submit a ticket:\nhttps://github.com/bannsec/stegoVeritas\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbannsec%2Fstegoveritas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbannsec%2Fstegoveritas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbannsec%2Fstegoveritas/lists"}