From 42fc9e7f396b374b4b0c1e88caed5c4bc88645a3 Mon Sep 17 00:00:00 2001 From: zhangwei <894646498@qq.com> Date: Thu, 14 Dec 2023 15:06:42 +0800 Subject: [PATCH] =?UTF-8?q?hashCat=E4=BF=9D=E5=AD=98=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 2825ee25444c73b858921076cd5260d2c151608a --- api/desc/core/pcm-core.api | 13 +++++++++++++ api/internal/types/types.go | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/api/desc/core/pcm-core.api b/api/desc/core/pcm-core.api index 266e58f2..7cb5b4e7 100644 --- a/api/desc/core/pcm-core.api +++ b/api/desc/core/pcm-core.api @@ -564,6 +564,19 @@ type HashCat { CrackResult string `json:"crackResult"` // 结果 Started string `json:"started"` // 开始时间 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 { diff --git a/api/internal/types/types.go b/api/internal/types/types.go index 931b2454..6ec3430b 100644 --- a/api/internal/types/types.go +++ b/api/internal/types/types.go @@ -528,6 +528,19 @@ type HashCat struct { CrackResult string `json:"crackResult"` // 结果 Started string `json:"started"` // 开始时间 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 {