Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for DOS (0.09 sec)

  1. cmd/sftp-server-driver.go

    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/pkg/sftp"
    	"golang.org/x/crypto/ssh"
    )
    
    // Maximum write offset for incoming SFTP blocks.
    // Set to 100MiB to prevent hostile DOS attacks.
    const ftpMaxWriteOffset = 100 << 20
    
    type sftpDriver struct {
    	permissions *ssh.Permissions
    	endpoint    string
    }
    
    //msgp:ignore sftpMetrics
    type sftpMetrics struct{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// beta: v1.24
    	//
    	// Enables server-side field validation.
    	ServerSideFieldValidation featuregate.Feature = "ServerSideFieldValidation"
    
    	// owner: @enj
    	// beta: v1.29
    	//
    	// Enables http2 DOS mitigations for unauthenticated clients.
    	//
    	// Some known reasons to disable these mitigations:
    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/html/template/js.go

    			args[i] = indirectToJSONMarshaler(arg)
    		}
    		a = fmt.Sprint(args...)
    	}
    	// TODO: detect cycles before calling Marshal which loops infinitely on
    	// cyclic data. This may be an unacceptable DoS risk.
    	b, err := json.Marshal(a)
    	if err != nil {
    		// While the standard JSON marshaler does not include user controlled
    		// information in the error message, if a type has a MarshalJSON method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	}
    	return subjectAccessReview, statusCode, err
    }
    
    // shouldCache determines whether it is safe to cache the given request attributes. If the
    // requester-controlled attributes are too large, this may be a DoS attempt, so we skip the cache.
    func shouldCache(attr authorizer.Attributes) bool {
    	controlledAttrSize := int64(len(attr.GetNamespace())) +
    		int64(len(attr.GetVerb())) +
    		int64(len(attr.GetAPIGroup())) +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    		b.r.Discard(2)
    		return nil
    	}
    	if len(buf) < 2 {
    		return errTrailerEOF
    	}
    	if err != nil {
    		return err
    	}
    
    	// Make sure there's a header terminator coming up, to prevent
    	// a DoS with an unbounded size Trailer. It's not easy to
    	// slip in a LimitReader here, as textproto.NewReader requires
    	// a concrete *bufio.Reader. Also, we can't get all the way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    ---
    
    En este escenario de las hamburguesas paralelas, tú eres un sistema / programa 🤖 con dos procesadores (tú y la persona que te gusta 😍), ambos esperando 🕙 y dedicando su atención ⏯ a estar "esperando en el mostrador" 🕙 durante mucho tiempo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top