HEX
Server: Apache
System: Linux belinyu.iixcp.rumahweb.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: sduw1495 (3615)
PHP: 7.4.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //opt/alt/luajit/share/lua/syscall/linux/ppc/ioctl.lua
-- ppc ioctl differences

local arch = {
  IOC = {
    SIZEBITS  = 13,
    DIRBITS   = 3,
    NONE      = 1,
    READ      = 2,
    WRITE     = 4,
  },
  ioctl = function(_IO, _IOR, _IOW, _IORW)
    return {
      FIOCLEX   = _IO('f', 1),
      FIONCLEX  = _IO('f', 2),
      FIOQSIZE  = _IOR('f', 128, "off"),
      FIOASYNC  = _IOW('f', 125, "int"),
      TCGETS    = _IOR('t', 19, "termios"),
      TCSETS    = _IOW('t', 20, "termios"),
      TCSETSW   = _IOW('t', 21, "termios"),
      TCSETSF   = _IOW('t', 22, "termios"),
      TCSBRK    = _IO('t', 29),
      TCXONC    = _IO('t', 30),
      TCFLSH    = _IO('t', 31),
      TIOCSWINSZ = _IOW('t', 103, "winsize"),
      TIOCGWINSZ = _IOR('t', 104, "winsize"),
      TIOCOUTQ  = _IOR('t', 115, "int"),
      TIOCSPGRP = _IOW('t', 118, "int"),
      TIOCGPGRP = _IOR('t', 119, "int"),
      FIONBIO   = _IOW('f', 126, "int"),
      FIONREAD  = _IOR('f', 127, "int"),
    }
  end,
}

return arch