mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-28 22:40:54 -07:00
the http scheme downgrade origin was queued against every target, so on a plain-http target the http://host probe is the target's own origin and any correct same-origin reflection was reported as a high-severity downgrade. mark that origin https-only and skip it when the target scheme is not https, where a downgrade is meaningless, while still firing it on https targets that genuinely trust the http origin.
245 lines
8.4 KiB
Go
245 lines
8.4 KiB
Go
/*
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
: :
|
|
: █▀ █ █▀▀ · Blazing-fast pentesting suite :
|
|
: ▄█ █ █▀ · BSD 3-Clause License :
|
|
: :
|
|
: (c) 2022-2026 vmfunc, xyzeva, :
|
|
: lunchcat alumni & contributors :
|
|
: :
|
|
·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━·
|
|
*/
|
|
|
|
package scan
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// reflectingCORS echoes the Origin into Access-Control-Allow-Origin and sets
|
|
// credentials, the exploitable misconfiguration.
|
|
func reflectingCORS() *httptest.Server {
|
|
return httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if origin := r.Header.Get("Origin"); origin != "" {
|
|
w.Header().Set("Access-Control-Allow-Origin", origin)
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
}
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
}
|
|
|
|
func TestCORS_ReflectsArbitraryOrigin(t *testing.T) {
|
|
srv := reflectingCORS()
|
|
defer srv.Close()
|
|
|
|
result, err := CORS(srv.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if result == nil || len(result.Findings) == 0 {
|
|
t.Fatalf("expected cors findings on reflecting server, got %+v", result)
|
|
}
|
|
|
|
// the reflecting server echoes every crafted origin with credentials,
|
|
// so each finding should be high severity.
|
|
var sawEvil bool
|
|
for _, f := range result.Findings {
|
|
if f.OriginTested == corsEvilOrigin {
|
|
sawEvil = true
|
|
if !f.AllowCredentials {
|
|
t.Errorf("expected credentials flagged for evil origin, got %+v", f)
|
|
}
|
|
if f.Severity != "high" {
|
|
t.Errorf("expected high severity for reflection+creds, got %s", f.Severity)
|
|
}
|
|
}
|
|
}
|
|
if !sawEvil {
|
|
t.Errorf("expected the sentinel evil origin to be reflected, got %+v", result.Findings)
|
|
}
|
|
}
|
|
|
|
func TestCORS_SeverityWithoutCredentials(t *testing.T) {
|
|
// reflects the origin but never grants credentials - medium, not high.
|
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if origin := r.Header.Get("Origin"); origin != "" {
|
|
w.Header().Set("Access-Control-Allow-Origin", origin)
|
|
}
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
defer srv.Close()
|
|
|
|
result, err := CORS(srv.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if result == nil || len(result.Findings) == 0 {
|
|
t.Fatalf("expected reflection findings, got %+v", result)
|
|
}
|
|
for _, f := range result.Findings {
|
|
if f.AllowCredentials {
|
|
t.Errorf("did not expect credentials, got %+v", f)
|
|
}
|
|
if f.Severity != "medium" {
|
|
t.Errorf("expected medium severity without creds, got %s", f.Severity)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCORS_NoFalsePositiveOnSafeServer(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
handler http.HandlerFunc
|
|
}{
|
|
{
|
|
name: "ignores origin entirely",
|
|
handler: func(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
},
|
|
},
|
|
{
|
|
name: "returns its own fixed origin",
|
|
handler: func(w http.ResponseWriter, _ *http.Request) {
|
|
w.Header().Set("Access-Control-Allow-Origin", "https://trusted.example.com")
|
|
w.WriteHeader(http.StatusOK)
|
|
},
|
|
},
|
|
{
|
|
name: "plain wildcard, no credentials",
|
|
handler: func(w http.ResponseWriter, _ *http.Request) {
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
w.WriteHeader(http.StatusOK)
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
srv := httptest.NewServer(tt.handler)
|
|
defer srv.Close()
|
|
|
|
result, err := CORS(srv.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if result != nil && len(result.Findings) > 0 {
|
|
t.Errorf("expected no findings on safe server, got %+v", result.Findings)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// TestCORS_JudgesRequestedHostNotRedirectTarget pins the redirect behavior: the
|
|
// requested host bounces to a reflecting third party, so following the redirect would
|
|
// pin that party's misconfig on the target. the counter proves we never left the host.
|
|
func TestCORS_JudgesRequestedHostNotRedirectTarget(t *testing.T) {
|
|
var destHits int32
|
|
dest := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
atomic.AddInt32(&destHits, 1)
|
|
if origin := r.Header.Get("Origin"); origin != "" {
|
|
w.Header().Set("Access-Control-Allow-Origin", origin)
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
}
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
defer dest.Close()
|
|
|
|
redirector := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
http.Redirect(w, r, dest.URL, http.StatusFound)
|
|
}))
|
|
defer redirector.Close()
|
|
|
|
result, err := CORS(redirector.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if n := atomic.LoadInt32(&destHits); n != 0 {
|
|
t.Errorf("followed the redirect to the reflecting host %d time(s); cors must stay on the requested host", n)
|
|
}
|
|
if result != nil && len(result.Findings) > 0 {
|
|
t.Errorf("expected no findings: the reflection is on the redirect target, not the requested host; got %+v", result.Findings)
|
|
}
|
|
}
|
|
|
|
// TestCORS_NoDowngradeFindingOnPlainHTTPTarget pins the scheme-downgrade probe:
|
|
// httptest.NewServer targets are plain http, so an "http://{host}" origin is
|
|
// not a downgrade at all, it is the target's own real origin. reflecting it
|
|
// back is normal same-origin behavior, not a misconfiguration.
|
|
func TestCORS_NoDowngradeFindingOnPlainHTTPTarget(t *testing.T) {
|
|
srv := reflectingCORS()
|
|
defer srv.Close()
|
|
|
|
result, err := CORS(srv.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if result == nil {
|
|
return
|
|
}
|
|
for _, f := range result.Findings {
|
|
if f.Note == "http scheme downgrade trusted" {
|
|
t.Errorf("expected no downgrade finding against a plain http target, got %+v", f)
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestCORS_DowngradeFiresOnHTTPSTarget is the counterpart to the plain-http
|
|
// case: against an https target that reflects an http origin with credentials,
|
|
// an on-path attacker can read authenticated data, so the downgrade probe must
|
|
// still fire high. this pins the gate to the target scheme, not the origin
|
|
// scheme, so the false-positive fix cannot silently become a false negative.
|
|
func TestCORS_DowngradeFiresOnHTTPSTarget(t *testing.T) {
|
|
srv := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if origin := r.Header.Get("Origin"); origin != "" {
|
|
w.Header().Set("Access-Control-Allow-Origin", origin)
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
}
|
|
w.WriteHeader(http.StatusOK)
|
|
}))
|
|
defer srv.Close()
|
|
|
|
// CORS builds its client from the unconfigured httpx transport, which is
|
|
// http.DefaultTransport; trust the self-signed test cert for this test only.
|
|
orig := http.DefaultTransport
|
|
tr := http.DefaultTransport.(*http.Transport).Clone()
|
|
tr.TLSClientConfig = &tls.Config{InsecureSkipVerify: true} //nolint:gosec // trusts the local test cert only
|
|
http.DefaultTransport = tr
|
|
defer func() { http.DefaultTransport = orig }()
|
|
|
|
result, err := CORS(srv.URL, 5*time.Second, 3, "")
|
|
if err != nil {
|
|
t.Fatalf("CORS: %v", err)
|
|
}
|
|
if result == nil {
|
|
t.Fatalf("expected findings on https reflecting server, got nil")
|
|
}
|
|
var sawDowngrade bool
|
|
for _, f := range result.Findings {
|
|
if f.Note != "http scheme downgrade trusted" {
|
|
continue
|
|
}
|
|
sawDowngrade = true
|
|
if f.Severity != "high" {
|
|
t.Errorf("expected high severity for https-trusts-http with creds, got %s", f.Severity)
|
|
}
|
|
if !f.AllowCredentials {
|
|
t.Errorf("expected credentials flagged on downgrade finding, got %+v", f)
|
|
}
|
|
}
|
|
if !sawDowngrade {
|
|
t.Errorf("expected a downgrade finding against an https target, got %+v", result.Findings)
|
|
}
|
|
}
|
|
|
|
func TestCORSResult_ResultType(t *testing.T) {
|
|
r := &CORSResult{}
|
|
if r.ResultType() != "cors" {
|
|
t.Errorf("expected result type 'cors', got %q", r.ResultType())
|
|
}
|
|
}
|