!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/src/linux-headers-5.15.0-153/tools/testing/selftests/fpu/   drwxr-xr-x
Free 28.52 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     run_test_fpu.sh (878 B)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
# Load kernel module for FPU tests

uid=$(id -u)
if [ $uid -ne 0 ]; then
	echo "$0: Must be run as root"
	exit 1
fi

if ! which modprobe > /dev/null 2>&1; then
	echo "$0: You need modprobe installed"
        exit 4
fi

if ! modinfo test_fpu > /dev/null 2>&1; then
	echo "$0: You must have the following enabled in your kernel:"
	echo "CONFIG_TEST_FPU=m"
	exit 4
fi

NR_CPUS=$(getconf _NPROCESSORS_ONLN)
if [ ! $NR_CPUS ]; then
	NR_CPUS=1
fi

modprobe test_fpu

if [ ! -e /sys/kernel/debug/selftest_helpers/test_fpu ]; then
	mount -t debugfs none /sys/kernel/debug

	if [ ! -e /sys/kernel/debug/selftest_helpers/test_fpu ]; then
		echo "$0: Error mounting debugfs"
		exit 4
	fi
fi

echo "Running 1000 iterations on all CPUs... "
for i in $(seq 1 1000); do
	for c in $(seq 1 $NR_CPUS); do
		./test_fpu &
	done
done

rmmod test_fpu

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0039 ]--