Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.144.137.236
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
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
2024-02-16 18:53
rules.d
[ DIR ]
drwxr-xr-x
2024-10-31 06:51
ata_id
62.63
KB
-rwxr-xr-x
2023-11-21 20:57
bcache-export-cached
1.13
KB
-rwxr-xr-x
2022-03-23 09:42
bcache-register
14.3
KB
-rwxr-xr-x
2022-03-23 09:42
cdrom_id
78.64
KB
-rwxr-xr-x
2023-11-21 20:57
dmi_memory_id
74.63
KB
-rwxr-xr-x
2023-11-21 20:57
fido_id
98.64
KB
-rwxr-xr-x
2023-11-21 20:57
hdparm
1.37
KB
-rwxr-xr-x
2020-12-15 22:01
hwclock-set
252
B
-rwxr-xr-x
2024-04-09 15:32
hwdb.bin
10.61
MB
-r--r--r--
2024-02-16 18:45
kpartx_id
2.33
KB
-rwxr-xr-x
2023-10-31 22:21
mtd_probe
22.43
KB
-rwxr-xr-x
2023-11-21 20:57
probe-bcache
14.3
KB
-rwxr-xr-x
2022-03-23 09:42
scsi_id
83.15
KB
-rwxr-xr-x
2023-11-21 20:57
snappy-app-dev
18.23
KB
-rwxr-xr-x
2024-07-26 02:57
usb_modeswitch
1.53
KB
-rwxr-xr-x
2022-03-25 09:53
v4l_id
22.5
KB
-rwxr-xr-x
2023-11-21 20:57
Save
Rename
#!/bin/sh # part of usb_modeswitch 2.6.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 export TMPDIR=/run 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 -f /sbin/init` if [ `basename $init_path` = "systemd" ] && [ -d "/run/systemd/system/" ]; then # Test if systemd is running systemctl --no-block restart 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