161 lines
4.1 KiB
Go
161 lines
4.1 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"
|
|
)
|
|
|
|
<<<<<<< HEAD
|
|
const jenkinsFixtureJSON = `{
|
|
"jobs": [
|
|
{
|
|
"name": "build-api",
|
|
"url": "https://jenkins.example.com/job/build-api/",
|
|
"lastBuild": {"number": 42, "url": "https://jenkins.example.com/job/build-api/42/"}
|
|
},
|
|
{
|
|
"name": "deploy-prod",
|
|
"url": "https://jenkins.example.com/job/deploy-prod/",
|
|
"lastBuild": {"number": 7, "url": ""}
|
|
},
|
|
{
|
|
"name": "stale-job",
|
|
"url": "https://jenkins.example.com/job/stale-job/",
|
|
"lastBuild": null
|
|
}
|
|
]
|
|
}`
|
|
|
|
func TestJenkins_Sweep_ExtractsFindings(t *testing.T) {
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if r.URL.Path != "/api/json" {
|
|
t.Errorf("unexpected path: %s", r.URL.Path)
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(jenkinsFixtureJSON))
|
|
}))
|
|
defer srv.Close()
|
|
|
|
src := &JenkinsSource{
|
|
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 TestJenkins_Name(t *testing.T) {
|
|
s := &JenkinsSource{}
|
|
if s.Name() != "jenkins" {
|
|
t.Fatalf("expected jenkins, got %s", s.Name())
|
|
}
|
|
}
|
|
|
|
func TestJenkins_Enabled(t *testing.T) {
|
|
s := &JenkinsSource{}
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("JenkinsSource should always be enabled (credentialless)")
|
|
}
|
|
}
|
|
|
|
func TestJenkins_Sweep(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/api/json", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_, _ = w.Write([]byte(`{"jobs":[{"name":"deploy-prod","url":"http://jenkins/job/deploy-prod/","color":"blue"}]}`))
|
|
})
|
|
mux.HandleFunc("/job/deploy-prod/lastBuild/consoleText", func(w http.ResponseWriter, r *http.Request) {
|
|
_, _ = w.Write([]byte(`Started by user admin
|
|
[Pipeline] echo
|
|
Setting AUTH_TOKEN="sk-proj-JENKINSLEAK123456"
|
|
[Pipeline] sh
|
|
Build SUCCESS`))
|
|
})
|
|
|
|
srv := httptest.NewServer(mux)
|
|
defer srv.Close()
|
|
|
|
reg := providers.NewRegistryFromProviders([]providers.Provider{
|
|
{Name: "openai", Keywords: []string{"sk-proj-"}},
|
|
})
|
|
|
|
s := &JenkinsSource{
|
|
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
|
|
// 3 jobs but 1 has null lastBuild -> 2 findings.
|
|
if len(findings) != 2 {
|
|
t.Fatalf("expected 2 findings, got %d", len(findings))
|
|
}
|
|
// First job has URL from lastBuild.
|
|
if findings[0].Source != "https://jenkins.example.com/job/build-api/42/" {
|
|
t.Errorf("unexpected source[0]: %s", findings[0].Source)
|
|
}
|
|
for _, f := range findings {
|
|
if f.SourceType != "recon:jenkins" {
|
|
t.Errorf("unexpected SourceType: %s", f.SourceType)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestJenkins_EnabledAlwaysTrue(t *testing.T) {
|
|
s := &JenkinsSource{}
|
|
if !s.Enabled(recon.Config{}) {
|
|
t.Fatal("expected Enabled=true")
|
|
}
|
|
}
|
|
|
|
func TestJenkins_NameAndRate(t *testing.T) {
|
|
s := &JenkinsSource{}
|
|
if s.Name() != "jenkins" {
|
|
t.Errorf("unexpected name: %s", s.Name())
|
|
}
|
|
if s.Burst() != 1 {
|
|
t.Errorf("burst: %d", s.Burst())
|
|
}
|
|
if !s.RespectsRobots() {
|
|
t.Error("expected RespectsRobots=true")
|
|
=======
|
|
if len(findings) == 0 {
|
|
t.Fatal("expected at least one finding from Jenkins console output")
|
|
}
|
|
if findings[0].SourceType != "recon:jenkins" {
|
|
t.Fatalf("expected recon:jenkins, got %s", findings[0].SourceType)
|
|
>>>>>>> worktree-agent-adad8c10
|
|
}
|
|
}
|