mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-06 04:41:00 +00:00
Merge pull request #461 from philsmd/master
skip periodic status updates in stdin+stdout mode to prevent output pollution
This commit is contained in:
commit
6f8d3d8432
@ -23,6 +23,7 @@
|
|||||||
- Slightly increased NVidias rule-processing performance by using generic instructions instead of byte_perm()
|
- Slightly increased NVidias rule-processing performance by using generic instructions instead of byte_perm()
|
||||||
- Add support for @ rule (RULE_OP_MANGLE_PURGECHAR) to use on GPU
|
- Add support for @ rule (RULE_OP_MANGLE_PURGECHAR) to use on GPU
|
||||||
- Add support for --outfile (short -o) to be used together with --stdout
|
- Add support for --outfile (short -o) to be used together with --stdout
|
||||||
|
- Skip periodic status output whenever --stdout is used together with stdin mode, but no outfile was specified
|
||||||
|
|
||||||
##
|
##
|
||||||
## Bugs
|
## Bugs
|
||||||
|
@ -7898,7 +7898,10 @@ int main (int argc, char **argv)
|
|||||||
|
|
||||||
if (wordlist_mode == WL_MODE_STDIN)
|
if (wordlist_mode == WL_MODE_STDIN)
|
||||||
{
|
{
|
||||||
status = 1;
|
// enable status (in stdin mode) whenever we do not use --stdout together with an outfile
|
||||||
|
|
||||||
|
if (stdout_flag == 0) status = 1;
|
||||||
|
else if (outfile != NULL) status = 1;
|
||||||
|
|
||||||
data.status = status;
|
data.status = status;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user