Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
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
console_setup
3.07
KB
-rwxr-xr-x
2024-02-26 12:58
dhcpcd
1.3
KB
-rwxr-xr-x
2026-02-04 17:01
dmsetup
506
B
-rwxr-xr-x
2024-06-05 11:14
fixrtc
436
B
-rwxr-xr-x
2026-02-04 17:01
framebuffer
386
B
-rwxr-xr-x
2024-04-22 10:21
fsck
2.06
KB
-rwxr-xr-x
2026-02-04 17:01
fuse
231
B
-rwxr-xr-x
2024-04-08 15:57
kbd
301
B
-rwxr-xr-x
2024-02-27 09:52
klibc-utils
694
B
-rwxr-xr-x
2024-02-11 21:21
kmod
468
B
-rwxr-xr-x
2024-04-18 10:06
ntfs_3g
304
B
-rwxr-xr-x
2026-07-11 15:55
resume
3.19
KB
-rwxr-xr-x
2026-02-04 17:01
thermal
1.14
KB
-rwxr-xr-x
2024-04-22 10:21
udev
2.59
KB
-rwxr-xr-x
2026-03-24 13:45
zz-busybox-initramfs
2.18
KB
-rwxr-xr-x
2024-08-13 13:42
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 # windfarm_core or one of the windfarm_pm* modules. [ -r /proc/cpuinfo ] || exit 0 MODEL="$(grep model /proc/cpuinfo)" MODEL="${MODEL##*: }" case "$MODEL" in RackMac3,1) force_load windfarm_rm31 ;; PowerMac7,2|PowerMac7,3) force_load windfarm_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 windfarm_cpufreq_clamp \ windfarm_lm75_sensor windfarm_max6690_sensor windfarm_pid \ windfarm_smu_controls windfarm_smu_sat windfarm_smu_sensors ;; i386|amd64|ia64) manual_add_modules fan thermal ;; esac