Va5c0 / Steghide-Brute-Force-Tool

Execute a brute force attack with Steghide to file with hide information and password established
GNU General Public License v3.0
115 stars 52 forks source link

No module named 'progressbar' #2

Open DanielL99 opened 7 years ago

DanielL99 commented 7 years ago

I've tried to use your code on and get this error:

root@kali:~/Steghide-Brute-Force-Tool# python steg-brute.py -h Traceball (most recent call last): File "steg_brute.py", line 4 in from progressbar import ProgressBar, Percentage, Bar ImportError: No module named 'progressbar'

Va5c0 commented 7 years ago

Hi Daniel, install progressbar module with pip: pip install progressbar.

DanielL99 commented 7 years ago

Wow, thanks

ph3n0m79 commented 5 years ago

I am having a similar issue. However, I installed progress bar with both pip and pip3. The script then throws another error (below): Traceback (most recent call last): File "steg_brute.py", line 123, in main() File "steg_brute.py", line 116, in main Steg_brute(args.file, args.dicc) File "steg_brute.py", line 51, in Steg_brute pbar = progressbar(widgets=[Percentage(), Bar()], maxval=nlines).start() TypeError: 'module' object is not callable

I did look on line 51 and changed it from ProgressBar(widgets.... to progressbar(widgets... But there is still something not working properly. Any hints?

0n1cOn3 commented 3 years ago

Use Python2 and pip2 to install the depencies. This resolves this issue