⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.146
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
proc
/
self
/
root
/
usr
/
share
/
bug
/
View File Name :
cryptsetup-initramfs
#!/bin/bash cat <<EOF Providing additional information can help diagnose problems with cryptsetup. Specifically, this would include: - kernel cmdline (copy of /proc/cmdline). - crypttab configuration (copy of /etc/crypttab). - fstab configuration (copy of /etc/fstab). If this information is not relevant for your bug report or you have privacy concerns, please choose no. EOF yesno "Do you want to provide additional information [Y|n]? " yep [ "$REPLY" = yep ] || exit 0 exec >&3 echo "-- /proc/cmdline" cat /proc/cmdline echo if [ -r /etc/crypttab ]; then echo "-- /etc/crypttab" cat /etc/crypttab echo fi if [ -r /etc/fstab ]; then echo "-- /etc/fstab" cat /etc/fstab echo fi echo "-- lsmod" lsmod echo