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

Function run_stegexpose

StegoScan.py:881–887  ·  view source on GitHub ↗

Run stegexpose and capture output.

(image_path)

Source from the content-addressed store, hash-verified

879
880
881def run_stegexpose(image_path):
882 """Run stegexpose and capture output."""
883 result = run_silent_command(f"stegexpose '{image_path}'")
884 if result:
885 prGreen("StegExpose Output:\n", result)
886 else:
887 prRed("StegExpose: No hidden data found or failed.")
888
889
890def run_stegorat(file_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