Yetixx
Yetixx
Server: nginx/1.28.0
System: Linux instance-rr9enuui 6.1.0-15-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.66-1 (2023-12-09) x86_64
User: www (1000)
PHP: 8.0.26
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: //usr/share/bug/discover-data
#!/bin/sh

PATH=/sbin:$PATH

if which lspci > /dev/null 2>&1; then
    echo lspci: >&3
    LC_ALL=C lspci -nn >&3
    printf "\n" >&3
fi

if which lsusb > /dev/null 2>&1; then
    echo lsusb: >&3
    (
	LC_ALL=C lsusb
    ) | sort >&3
    printf "\n" >&3
fi

# XXX No idea how to do this with discover v2
#echo discover: >&3
#discover --format="%m:%V %M\n" all >&3

if [ -d /sys/bus/pci/devices/ ] ; then
    echo loaded modules: >&3
    (
	cd /sys/bus/pci/devices/
	for address in * ; do
	    if [ -d "$address/driver/module" ] ; then
		module=`cd $address/driver/module ; pwd -P | xargs basename`
		if grep -q "^$module " /proc/modules ; then
		    address=$(echo $address |sed s/0000://)
		    echo "`lspci -n -s $address | tail -n 1 | awk '{print $3}'` $module" >&3
		fi
	    fi
	done
    )
    echo >&3
fi


# Report X settings
if which debconf-get-selections > /dev/null 2>&1; then
    echo X setting: >&3
    debconf-get-selections | egrep xserver-.*/config/device/driver >&3
fi