184 lines
4.6 KiB
Go
184 lines
4.6 KiB
Go
package sources
|
|
|
|
import (
|
|
"context"
|
|
<<<<<<< HEAD
|
|
=======
|
|
"encoding/json"
|
|
"fmt"
|
|
>>>>>>> worktree-agent-adad8c10
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/salvacybersec/keyhunter/pkg/providers"
|
|
"github.com/salvacybersec/keyhunter/pkg/recon"
|
|
)
|
|
|
|
<<<<<<< HEAD
|
|
const ghActionsFixtureJSON = `{
|
|
"items": [
|
|
{
|
|
"html_url": "https://github.com/alice/repo/blob/main/.github/workflows/ci.yml",
|
|
"repository": {"full_name": "alice/repo"}
|
|
},
|
|
{
|
|
"html_url": "https://github.com/bob/app/blob/main/.github/workflows/deploy.yml",
|
|
"repository": {"full_name": "bob/app"}
|
|
}
|
|
]
|
|
}`
|
|
|
|
func TestGitHubActions_Sweep_ExtractsFindings(t *testing.T) {
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if r.URL.Path != "/search/code" {
|
|
t.Errorf("unexpected path: %s", r.URL.Path)
|
|
}
|
|
if r.Header.Get("Authorization") == "" {
|
|
t.Error("missing Authorization header")
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(ghActionsFixtureJSON))
|
|
}))
|
|
defer srv.Close()
|
|
|
|
src := &GitHubActionsSource{
|
|
Token: "ghp-test",
|
|
BaseURL: srv.URL,
|
|
Registry: providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
}),
|
|
Limiters: recon.NewLimiterRegistry(),
|
|
client: NewClient(),
|
|
}
|
|
|
|
out := make(chan recon.Finding, 16)
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
if err := src.Sweep(ctx, "", out); err != nil {
|
|
t.Fatalf("Sweep err: %v", err)
|
|
}
|
|
close(out)
|
|
=======
|
|
func TestGitHubActions_Name(t *testing.T) {
|
|
s := &GitHubActionsSource{}
|
|
if s.Name() != "ghactions" {
|
|
t.Fatalf("expected ghactions, got %s", s.Name())
|
|
}
|
|
}
|
|
|
|
func TestGitHubActions_Enabled(t *testing.T) {
|
|
s := &GitHubActionsSource{}
|
|
if s.Enabled(recon.Config{}) {
|
|
t.Fatal("should be disabled without token")
|
|
}
|
|
s.Token = "ghp-test"
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("should be enabled with token")
|
|
}
|
|
}
|
|
|
|
func TestGitHubActions_Sweep(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/search/code", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_ = json.NewEncoder(w).Encode(ghActionsRunsResponse{
|
|
WorkflowRuns: []ghActionsRun{
|
|
{ID: 42, Status: "completed", Conclusion: "success"},
|
|
},
|
|
})
|
|
})
|
|
mux.HandleFunc("/actions/runs/42/logs", func(w http.ResponseWriter, r *http.Request) {
|
|
_, _ = fmt.Fprint(w, `2024-01-01T00:00:00Z Run setup
|
|
Setting env: API_KEY="sk-proj-LEAKED1234567890"
|
|
Tests passed.`)
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &GitHubActionsSource{
|
|
Token: "ghp-test",
|
|
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)
|
|
}
|
|
>>>>>>> worktree-agent-adad8c10
|
|
|
|
var findings []recon.Finding
|
|
for f := range out {
|
|
findings = append(findings, f)
|
|
}
|
|
<<<<<<< HEAD
|
|
if len(findings) != 2 {
|
|
t.Fatalf("expected 2 findings, got %d", len(findings))
|
|
}
|
|
for _, f := range findings {
|
|
if f.SourceType != "recon:github_actions" {
|
|
t.Errorf("unexpected SourceType: %s", f.SourceType)
|
|
}
|
|
if f.Confidence != "low" {
|
|
t.Errorf("unexpected Confidence: %s", f.Confidence)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGitHubActions_EnabledOnlyWithToken(t *testing.T) {
|
|
s := &GitHubActionsSource{}
|
|
if s.Enabled(recon.Config{}) {
|
|
t.Fatal("expected Enabled=false without token")
|
|
}
|
|
s.Token = "test"
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("expected Enabled=true with token")
|
|
}
|
|
}
|
|
|
|
func TestGitHubActions_Sweep_SkipsWhenNoToken(t *testing.T) {
|
|
src := &GitHubActionsSource{}
|
|
out := make(chan recon.Finding, 4)
|
|
if err := src.Sweep(context.Background(), "", out); err != nil {
|
|
t.Fatalf("expected nil, got: %v", err)
|
|
}
|
|
close(out)
|
|
if len(out) != 0 {
|
|
t.Fatal("expected no findings without token")
|
|
}
|
|
}
|
|
|
|
func TestGitHubActions_NameAndRate(t *testing.T) {
|
|
s := &GitHubActionsSource{}
|
|
if s.Name() != "github_actions" {
|
|
t.Errorf("unexpected name: %s", s.Name())
|
|
}
|
|
if s.Burst() != 2 {
|
|
t.Errorf("burst: %d", s.Burst())
|
|
}
|
|
if s.RespectsRobots() {
|
|
t.Error("expected RespectsRobots=false")
|
|
=======
|
|
if len(findings) == 0 {
|
|
t.Fatal("expected at least one finding from GitHub Actions logs")
|
|
}
|
|
if findings[0].SourceType != "recon:ghactions" {
|
|
t.Fatalf("expected recon:ghactions, got %s", findings[0].SourceType)
|
|
>>>>>>> worktree-agent-adad8c10
|
|
}
|
|
}
|