Joe Testa

Results 33 issues of Joe Testa

Currently, the binary search during table lookups is done in the CPU. Investigate if doing this in the GPU is faster, and if so, update the lookup code to do...

The lookup code currently does not do any GWS optimization. See: https://github.com/jtesta/rainbowcrackalack/blob/cbf745288d75b55f0a5c3ec57b3a818f77e94b1b/crackalack_lookup.c#L589

Table generation can (in theory) be interrupted and resumed. The code was functioning in early alpha releases, but has not since been tested. A warning is issued to the user...

The global work size (GWS) parameter in OpenCL is used to tell a device how many pieces of work to do at a time. Tuning this parameter can result in...

The minimum key strength that is considered good should be 128 bits for symmetric algorithms, or its equivalent of 3072 bits for asymmetric algorithms. Currently, 2048-bits is acceptable.

Currently, the application icon for the Windows build is just a place-holder (see `windows_icon.ico`). It would be nice to replace it with permanent design. I'm not an artist, however. We...

help wanted

The project used to have testing done under Windows on [Appveyor](https://www.appveyor.com/docs/windows-images-software/) (see `.appveyor.yml` config file). It is currently disabled, however. It would be nice to get this functional again, as...

The docker tests do not currently perform client auditing tests. This would be great to have, though it would require building a new docker testing image.

Public key authentication doesn't divulge any useful information to an attacker, hence a true MITM can't be done. However, it is possible to intercept the connection and drop the victim...

enhancement

SSH MITM is currently based on OpenSSH 7.5p1. This was intentionally frozen due to the fact that several old algorithms were fully removed in 7.6 and later; these algorithms are...