@@ -724,13 +724,20 @@ func displaySecret(secret Secret) {
724724 confidenceColor = RedColor
725725 }
726726
727- fmt .Printf ("\n %sFile:%s %s\n " , YellowColor , ResetColor , secret .File )
727+ fmt .Printf ("\n %s───────────────────────────────────────────────────────%s\n " , YellowColor , ResetColor )
728+ fmt .Printf ("%sFile:%s %s\n " , YellowColor , ResetColor , secret .File )
728729 fmt .Printf ("%sLine Number:%s %d\n " , YellowColor , ResetColor , secret .LineNumber )
729730 fmt .Printf ("%sConfidence:%s %s%s%s (Entropy: %.2f)\n " ,
730731 YellowColor , ResetColor , confidenceColor , strings .ToUpper (secret .Confidence ), ResetColor , secret .Entropy )
731732 fmt .Printf ("%sContext:%s %s\n " , YellowColor , ResetColor , secret .Context )
732733 fmt .Printf ("%sPattern:%s %s\n " , YellowColor , ResetColor , secret .Type )
733734 fmt .Printf ("%sLine:%s %s\n " , YellowColor , ResetColor , secret .Line )
735+ if secret .Verified {
736+ fmt .Printf ("%sVerified:%s YES (LLM)\n " , YellowColor , ResetColor )
737+ }
738+ if secret .VerificationReason != "" {
739+ fmt .Printf ("%sReason:%s %s\n " , YellowColor , ResetColor , secret .VerificationReason )
740+ }
734741}
735742
736743func maybeRedactSecret (s Secret , redact bool ) Secret {
0 commit comments