mirror of
https://github.com/lunchcat/sif.git
synced 2026-01-17 15:22:41 -08:00
- Add output package with colored prefixes and module loggers - Each module gets unique background color based on name hash - Add spinner for indeterminate operations - Add progress bar for known-count operations - Update all scan files to use ModuleLogger pattern - Add clean PrintSummary for scan completion
149 lines
4.2 KiB
Go
149 lines
4.2 KiB
Go
/*
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
: :
|
|
: █▀ █ █▀▀ · Blazing-fast pentesting suite :
|
|
: ▄█ █ █▀ · BSD 3-Clause License :
|
|
: :
|
|
: (c) 2022-2025 vmfunc (Celeste Hickenlooper), xyzeva, :
|
|
: lunchcat alumni & contributors :
|
|
: :
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
*/
|
|
|
|
package js
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
"net/http"
|
|
"slices"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/antchfx/htmlquery"
|
|
charmlog "github.com/charmbracelet/log"
|
|
"github.com/dropalldatabases/sif/internal/output"
|
|
"github.com/dropalldatabases/sif/internal/scan/js/frameworks"
|
|
urlutil "github.com/projectdiscovery/utils/url"
|
|
)
|
|
|
|
type JavascriptScanResult struct {
|
|
SupabaseResults []supabaseScanResult `json:"supabase_results"`
|
|
FoundEnvironmentVars map[string]string `json:"environment_variables"`
|
|
}
|
|
|
|
// ResultType implements the ScanResult interface.
|
|
func (r *JavascriptScanResult) ResultType() string { return "js" }
|
|
|
|
func JavascriptScan(url string, timeout time.Duration, threads int, logdir string) (*JavascriptScanResult, error) {
|
|
log := output.Module("JS")
|
|
log.Start()
|
|
|
|
spin := output.NewSpinner("Scanning JavaScript files")
|
|
spin.Start()
|
|
|
|
baseUrl, err := urlutil.Parse(url)
|
|
if err != nil {
|
|
spin.Stop()
|
|
return nil, err
|
|
}
|
|
resp, err := http.Get(url)
|
|
if err != nil {
|
|
spin.Stop()
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
var sb strings.Builder
|
|
scanner := bufio.NewScanner(resp.Body)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
sb.WriteString(scanner.Text())
|
|
}
|
|
html := sb.String()
|
|
|
|
doc, err := htmlquery.Parse(strings.NewReader(html))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var scripts []string
|
|
nodes, err := htmlquery.QueryAll(doc, "//script/@src")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, node := range nodes {
|
|
var src = htmlquery.InnerText(node)
|
|
url, err := urlutil.Parse(src)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
if url.IsRelative {
|
|
url.Host = baseUrl.Host
|
|
url.Scheme = baseUrl.Scheme
|
|
}
|
|
scripts = append(scripts, url.String())
|
|
}
|
|
|
|
for _, script := range scripts {
|
|
if strings.Contains(script, "/_buildManifest.js") {
|
|
log.Info("Detected Next.JS pages router! Getting all scripts from %s", script)
|
|
nextScripts, err := frameworks.GetPagesRouterScripts(script)
|
|
if err != nil {
|
|
spin.Stop()
|
|
return nil, err
|
|
}
|
|
|
|
for _, nextScript := range nextScripts {
|
|
if slices.Contains(scripts, nextScript) {
|
|
continue
|
|
}
|
|
scripts = append(scripts, nextScript)
|
|
}
|
|
}
|
|
}
|
|
|
|
log.Info("Got %d scripts, now running scans on them", len(scripts))
|
|
|
|
supabaseResults := make([]supabaseScanResult, 0, len(scripts))
|
|
for _, script := range scripts {
|
|
charmlog.Debugf("Scanning %s", script)
|
|
resp, err := http.Get(script)
|
|
if err != nil {
|
|
charmlog.Warnf("Failed to fetch script: %s", err)
|
|
continue
|
|
}
|
|
|
|
bodyBytes, err := io.ReadAll(io.LimitReader(resp.Body, 5*1024*1024))
|
|
resp.Body.Close()
|
|
if err != nil {
|
|
charmlog.Errorf("Failed to read script body: %s", err)
|
|
continue
|
|
}
|
|
content := string(bodyBytes)
|
|
|
|
charmlog.Debugf("Running supabase scanner on %s", script)
|
|
scriptSupabaseResults, err := ScanSupabase(content, script)
|
|
|
|
if err != nil {
|
|
charmlog.Errorf("Error while scanning supabase: %s", err)
|
|
}
|
|
|
|
if scriptSupabaseResults != nil {
|
|
supabaseResults = append(supabaseResults, scriptSupabaseResults...)
|
|
}
|
|
}
|
|
|
|
spin.Stop()
|
|
|
|
result := JavascriptScanResult{
|
|
SupabaseResults: supabaseResults,
|
|
FoundEnvironmentVars: map[string]string{},
|
|
}
|
|
|
|
log.Complete(len(supabaseResults), "found")
|
|
|
|
return &result, nil
|
|
}
|