Run stegseek and capture output.
(image_path)
| 870 | |
| 871 | |
| 872 | def 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 | |
| 881 | def run_stegexpose(image_path): |
nothing calls this directly
no test coverage detected