- ElasticsearchSource: POST _search API with query_string, parse hits._source - KibanaSource: GET saved_objects/_find API with kbn-xsrf header - SplunkSource: GET search/jobs/export API with newline-delimited JSON parsing - All sources use ciLogKeyPattern for key detection - Tests use httptest mocks for each API endpoint
121 lines
2.7 KiB
Go
121 lines
2.7 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 TestElasticsearch_Name(t *testing.T) {
|
|
s := &ElasticsearchSource{}
|
|
if s.Name() != "elasticsearch" {
|
|
t.Fatalf("expected elasticsearch, got %s", s.Name())
|
|
}
|
|
}
|
|
|
|
func TestElasticsearch_Enabled(t *testing.T) {
|
|
s := &ElasticsearchSource{}
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("ElasticsearchSource should always be enabled")
|
|
}
|
|
}
|
|
|
|
func TestElasticsearch_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(`{
|
|
"hits": {
|
|
"hits": [
|
|
{
|
|
"_index": "logs",
|
|
"_id": "abc123",
|
|
"_source": {
|
|
"message": "api_key = sk-proj-ABCDEF1234567890abcdef",
|
|
"level": "error"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &ElasticsearchSource{
|
|
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 Elasticsearch")
|
|
}
|
|
if findings[0].SourceType != "recon:elasticsearch" {
|
|
t.Fatalf("expected recon:elasticsearch, got %s", findings[0].SourceType)
|
|
}
|
|
}
|
|
|
|
func TestElasticsearch_Sweep_NoHits(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(`{"hits":{"hits":[]}}`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &ElasticsearchSource{
|
|
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.Fatalf("expected no findings, got %d", len(findings))
|
|
}
|
|
}
|