-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Didn't work #1
Comments
Did you wait long enough? I suspect there a ^C that you didn't copy from your console. |
Saying "not working" I mean - not working! :) $ time ./crackvim test.txt real 0m0.001s $ strace ./crackvim test.txt |
Chudnovskiy, you need to add "-m32" to the gcc lines in your Makefile. At this point you'll need to "make clean" to clear things out, make the change, and re-compile. I had the same issue you did when I tried to compile on a 64-bit system, but the program had worked for me on a 32-bit system previously. Adding the "-m32" lines worked for me. |
yep, same problem as Chudnovskiy. And solution adding flag works at least for info. Waiting for decrypt my own file. |
~/crackvim-master$ make
gcc -g -c -o crackvim.o crackvim.c
gcc -c -o crc32.o crc32.c
gcc -c -o pkzip_crypto.o pkzip_crypto.c
gcc -g -o crackvim crackvim.o crc32.o pkzip_crypto.o
~/crackvim-master$ ./crackvim test.txt
loaded test.txt: 40 bytes
searching for ascii text files
using brute force
max password length: 6
charset: 0
The text was updated successfully, but these errors were encountered: