NTLM Performance Problem
#2
There are a few things going on here.

The very first thing i'd note would be the warnings/advice given when running a benchmark.
```

Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.

```
Benchmark, by default, uses the optimized kernels, which restrict the max candidate length in order to increase speed. You should most likely be using the optimized kernels for your attacks so I would start by adding -O to everything you are running. Only your "pure wordlist" attack has it in place.

Now, this may not help all that much, and that's totally fine in most of the above cases. Benchmarking is done with a full workload, single hash, optimized brute force. It's meant to indicate the absolute maximum speed you can achieve against 1 hash with a brute force mask of something like ?a?a?a?a?a?a?a?a?a. The speed at which candidates can be generated and loaded on the GPU under those conditions is significantly faster than in other attacks, such as dictionary attacks, where candidates have to be loaded from the dictionary instead of being generated on the GPU. Rules and other operations that do candidate generation/modification on the GPU instead of the host are very fast and can be used to increase the performance/speed of a running job if applied on top of a normal straight(dictionary) attack. Your attempts to increase work to get more performance are working, as you noted in the last attack, however it is not really reasonable to expect mask/benchmark speeds out of a hybrid or wordlist attack. If you run a simple mask attack, -a 3 ?a?a?a?a?a?a?a?a?a, and find that it shows roughly the same speed as your benchmark, then there shouldnt be any issues with your setup and it just comes down to optimizing your workload for the best possible performance.
Reply


Messages In This Thread
NTLM Performance Problem - by Sondero - 01-03-2020, 11:02 PM
RE: NTLM Performance Problem - by Chick3nman - 01-04-2020, 10:07 AM
RE: NTLM Performance Problem - by Sondero - 01-04-2020, 11:27 AM
RE: NTLM Performance Problem - by undeath - 01-04-2020, 12:56 PM
RE: NTLM Performance Problem - by Sondero - 01-04-2020, 03:50 PM
RE: NTLM Performance Problem - by Sondero - 01-04-2020, 05:22 PM
RE: NTLM Performance Problem - by Sondero - 02-29-2020, 07:17 PM
RE: NTLM Performance Problem - by Chick3nman - 02-29-2020, 08:07 PM