OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2582
/
usr
/
share
/
bug
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/29/2025 04:07:52 PM
rwxr-xr-x
📁
bash-completion
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📄
cryptsetup
763 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
cryptsetup-bin
763 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📁
dbus
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📄
dpkg
202 bytes
09/05/2019 09:05:14 PM
rwxr-xr-x
📁
file
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
init-system-helpers
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📄
libcryptsetup12
763 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📁
libmagic1
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
mime-support
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
procps
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
systemd
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
udev
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📁
vim-tiny
-
04/29/2025 04:07:53 PM
rwxr-xr-x
Editing: cryptsetup
Close
#!/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