AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.145.199.108   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /etc/init.d/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /etc/init.d/hwdrivers
#!/sbin/openrc-run

# Copyright (c) Natanael Copa
# This code is licensed under BSD-2-Clause

depend() {
	need sysfs dev
	before checkfs fsck
	after modloop
	keyword -vserver -lxc
}

# Load hardware drivers
start() {
	# check for boot option "nocoldplug"
	if get_bootparam noautodetect; then
		ewarn "Autodetection of hardware disabled from boot cmdline"
		return 0
	fi

	ebegin "Loading hardware drivers"
	find /sys -name modalias -type f -print0 2> /dev/null | xargs -0 sort -u \
		| xargs modprobe -b -a 2> /dev/null
	# we run it twice so we detect all devices
	find /sys -name modalias -type f -print0 2> /dev/null | xargs -0 sort -u \
		| xargs modprobe -b -a 2> /dev/null

	# check if framebuffer drivers got pulled in
	if [ -e /dev/fb0 ] && ! [ -e /sys/module/fbcon ]; then
		modprobe -b -q fbcon
	fi

	eend 0
}


Anon7 - 2022
AnonSec Team