- RapidAPISource searches public API listings for leaked keys - Scrapes HTML search pages with ciLogKeyPattern matching - Credentialless, httptest-based tests
120 lines
2.7 KiB
Go
120 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 TestRapidAPI_Name(t *testing.T) {
|
|
s := &RapidAPISource{}
|
|
if s.Name() != "rapidapi" {
|
|
t.Fatalf("expected rapidapi, got %s", s.Name())
|
|
}
|
|
}
|
|
|
|
func TestRapidAPI_Enabled(t *testing.T) {
|
|
s := &RapidAPISource{}
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("RapidAPISource should always be enabled")
|
|
}
|
|
}
|
|
|
|
func TestRapidAPI_Sweep(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/search/", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "text/html")
|
|
_, _ = w.Write([]byte(`<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div class="api-listing">
|
|
<h2>OpenAI Helper API</h2>
|
|
<pre><code>
|
|
curl -H "Authorization: Bearer sk-proj-ABCDEF1234567890abcdef" https://api.example.com
|
|
api_key = "sk-proj-ABCDEF1234567890abcdef"
|
|
</code></pre>
|
|
</div>
|
|
</body>
|
|
</html>`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &RapidAPISource{
|
|
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 RapidAPI")
|
|
}
|
|
if findings[0].SourceType != "recon:rapidapi" {
|
|
t.Fatalf("expected recon:rapidapi, got %s", findings[0].SourceType)
|
|
}
|
|
}
|
|
|
|
func TestRapidAPI_Sweep_Clean(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/search/", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "text/html")
|
|
_, _ = w.Write([]byte(`<!DOCTYPE html>
|
|
<html><body><p>No results found</p></body></html>`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &RapidAPISource{
|
|
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))
|
|
}
|
|
}
|