Run stegexpose and capture output.
(image_path)
| 879 | |
| 880 | |
| 881 | def 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 | |
| 890 | def run_stegorat(file_path): |
nothing calls this directly
no test coverage detected