Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for attacks (0.49 sec)

  1. src/crypto/tls/conn.go

    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		} else {
    			testWaitDelay = wd
    		}
    
    		// We expect the test binary to terminate itself (and dump stacks) after
    		// exactly testTimeout. We give it up to one WaitDelay or one minute,
    		// whichever is longer, to finish dumping stacks before we send it an
    		// external signal: if the process has a lot of goroutines, dumping stacks
    		// after the timeout can take a while.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    	// a time, starting with the packages actually in "all" and expanding outwards
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    // loader instructs it to dynamically expand those roots to the full "all"
    // pattern as loading progresses.
    //
    // The pkgInAll flag on each loadPkg instance tracks whether that
    // package is known to match the "all" meta-pattern.
    // A package matches the "all" pattern if:
    // 	- it is in the main module, or
    // 	- it is imported by any test in the main module, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// accepts any certificate presented by the server and any host name in that
    	// certificate. In this mode, TLS is susceptible to machine-in-the-middle
    	// attacks unless custom verification is used. This should be used only for
    	// testing or in combination with VerifyConnection or VerifyPeerCertificate.
    	InsecureSkipVerify bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func SetsockoptPacketMreq(fd, level, opt int, mreq *PacketMreq) error {
    	return setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))
    }
    
    // SetsockoptSockFprog attaches a classic BPF or an extended BPF program to a
    // socket to filter incoming packets.  See 'man 7 socket' for usage information.
    func SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	abrvs.SetType(sym.SDWARFSECT)
    	abrvs.AddBytes(dwarf.GetAbbrev())
    	return dwarfSecInfo{syms: []loader.Sym{abrvs.Sym()}}
    }
    
    var dwtypes dwarf.DWDie
    
    // newattr attaches a new attribute to the specified DIE.
    //
    // FIXME: at the moment attributes are stored in a linked list in a
    // fairly space-inefficient way -- it might be better to instead look
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    attention to issues of being run as clients of untrusted servers. In contrast,
    Bazaar, Fossil, and Subversion have primarily been used in trusted,
    authenticated environments and are not as well scrutinized as attack surfaces.
    
    The version control command restrictions only apply when using direct version
    control access to download code. When downloading modules from a proxy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    // work tracks command execution for a test.
    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top