Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.129
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2026-05-06 18:20
rules.d
[ DIR ]
drwxr-xr-x
2026-05-06 18:20
accelerometer
60.82
KB
-rwxr-xr-x
2026-04-23 14:20
ata_id
48.06
KB
-rwxr-xr-x
2026-04-23 14:20
cdrom_id
56.09
KB
-rwxr-xr-x
2026-04-23 14:20
collect
31.54
KB
-rwxr-xr-x
2026-04-23 14:20
fc_wwpn_id
1.1
KB
-rwxr-xr-x
2020-02-04 22:31
kdump-udev-throttler
1.41
KB
-rwxr-xr-x
2021-07-07 09:16
mtd_probe
10.9
KB
-rwxr-xr-x
2026-04-23 14:20
phys-port-name-gen
1.18
KB
-rwxr-xr-x
2026-04-23 14:18
rename_device
15.04
KB
-rwxr-xr-x
2022-08-16 13:41
scsi_id
56.86
KB
-rwxr-xr-x
2026-04-23 14:20
tascam_fpga
913
B
-rwxr-xr-x
2016-11-05 18:34
tascam_fw
1.1
KB
-rwxr-xr-x
2016-11-05 18:34
udev-kvm-check
15.12
KB
-rwxr-xr-x
2022-08-16 13:41
usb_modeswitch
1.45
KB
-rwxr-xr-x
2018-04-10 23:48
v4l_id
23.3
KB
-rwxr-xr-x
2026-04-23 14:20
Save
Rename
#!/bin/sh # part of usb_modeswitch 2.5.1 device_in() { if [ ! -e /var/lib/usb_modeswitch/$1 ]; then return 0 fi while read line do if [ $(expr "$line" : "$2:$3") != 0 ]; then return 1 fi done </var/lib/usb_modeswitch/$1 if [ $(expr "$line" : "$2:$3") != 0 ]; then return 1 fi return 0 } if [ $(expr "$1" : "--.*") ]; then p_id=$4 if [ -z $p_id ]; then prod=$5 if [ -z $prod ]; then prod=$3 fi prod=${prod%/*} v_id=0x${prod%/*} p_id=0x${prod#*/} if [ "$v_id" = "0x" ]; then v_id="0" p_id="0" fi v_id="$(printf %04x $(($v_id)))" p_id="$(printf %04x $(($p_id)))" else v_id=$3 fi fi PATH=/sbin:/usr/sbin:$PATH case "$1" in --driver-bind) # driver binding code removed exit 0 ;; --symlink-name) device_in "link_list" $v_id $p_id if [ "$?" = "1" ]; then if [ -e "/usr/sbin/usb_modeswitch_dispatcher" ]; then exec usb_modeswitch_dispatcher $1 $2 2>>/dev/null fi fi exit 0 ;; esac IFS='/' read -r p1 p2 <<EOF $1 EOF if [ "$p2" = "" -a "$p1" != "" ]; then p2=$p1 fi PATH=/bin:/sbin:/usr/bin:/usr/sbin init_path=`readlink /sbin/init` if [ `basename $init_path` = "systemd" ]; then systemctl --no-block start usb_modeswitch@$p2.service elif [ -e "/etc/init/usb-modeswitch-upstart.conf" ]; then initctl emit --no-wait usb-modeswitch-upstart UMS_PARAM=$p2 else # only old distros, new udev will kill all subprocesses exec 1<&- 2<&- 5<&- 7<&- exec usb_modeswitch_dispatcher --switch-mode $p2 & fi exit 0