Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,756 for securityv1 (0.28 sec)

  1. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    		},
    		{
    			name: "Xfcc Header single hop",
    			// nolint lll
    			xfccHeader: `Hash=meshclient;Subject="";URI=spiffe://mesh.example.com/ns/otherns/sa/othersa`,
    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/otherns/sa/othersa",
    				},
    			},
    		},
    		{
    			name: "Xfcc Header multiple hops",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. .github/dependabot.yml

    # Configures Depdendabot to PR go security updates only
    
    version: 2
    updates:
      # Go configuration for master branch
      - package-ecosystem: "gomod"
        directory: "/"
        schedule:
          interval: "daily"
        # Limit number of open PRs to 0 so that we only get security updates
        # See https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates
        open-pull-requests-limit: 0
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:41 UTC 2024
    - 480 bytes
    - Viewed (0)
  3. BUG-BOUNTY.md

    Serious about security
    ======================
    
    Square recognizes the important contributions the security research community
    can make. We therefore encourage reporting security issues with the code
    contained in this repository.
    
    If you believe you have discovered a security vulnerability, please follow the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 25 19:52:57 UTC 2020
    - 361 bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/index.md

    # Security
    
    There are many ways to handle security, authentication and authorization.
    
    And it normally is a complex and "difficult" topic.
    
    In many frameworks and systems just handling security and authentication takes a big amount of effort and code (in many cases it can be 50% or more of all the code written).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 550 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 550 bytes
    - Viewed (0)
  7. security/pkg/server/ca/fuzz_test.go

    // limitations under the License.
    
    package ca
    
    import (
    	"context"
    	"fmt"
    	"testing"
    
    	pb "istio.io/api/security/v1alpha1"
    	"istio.io/istio/pkg/fuzz"
    	"istio.io/istio/pkg/security"
    	mockca "istio.io/istio/security/pkg/pki/ca/mock"
    	caerror "istio.io/istio/security/pkg/pki/error"
    )
    
    func FuzzCreateCertificate(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. tests/test_security_http_basic_realm_description.py

    from base64 import b64encode
    
    from fastapi import FastAPI, Security
    from fastapi.security import HTTPBasic, HTTPBasicCredentials
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    security = HTTPBasic(realm="simple", description="HTTPBasic scheme")
    
    
    @app.get("/users/me")
    def read_current_user(credentials: HTTPBasicCredentials = Security(security)):
        return {"username": credentials.username, "password": credentials.password}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/security/oauth2-jwt.md

        {!> ../../../docs_src/security/tutorial004_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="7  48  55-56  59-60  69-75"
        {!> ../../../docs_src/security/tutorial004_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="7  49  56-57  60-61  70-76"
        {!> ../../../docs_src/security/tutorial004_an.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    func (a *KubeJWTAuthenticator) Authenticate(authRequest security.AuthContext) (*security.Caller, error) {
    	if authRequest.GrpcContext != nil {
    		return a.authenticateGrpc(authRequest.GrpcContext)
    	}
    	if authRequest.Request != nil {
    		return a.authenticateHTTP(authRequest.Request)
    	}
    	return nil, nil
    }
    
    func (a *KubeJWTAuthenticator) authenticateHTTP(req *http.Request) (*security.Caller, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top