We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you generate input files that are too large, then the application fails to find the seed.
untwister -g 123456 -D 50 > seed_123456_50.txt untwister -i seed_123456_50.txt -b -S 200000
will find the seed reasonably quickly.
untwister -i seed_123456_50.txt -b -S 200000 [*] Skipping inference attack... [*] Looking for seed using glibc-rand [*] Spawning 4 worker thread(s) ... [*] Completed in 0 second(s) [$] Found seed 123456 with a confidence of 100.00%
However
untwister -g 123456 -D 20000 > seed_123456_20000.txt untwister -i seed_123456_20000.txt -b -S 200000 [*] Skipping inference attack... [*] Looking for seed using glibc-rand [*] Spawning 4 worker thread(s) ... [*] Completed in 1 second(s)
fails to find the seed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you generate input files that are too large, then the application fails to find the seed.
will find the seed reasonably quickly.
However
fails to find the seed.
The text was updated successfully, but these errors were encountered: