{"id":24994366,"url":"https://github.com/marekaf/steghide","last_synced_at":"2025-06-10T23:40:06.660Z","repository":{"id":132553797,"uuid":"55865960","full_name":"marekaf/steghide","owner":"marekaf","description":"Steghide in docker container","archived":false,"fork":false,"pushed_at":"2016-05-08T23:12:36.000Z","size":7,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-10T06:53:26.364Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marekaf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2016-04-09T20:39:42.000Z","updated_at":"2023-06-06T20:48:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"f78f3b14-da64-4e9c-90e1-0584e2ef27b0","html_url":"https://github.com/marekaf/steghide","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marekaf%2Fsteghide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marekaf%2Fsteghide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marekaf%2Fsteghide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marekaf%2Fsteghide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marekaf","download_url":"https://codeload.github.com/marekaf/steghide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marekaf%2Fsteghide/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259172148,"owners_count":22816514,"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":[],"created_at":"2025-02-04T14:53:13.151Z","updated_at":"2025-06-10T23:40:06.650Z","avatar_url":"https://github.com/marekaf.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# steghide\n\nSteghide version 0.5.1 based od debian:jessie is a powerful steganography CLI tool.\n\n[![](https://imagelayers.io/badge/bartimar/steghide:latest.svg)](https://imagelayers.io/?images=bartimar/steghide:latest 'Get your own badge on imagelayers.io')\n\nuse steghide to embed a text file in your jpeg file\n\n```\ndocker run -it --rm -v \"$(pwd):/src\" bartimar/steghide \\\n embed -p 'secret-password' \\\n -cf /src/cvr.jpg -ef /src/emb.txt\n```\nor extract\n```\ndocker run -it --rm -v \"$(pwd):/src\" bartimar/steghide \\\n extract -sf /src/stg.jpg \\\n -p 'secret-password' \n```\n\nSee steghide manual\u003e\n\n```\ndocker run -it --rm -v \"$(pwd):/src\" bartimar/steghide \\\n --help\n```\n```\nsteghide version 0.5.1\nthe first argument must be one of the following:\n embed, --embed          embed data\n extract, --extract      extract data\n info, --info            display information about a cover- or stego-file\n   info \u003cfilename\u003e       display information about \u003cfilename\u003e\n encinfo, --encinfo      display a list of supported encryption algorithms\n version, --version      display version information\n license, --license      display steghide's license\n help, --help            display this usage information\n\nembedding options:\n -ef, --embedfile        select file to be embedded\n   -ef \u003cfilename\u003e        embed the file \u003cfilename\u003e\n -cf, --coverfile        select cover-file\n   -cf \u003cfilename\u003e        embed into the file \u003cfilename\u003e\n -p, --passphrase        specify passphrase\n   -p \u003cpassphrase\u003e       use \u003cpassphrase\u003e to embed data\n -sf, --stegofile        select stego file\n   -sf \u003cfilename\u003e        write result to \u003cfilename\u003e instead of cover-file\n -e, --encryption        select encryption parameters\n   -e \u003ca\u003e[\u003cm\u003e]|\u003cm\u003e[\u003ca\u003e]  specify an encryption algorithm and/or mode\n   -e none               do not encrypt data before embedding\n -z, --compress          compress data before embedding (default)\n   -z \u003cl\u003e                 using level \u003cl\u003e (1 best speed...9 best compression)\n -Z, --dontcompress      do not compress data before embedding\n -K, --nochecksum        do not embed crc32 checksum of embedded data\n -N, --dontembedname     do not embed the name of the original file\n -f, --force             overwrite existing files\n -q, --quiet             suppress information messages\n -v, --verbose           display detailed information\n\nextracting options:\n -sf, --stegofile        select stego file\n   -sf \u003cfilename\u003e        extract data from \u003cfilename\u003e\n -p, --passphrase        specify passphrase\n   -p \u003cpassphrase\u003e       use \u003cpassphrase\u003e to extract data\n -xf, --extractfile      select file name for extracted data\n   -xf \u003cfilename\u003e        write the extracted data to \u003cfilename\u003e\n -f, --force             overwrite existing files\n -q, --quiet             suppress information messages\n -v, --verbose           display detailed information\n\noptions for the info command:\n -p, --passphrase        specify passphrase\n   -p \u003cpassphrase\u003e       use \u003cpassphrase\u003e to get info about embedded data\n\nTo embed emb.txt in cvr.jpg: steghide embed -cf cvr.jpg -ef emb.txt\nTo extract embedded data from stg.jpg: steghide extract -sf stg.jpg\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarekaf%2Fsteghide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarekaf%2Fsteghide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarekaf%2Fsteghide/lists"}