Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
acct
2.06
KB
-rwxr-xr-x
apache-htcacheclean
2.43
KB
-rwxr-xr-x
apache2
7.99
KB
-rwxr-xr-x
apparmor
3.65
KB
-rwxr-xr-x
apport
2.85
KB
-rwxr-xr-x
atd
1.05
KB
-rwxr-xr-x
cachefilesd
7.08
KB
-rwxr-xr-x
console-setup.sh
1.2
KB
-rwxr-xr-x
cron
2.99
KB
-rwxr-xr-x
cryptdisks
937
B
-rwxr-xr-x
cryptdisks-early
896
B
-rwxr-xr-x
dbus
3.08
KB
-rwxr-xr-x
fail2ban
6.85
KB
-rwxr-xr-x
gological
565
B
-rwxr-xr-x
gophysical
513
B
-rwxr-xr-x
grub-common
985
B
-rwxr-xr-x
hwclock.sh
1.71
KB
-rwxr-xr-x
ipmievd
3.09
KB
-rwxr-xr-x
irqbalance
2.58
KB
-rwxr-xr-x
iscsid
1.47
KB
-rwxr-xr-x
keyboard-setup.sh
1.44
KB
-rwxr-xr-x
kmod
2
KB
-rwxr-xr-x
lvm2
695
B
-rwxr-xr-x
lvm2-lvmpolld
586
B
-rwxr-xr-x
mpt-statusd
5.95
KB
-rwxr-xr-x
ndn-debuglogging
1.02
KB
-rwxr-xr-x
ndn-iptables.disable
2.16
KB
-rwxr-xr-x
ndn-megacli
749
B
-rwxr-xr-x
networking
4.38
KB
-rwxr-xr-x
nfs-common
5.53
KB
-rwxr-xr-x
nginx
4.47
KB
-rwxr-xr-x
ntp
1.46
KB
-rwxr-xr-x
open-iscsi
2.38
KB
-rwxr-xr-x
open-vm-tools
1.8
KB
-rwxr-xr-x
openipmi
13.46
KB
-rwxr-xr-x
php8.1-fpm.dpkg-new
4.19
KB
-rwxr-xr-x
plymouth
1.35
KB
-rwxr-xr-x
plymouth-log
760
B
-rwxr-xr-x
postfix
3.02
KB
-rwxr-xr-x
prepstandby
358
B
-rwxr-xr-x
procps
959
B
-rwxr-xr-x
proftpd
5.2
KB
-rwxr-xr-x
rpcbind
2.45
KB
-rwxr-xr-x
rsync
4.31
KB
-rwxr-xr-x
screen-cleanup
1.19
KB
-rwxr-xr-x
scsitools-pre.sh
2.24
KB
-rwxr-xr-x
scsitools.sh
2.72
KB
-rwxr-xr-x
smartmontools
3.02
KB
-rwxr-xr-x
ssh
3.96
KB
-rwxr-xr-x
standby
2.86
KB
-rwxr-xr-x
stunnel4
5.6
KB
-rwxr-xr-x
sysstat
1.54
KB
-rwxr-xr-x
udev
6.71
KB
-rwxr-xr-x
ufw
2.03
KB
-rwxr-xr-x
unattended-upgrades
1.36
KB
-rwxr-xr-x
uuidd
1.28
KB
-rwxr-xr-x
x11-common
2.7
KB
-rwxr-xr-x
zabbix-agent
1.54
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scsitools.sh
#!/bin/sh ### BEGIN INIT INFO # Provides: scsitools # Required-Start: checkroot scsitools-pre # Required-Stop: # X-Start-Before: checkfs # Default-Start: S # Default-Stop: # Short-Description: Create aliases for SCSI devices under /dev/scsi ### END INIT INFO # # This is the second part of populating /dev/scsi. Now / is writable, so # remove the ramdisk and recreate the tree. # When used with restart/force-reload argument, also rescan the SCSI bus to be # sure the contents of /dev/scsi is in sync with accessible hardware. # # Written by Eric Delaunay <delaunay@debian.org> based on sources found in # scsidev 2.10 from Kurt Garloff <garloff@suse.de>. # # Licensed under GPL. . /lib/lsb/init-functions scsidevrw=0 # is /dev/scsi writable at boot time? needscsidev=0 # is scsidev needed at all? swapdev=0 # is there swap device on /dev/scsi/... ? # set needscsidev to 1 if /dev/scsi is referenced in /etc/fstab and set # scsidevrw to 1 if /dev/scsi is a ramdisk (mounted from scsitools-pre.sh) if [ ! -e /dev/.devfsd ]; then if grep -q '^/dev/scsi' /etc/fstab; then needscsidev=1 if [ ! -d /dev/scsi/lost+found ]; then scsidevrw=1 fi fi fi case "$1" in start) # if running from rcS, needscsidev & scsidevrw are already set by # scsitools-pre.sh to either 0 or 1. if [ -x /sbin/scsidev -a "$needscsidev" = 1 -a "$scsidevrw" = 0 ]; then # no need to rerun scsidev if previously done on a writable fs by # scsitools-pre.sh, otherwise... echo "Setting up SCSI devices (second part)..." # disable swap in case it is using a device under /dev/scsi # (/dev/scsi/swapdev used to be living on a ramdisk that have to be # destroyed) if grep -q '^/dev/scsi/' /proc/swaps; then swapoff -a swapdev=1 fi # if using a ramdisk, free it first # (test is always true except when no support for ramdisk in kernel) if grep -q "/dev/ram3 .*/dev/scsi" /proc/mounts; then umount -n /dev/scsi blockdev --flushbufs /dev/ram3 fi /sbin/scsidev -r -q # execute swapon again, in case we want to swap to another device # residing out of the boot disk. if [ $swapdev = 1 ]; then swapon -a fi fi ;; restart | force-reload) if [ -x /sbin/scsidev -a "$needscsidev" = 1 ]; then echo "Setting up SCSI devices..." # rescan the SCSI bus first /sbin/rescan-scsi-bus -r -w # then fills /dev/scsi again according to detected devices /sbin/scsidev -r -q fi ;; reload) if [ -x /sbin/scsidev -a "$needscsidev" = 1 ]; then echo "Setting up SCSI devices..." # only sets up /dev/scsi contents again /sbin/scsidev -r -q fi ;; stop) # nothing to stop here. ;; *) echo "Usage: $0 {start|stop|restart|reload|force-reload}" exit 1 ;; esac unset needscsidev scsidevrw
Close