hashCat保存添加字段
Former-commit-id: 2825ee25444c73b858921076cd5260d2c151608a
This commit is contained in:
parent
28a661dc08
commit
42fc9e7f39
|
@ -564,6 +564,19 @@ type HashCat {
|
||||||
CrackResult string `json:"crackResult"` // 结果
|
CrackResult string `json:"crackResult"` // 结果
|
||||||
Started string `json:"started"` // 开始时间
|
Started string `json:"started"` // 开始时间
|
||||||
Stopped string `json:"stopped"` // 结束时间
|
Stopped string `json:"stopped"` // 结束时间
|
||||||
|
KernelFeature string `json:"kernelFeature"`
|
||||||
|
HashMode string `json:"hashMode"`
|
||||||
|
Rejected string `json:"rejected"`
|
||||||
|
Session string `json:"session"`
|
||||||
|
HashTarget string `json:"hashTarget"`
|
||||||
|
Speed string `json:"speed"`
|
||||||
|
Candidates string `json:"candidates"`
|
||||||
|
RestorePoint string `json:"restorePoint"`
|
||||||
|
Recovered string `json:"recovered"`
|
||||||
|
GuessQueue string `json:"guessQueue"`
|
||||||
|
CandidateEngine string `json:"candidateEngine"`
|
||||||
|
GuessMask string `json:"guessMask"`
|
||||||
|
RestoreSub string `json:"restoreSub"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type participantListResp {
|
type participantListResp {
|
||||||
|
|
|
@ -528,6 +528,19 @@ type HashCat struct {
|
||||||
CrackResult string `json:"crackResult"` // 结果
|
CrackResult string `json:"crackResult"` // 结果
|
||||||
Started string `json:"started"` // 开始时间
|
Started string `json:"started"` // 开始时间
|
||||||
Stopped string `json:"stopped"` // 结束时间
|
Stopped string `json:"stopped"` // 结束时间
|
||||||
|
KernelFeature string `json:"kernelFeature"`
|
||||||
|
HashMode string `json:"hashMode"`
|
||||||
|
Rejected string `json:"rejected"`
|
||||||
|
Session string `json:"session"`
|
||||||
|
HashTarget string `json:"hashTarget"`
|
||||||
|
Speed string `json:"speed"`
|
||||||
|
Candidates string `json:"candidates"`
|
||||||
|
RestorePoint string `json:"restorePoint"`
|
||||||
|
Recovered string `json:"recovered"`
|
||||||
|
GuessQueue string `json:"guessQueue"`
|
||||||
|
CandidateEngine string `json:"candidateEngine"`
|
||||||
|
GuessMask string `json:"guessMask"`
|
||||||
|
RestoreSub string `json:"restoreSub"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ParticipantListResp struct {
|
type ParticipantListResp struct {
|
||||||
|
|
Loading…
Reference in New Issue