You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
was trying to run a test of this software but i keep getting ./mjolnir.sh: xrealloc: .././subst.c:5265: cannot allocate 1073741824 bytes (2147549184 bytes allocated).
I was using a 99GB TXT file to do the brute force attack and was wondreing if there was a work around or solution. Much apreciated.
The text was updated successfully, but these errors were encountered:
Using large wordlists is currently unsupported. The wordlist is read using cat, which I guess tries to read the entire file into memory. This is ok for small files, but gets a bit stupid when you start using large lists.
If you want to use a larger list, the code will need to be changed to allow for a file to be read in line-by-line, or some other sensible method.
Because the bruteforce process is really quite slow, it takes a long time to work through even small lists. I can't imagine how long it would take to work through a 99GB text file. This was the reason for 'botching' the file read with cat in the first place.
was trying to run a test of this software but i keep getting ./mjolnir.sh: xrealloc: .././subst.c:5265: cannot allocate 1073741824 bytes (2147549184 bytes allocated).
I was using a 99GB TXT file to do the brute force attack and was wondreing if there was a work around or solution. Much apreciated.
The text was updated successfully, but these errors were encountered: