- DiscordSource uses dorking approach against configurable search endpoint - SlackSource uses dorking against slack-archive indexers - DevToSource searches dev.to API articles list + detail for body_markdown - RegisterAll extended to include all 6 Phase 15 forum sources - All credentialless, use ciLogKeyPattern for key detection
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package sources
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/salvacybersec/keyhunter/pkg/providers"
|
|
"github.com/salvacybersec/keyhunter/pkg/recon"
|
|
)
|
|
|
|
func TestDiscord_Name(t *testing.T) {
|
|
s := &DiscordSource{}
|
|
if s.Name() != "discord" {
|
|
t.Fatalf("expected discord, got %s", s.Name())
|
|
}
|
|
}
|
|
|
|
func TestDiscord_Enabled(t *testing.T) {
|
|
s := &DiscordSource{}
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("DiscordSource should always be enabled (credentialless)")
|
|
}
|
|
}
|
|
|
|
func TestDiscord_Sweep(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/search", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(`{"results":[{
|
|
"url":"https://discord.com/channels/123/456/789",
|
|
"content":"hey use this token: api_key = \"sk-proj-ABCDEF1234567890abcdef\""
|
|
}]}`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &DiscordSource{
|
|
BaseURL: srv.URL,
|
|
Registry: reg,
|
|
Client: NewClient(),
|
|
}
|
|
|
|
out := make(chan recon.Finding, 10)
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
|
|
err := s.Sweep(ctx, "", out)
|
|
close(out)
|
|
if err != nil {
|
|
t.Fatalf("Sweep error: %v", err)
|
|
}
|
|
|
|
var findings []recon.Finding
|
|
for f := range out {
|
|
findings = append(findings, f)
|
|
}
|
|
if len(findings) == 0 {
|
|
t.Fatal("expected at least one finding from Discord search")
|
|
}
|
|
if findings[0].SourceType != "recon:discord" {
|
|
t.Fatalf("expected recon:discord, got %s", findings[0].SourceType)
|
|
}
|
|
}
|