-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduced factor for more efficient use of CPU, reworked README
- Loading branch information
Athanasios Kostopoulos
committed
Oct 31, 2015
1 parent
47f0501
commit 6db3c9a
Showing
2 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
# delaporter | ||
[![Build Status](https://travis-ci.org/thanasisk/delaporter.svg?branch=master)](https://travis-ci.org/thanasisk/delaporter) | ||
~~this is not working atm - check back in a day or two :-)~~ | ||
|
||
This is a rudimentary SSH private key password recovery tool. It does not claim | ||
to be production quality, as the initial coding was done in a few hours. However, | ||
PRs/issues are more than welcome. | ||
|
||
BUGS: | ||
|
||
- ~~does not support DSA SSH keys~~ | ||
|
||
- ~~does not exit when a password is found (FIXED)~~ | ||
|
||
- ~~false positives (FIXED)~~ | ||
|
||
- code is slow (max I have seen is 4 cores in an 8-core machine) is it Go or my skills? | ||
|
||
This version introduces factor an integer variable (default value is 1). | ||
This directly influences the number of consumers (erroneously set initially to | ||
the number of cores per machine) using the formula factor * number of cores. | ||
In my 8-core machine, using a factor value of 512, saw 7 out of 8 cores being utilized. | ||
Feel free to experiment with this variable, as I do not have access to a lot of machines. | ||
Feedback welcome at [email protected], once I get access to more machines or | ||
get some feedback, I will try to deduct optimal values ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters