mirror of
https://github.com/lunchcat/sif.git
synced 2026-08-02 08:47:38 -07:00
rename the go module path from github.com/dropalldatabases/sif to github.com/vmfunc/sif across go.mod, all imports, the golangci exclude list, release install docs and docs. pure string rename, no logic change.
49 lines
1.9 KiB
Go
49 lines
1.9 KiB
Go
/*
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
: :
|
|
: █▀ █ █▀▀ · Blazing-fast pentesting suite :
|
|
: ▄█ █ █▀ · BSD 3-Clause License :
|
|
: :
|
|
: (c) 2022-2026 vmfunc, xyzeva, :
|
|
: lunchcat alumni & contributors :
|
|
: :
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
*/
|
|
|
|
package format
|
|
|
|
import (
|
|
"github.com/vmfunc/sif/internal/styles"
|
|
nucleiout "github.com/projectdiscovery/nuclei/v3/pkg/output"
|
|
)
|
|
|
|
func FormatLine(event *nucleiout.ResultEvent) string {
|
|
line := event.TemplateID
|
|
|
|
if event.MatcherName != "" {
|
|
line += ":" + styles.Highlight.Render(event.MatcherName)
|
|
} else if event.ExtractorName != "" {
|
|
line += ":" + styles.Highlight.Render(event.ExtractorName)
|
|
}
|
|
|
|
line += " [" + event.Type + "]"
|
|
line += " [" + formatSeverity(event.Info.SeverityHolder.Severity.String()) + "]"
|
|
|
|
return line
|
|
}
|
|
|
|
func formatSeverity(severity string) string {
|
|
switch severity {
|
|
case "low":
|
|
return styles.SeverityLow.Render(severity)
|
|
case "medium":
|
|
return styles.SeverityMedium.Render(severity)
|
|
case "high":
|
|
return styles.SeverityHigh.Render(severity)
|
|
case "critical":
|
|
return styles.SeverityCritical.Render(severity)
|
|
default:
|
|
return severity
|
|
}
|
|
}
|