Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for 365d (0.03 sec)

  1. tests/integration/security/fuzz/fuzzers/dotdotpwn/Dockerfile

    WORKDIR /dotdotpwn
    COPY run.sh /dotdotpwn/
    RUN chmod +x /dotdotpwn/run.sh && apt-get update && apt-get install --no-install-recommends libwww-perl -y && apt-get clean && rm -rf /var/lib/apt/lists/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 293 bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/fuzzers/jwt_tool/Dockerfile

      && apt-get clean && rm -rf /var/lib/apt/lists/*
    RUN python3 -m pip install --no-cache-dir termcolor==1.1.0 cprint==1.2.2 pycryptodomex==3.10.1 requests==2.25.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 485 bytes
    - Viewed (0)
  3. tests/integration/security/fuzz/fuzzers/wfuzz/wfuzz.yaml

            "sidecar.istio.io/inject": "false"
        spec:
          containers:
          - name: wfuzz
            image: ghcr.io/xmendez/wfuzz:v3.1.0
            command: [ "sleep" ]
            args: [ "365d" ]
            volumeMounts:
              - name: wordlist
                mountPath: /wordlist
          volumes:
            - name: wordlist
              configMap:
                name: wordlist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/duration/duration_test.go

    		{d: 70 * time.Minute, want: "70m"},
    		{d: 47 * time.Hour, want: "47h"},
    		{d: 49 * time.Hour, want: "2d1h"},
    		{d: (8*24 + 2) * time.Hour, want: "8d"},
    		{d: (367 * 24) * time.Hour, want: "367d"},
    		{d: (365*2*24 + 25) * time.Hour, want: "2y1d"},
    		{d: (365*8*24 + 2) * time.Hour, want: "8y"},
    	}
    	for _, tt := range tests {
    		t.Run(tt.d.String(), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 17 18:04:52 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  5. tests/integration/security/sds_ingress/util/generate_certs.sh

            -days 3650 -nodes -out "${WD}/rootA.crt" -keyout "${WD}/rootA.key" \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=*.example.com" \
            -addext "subjectAltName = DNS:*.example.com"
    
    openssl genrsa -out "${WD}/clientA.key" 2048
    openssl req -new -key "${WD}/clientA.key" -out "${WD}/clientA.csr" -subj "/CN=*.example.com" -config "${WD}/client.conf"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. security/pkg/pki/testdata/multilevelpki/certs.sh

    California
    Sunnyvale
    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in root-cert.csr -sha256 -signkey root-key.pem -out root-cert.pem
    
    # Intermediate CA
    #openssl genrsa -out int-key.pem 4096
    openssl req -new -key int-key.pem -out int-cert.csr -config int-cert.cfg -batch -sha256
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. tools/certs/common.mk

    # variables: root CA
    ROOTCA_DAYS ?= 3650
    ROOTCA_KEYSZ ?= 4096
    ROOTCA_ORG ?= Istio
    ROOTCA_CN ?= Root CA
    KUBECONFIG ?= $(HOME)/.kube/config
    ISTIO_NAMESPACE ?= istio-system
    # Additional variables are defined in root-ca.conf target below.
    
    #------------------------------------------------------------------------
    # variables: intermediate CA
    INTERMEDIATE_DAYS ?= 3650
    INTERMEDIATE_KEYSZ ?= 4096
    INTERMEDIATE_ORG ?= Istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. samples/jwt-server/testdata/README.MD

    # SAN Certificate Creation with OpenSSL
    
    ### Creating CA
    
    ```
    openssl genrsa -out ca.key 2048
    
    openssl req -new -x509 -days 3650 -key ca.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=Acme Root CA" -out ca.crt
    ```
    
    ### Creating Server Certificate
    ```
    openssl req -newkey rsa:2048 -nodes -keyout server.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=*.com" -out server.csr
    ```
    
    ### Signing Certificate with CA
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 01:55:25 UTC 2022
    - 566 bytes
    - Viewed (0)
  9. security/pkg/pki/testdata/multilevelpki/ecc-certs.sh

    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in ecc-root-cert.csr -sha256 -signkey ecc-root-key.pem -out ecc-root-cert.pem
    
    # Intermediate CA
    #openssl ecparam -genkey -name prime256v1 -out ecc-int-key.pem -noout
    openssl req -new -key ecc-int-key.pem -out ecc-int-cert.csr -config int-cert.cfg -batch -sha256
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 16 19:54:33 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. pilot/pkg/model/test/testcert/generate.sh

    # limitations under the License.
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=anotherhost" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
Back to top