⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.171
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 :
~
/
snap
/
core
/
17210
/
usr
/
lib
/
fwupdate
/
View File Name :
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"