Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCVE202224675 (0.16 sec)

  1. src/encoding/pem/pem_test.go

    			t.Errorf("unexpected success while parsing %q", test.name)
    		}
    		if string(rest) != test.input {
    			t.Errorf("unexpected rest: %q; want = %q", rest, test.input)
    		}
    	}
    }
    
    func TestCVE202224675(t *testing.T) {
    	// Prior to CVE-2022-24675, this input would cause a stack overflow.
    	input := []byte(strings.Repeat("-----BEGIN \n", 10000000))
    	result, rest := Decode(input)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
Back to top