⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
snap
/
core
/
17210
/
usr
/
lib
/
fwupdate
/
Edit File: cleanup
#!/bin/sh set -e if [ -e "/var/cache/fwupdate/done" ]; then exit 0 fi efibootmgr -q BOOTNUM=$(efibootmgr | grep "Linux.Firmware.Updater" | sed "s/\ .*//; s/*//; s/Boot//") if [ -n "$BOOTNUM" ]; then for num in $BOOTNUM; do efibootmgr -q -b $num -B done fi for x in /boot/efi/EFI/ubuntu/fw/fwupdate-* ; do if [ "${x}" != "/boot/efi/EFI/ubuntu/fw/fwupdate-*" ]; then rm -f "${x}" fi done for x in /sys/firmware/efi/efivars/fwupdate-*-0abba7dc-e516-4167-bbf5-4d9d1c739416 ; do if [ "${x}" != "/sys/firmware/efi/efivars/fwupdate-*-0abba7dc-e516-4167-bbf5-4d9d1c739416" ]; then chattr -i "${x}" rm -f "${x}" fi done touch "/var/cache//fwupdate/done"
Simpan