Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Trusted (0.58 sec)

  1. src/cmd/go/alldocs.go

    // allowing only Git and Mercurial is that these two systems have had the most
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    allowing only Git and Mercurial is that these two systems have had the most
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/archive/tar/reader.go

    	if err != nil || numEntries < 0 || int(2*numEntries) < int(numEntries) {
    		return nil, ErrHeader
    	}
    
    	// Parse for all member entries.
    	// numEntries is trusted after this since a potential attacker must have
    	// committed resources proportional to what this library used.
    	if err := feedTokens(2 * numEntries); err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    // these two systems have had the most 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.
    //
    // See golang.org/issue/41730 for details.
    var defaultGOVCS = govcsConfig{
    	{"private", []string{"all"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top