Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 172 for Authz (0.1 sec)

  1. istioctl/pkg/authz/authz_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authz
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util/testutil"
    )
    
    func TestAuthz(t *testing.T) {
    	cases := []testutil.TestCase{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/svn/hello.txt

    <?xml version="1.0" encoding="UTF-8"?>
    <log>
    <logentry
       revision="1">
    <author>rsc</author>
    <date>2017-09-22T01:12:45.861368Z</date>
    <msg>hello world
    
    </msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/requestauthn/gateway-jwt.yaml.tmpl

      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
        group: gateway.networking.k8s.io
      rules:
      - to:
        - operation:
            hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. internal/config/policy/plugin/help.go

    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         URL,
    			Description: `plugin hook endpoint (HTTP(S)) e.g. "http://localhost:8181/v1/data/httpapi/authz/allow"` + defaultHelpPostfix(URL),
    			Type:        "url",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         AuthToken,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. tests/integration/security/jwt_test.go

    						opts.Check = check.Status(http.StatusForbidden)
    					},
    				},
    			}))
    
    			t.NewSubTest("no-authn-authz").Run(newTest("", []testCase{
    				{
    					name: "no-authn-authz",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/no-authn-authz"
    						opts.Check = check.And(
    							check.OK(),
    							check.ReachedTargetClusters(t))
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

            - mountPath: /etc/istio-custom-bootstrap
              name: custom-bootstrap-volume
            {{- end }}
            {{- end }}
    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
            ports:
            - containerPort: 8000
            - containerPort: 9000
    {{- end }}
          volumes:
          - emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tests/fuzz/pilot_security_fuzzer.go

    // limitations under the License.
    
    package fuzz
    
    import (
    	"fmt"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authz/matcher"
    )
    
    func FuzzCidrRange(data []byte) int {
    	_, _ = util.AddrStrToCidrRange(string(data))
    	return 1
    }
    
    func FuzzHeaderMatcher(data []byte) int {
    	k, v, err := getKandV(data)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. istioctl/pkg/authz/analyzer_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authz
    
    import (
    	"bytes"
    	"reflect"
    	"testing"
    
    	envoy_admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pkg/registry/authorization/util/helpers.go

    	if extra == nil {
    		return nil
    	}
    	ret := map[string][]string{}
    	for k, v := range extra {
    		ret[k] = []string(v)
    	}
    
    	return ret
    }
    
    // AuthorizationAttributesFrom takes a spec and returns the proper authz attributes to check it.
    func AuthorizationAttributesFrom(spec authorizationapi.SubjectAccessReviewSpec) authorizer.AttributesRecord {
    	userToCheck := &user.DefaultInfo{
    		Name:   spec.User,
    		Groups: spec.Groups,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		"Enable block profiling, if profiling is enabled")
    	fs.StringVar(&o.DebugSocketPath, "debug-socket-path", o.DebugSocketPath,
    		"Use an unprotected (no authn/authz) unix-domain socket for profiling with the given path")
    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top