Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
initramfs-tools /
hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
dmsetup
472
B
-rwxr-xr-x
2017-03-17 17:03
fsck
2.12
KB
-rwxr-xr-x
2017-03-06 23:42
keymap
1.27
KB
-rwxr-xr-x
2015-12-09 05:09
klibc-utils
843
B
-rwxr-xr-x
2021-06-10 02:41
kmod
424
B
-rwxr-xr-x
2016-12-26 03:42
mdadm
3.23
KB
-rwxr-xr-x
2016-07-28 17:52
resume
1.71
KB
-rwxr-xr-x
2017-04-26 02:54
thermal
1.25
KB
-rwxr-xr-x
2015-12-09 05:09
udev
1.72
KB
-rwxr-xr-x
2021-07-07 14:21
zz-busybox
1015
B
-rwxr-xr-x
2021-04-01 22:45
Save
Rename
#!/bin/sh PREREQ="" prereqs() { echo "$PREREQ" } case $1 in # get pre-requisites prereqs) prereqs exit 0 ;; esac # Hooks for loading thermal bits into the initramfs . /usr/share/initramfs-tools/hook-functions case "$DPKG_ARCH" in # copy the right modules powerpc|ppc64) # Only G5 Mac machines need to load # therm_pm72 or one of the windfarm_pm* modules. [ -r /proc/cpuinfo ] || exit 0 MODEL="`grep model /proc/cpuinfo`" MODEL="${MODEL##*: }" case "$MODEL" in RackMac3,1|PowerMac7,2|PowerMac7,3) force_load therm_pm72 ;; PowerMac8,1|PowerMac8,2) force_load windfarm_pm81 ;; PowerMac9,1) force_load windfarm_pm91 ;; PowerMac11,2) force_load windfarm_pm112 ;; PowerMac12,1) force_load windfarm_pm121 ;; *) # No other machine needs windfarm_* modules on initrd. exit 0 ;; esac manual_add_modules windfarm_core manual_add_modules windfarm_cpufreq_clamp manual_add_modules windfarm_lm75_sensor manual_add_modules windfarm_max6690_sensor manual_add_modules windfarm_pid manual_add_modules windfarm_smu_controls manual_add_modules windfarm_smu_sat manual_add_modules windfarm_smu_sensors ;; i386|amd64|ia64) manual_add_modules fan manual_add_modules thermal ;; esac