Skip to content

Commit

Permalink
fixing tooler bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmcatee committed Oct 2, 2019
1 parent e4a4da7 commit 3ae13dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/tools/hashcat5/tooler.go
Original file line number Diff line number Diff line change
Expand Up @@ -826,10 +826,10 @@ func (h *hashcat5Tooler) NewTask(job common.Job) (common.Tasker, error) {

// Setup the show command for the showPot execution
leftFilePath := filepath.Join(t.wd, ConstHashcatLeftFilename)
t.showPotLeft = append(t.showPot, "--outfile", leftFilePath, "--left", ConstUserHashesFilename)
t.showPotLeft = append(t.showPot, "--outfile", leftFilePath, "--left", hashFilePath)

showPotFilePath := filepath.Join(t.wd, ConstHashcatPotShowFilename)
t.showPot = append(t.showPot, "--outfile", showPotFilePath, "--show", ConstUserHashesFilename)
t.showPot = append(t.showPot, "--outfile", showPotFilePath, "--show", hashFilePath)

// Append the various inputs to the argument
args = append(args, opts...)
Expand Down

0 comments on commit 3ae13dc

Please sign in to comment.