⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.30
Server IP:
45.79.8.107
Server:
Linux localhost 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.2-1ubuntu2.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
sbin
/
View File Name :
add-shell
#!/bin/sh -e if test $# -eq 0 then echo "usage: $0 shellname [shellname ...]" exit 1 fi file=/etc/shells # I want this to be GUARANTEED to be on the same filesystem as $file tmpfile="${file}.tmp" set -o noclobber cleanup() { rm -f "$tmpfile" } trap cleanup EXIT if ! awk '{print}' "$file" > "$tmpfile" then cat 1>&2 <
> "$tmpfile" fi done done chmod --reference="${file}" "${tmpfile}" || chmod $(stat -c %a "${file}") "${tmpfile}" chown --reference="${file}" "${tmpfile}" || chown $(stat -c %U "${file}") "${tmpfile}" mv -Z "${tmpfile}" "${file}" || mv "${tmpfile}" "${file}" trap "" EXIT exit 0