Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for issetugid (0.38 sec)

  1. src/runtime/sys_freebsd_amd64.s

    	MOVQ	which+8(FP), SI
    	MOVQ	id+16(FP), DX
    	MOVQ	size+24(FP), R10
    	MOVQ	mask+32(FP), R8
    	MOVL	$SYS_cpuset_getaffinity, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+40(FP)
    	RET
    
    // func issetugid() int32
    TEXT runtime·issetugid(SB),NOSPLIT,$0
    	MOVQ	$0, DI
    	MOVQ	$0, SI
    	MOVQ	$0, DX
    	MOVL	$SYS_issetugid, AX
    	SYSCALL
    	MOVL	AX, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    //sys	Issetugid() (tainted bool)
    //sys	Kill(pid int, signum syscall.Signal) (err error)
    //sys	Kqueue() (fd int, err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_RFORK                  = 251 // { int rfork(int flags); }
    	SYS_OPENBSD_POLL           = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, \
    	SYS_ISSETUGID              = 253 // { int issetugid(void); }
    	SYS_LCHOWN                 = 254 // { int lchown(char *path, int uid, int gid); }
    	SYS_LCHMOD                 = 274 // { int lchmod(char *path, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }
    	SYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }
    	SYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }
    	SYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }
    	SYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_arm.go

    	SYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }
    	SYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }
    	SYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }
    	SYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }
    	SYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Issetugid() (tainted bool) {
    	r0, _, _ := syscall(abi.FuncPCABI0(libc_issetugid_trampoline), 0, 0, 0)
    	tainted = bool(r0 != 0)
    	return
    }
    
    func libc_issetugid_trampoline()
    
    //go:cgo_import_dynamic libc_issetugid issetugid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }
    	SYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }
    	SYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }
    	SYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }
    	SYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    to prevent dangerous behaviors. On Linux this is determined by checking for the
    AT_SECURE flag in the auxiliary vector, on the BSDs and Solaris/Illumos it is
    determined by checking the issetugid syscall, and on AIX it is determined by
    checking if the uid/gid match the effective uid/gid.
    
    When the runtime determines the binary is setuid/setgid-like, it does three main
    things:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_MINHERIT                 = 250 // { int minherit(void *addr, size_t len, int inherit); }
    	SYS_RFORK                    = 251 // { int rfork(int flags); }
    	SYS_ISSETUGID                = 253 // { int issetugid(void); }
    	SYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }
    	SYS_AIO_READ                 = 255 // { int aio_read(struct aiocb *aiocbp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_RFORK                  = 251 // { int rfork(int flags); }
    	SYS_OPENBSD_POLL           = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_ISSETUGID              = 253 // { int issetugid(void); }
    	SYS_LCHOWN                 = 254 // { int lchown(char *path, int uid, int gid); }
    	SYS_LCHMOD                 = 274 // { int lchmod(char *path, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top