MCPcopy Create free account
hub / github.com/LCBOWER33/StegoScan / run_stegseek

Function run_stegseek

StegoScan.py:872–878  ·  view source on GitHub ↗

Run stegseek and capture output.

(image_path)

Source from the content-addressed store, hash-verified

870
871
872def run_stegseek(image_path):
873 """Run stegseek and capture output."""
874 result = run_silent_command(f"stegseek '{image_path}'")
875 if result:
876 prGreen("StegSeek Output:\n", result)
877 else:
878 prRed("StegSeek: No hidden data found or failed.")
879
880
881def run_stegexpose(image_path):

Callers

nothing calls this directly

Calls 3

run_silent_commandFunction · 0.85
prGreenFunction · 0.85
prRedFunction · 0.85

Tested by

no test coverage detected