feat(15-02): add Trello and Notion ReconSource implementations

- TrelloSource searches public Trello boards via /1/search API
- NotionSource uses dorking to discover and scrape public Notion pages
- Both credentialless, follow established Phase 10 pattern
- Tests with httptest mocks confirm Sweep emits findings
This commit is contained in:
salvacybersec
2026-04-06 13:50:04 +03:00
parent 1affb0d864
commit 7bb614678d
4 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
package sources
import (
"context"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/salvacybersec/keyhunter/pkg/providers"
"github.com/salvacybersec/keyhunter/pkg/recon"
)
func TestTrello_Name(t *testing.T) {
s := &TrelloSource{}
if s.Name() != "trello" {
t.Fatalf("expected trello, got %s", s.Name())
}
}
func TestTrello_Enabled(t *testing.T) {
s := &TrelloSource{}
if !s.Enabled(recon.Config{}) {
t.Fatal("TrelloSource should always be enabled (credentialless)")
}
}
func TestTrello_Sweep(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/1/search", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
_, _ = w.Write([]byte(`{"cards":[{"id":"abc123","name":"Config","desc":"api_key = sk-proj-ABCDEF1234567890abcdef"}]}`))
})
srv := httptest.NewServer(mux)
defer srv.Close()
reg := providers.NewRegistryFromProviders([]providers.Provider{
{Name: "openai", Keywords: []string{"sk-proj-"}},
})
s := &TrelloSource{
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 Trello card")
}
if findings[0].SourceType != "recon:trello" {
t.Fatalf("expected recon:trello, got %s", findings[0].SourceType)
}
if findings[0].Source != "https://trello.com/c/abc123" {
t.Fatalf("expected trello card URL, got %s", findings[0].Source)
}
}