Fails to find seed if input is too large
- Lenguaje dominante
- C++
- Estrellas
- 390
- Forks
- 40
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.