One Hat Cyber Team
Your IP :
18.217.69.43
Server IP :
104.21.96.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
lib
/
dpkg
/
info
/
View File Name :
iputils-ping.postinst
#!/bin/sh set -e PROGRAM=$(dpkg-divert --truename /bin/ping) if [ "$1" = configure ]; then # If we have setcap installed, try setting cap_net_raw+ep, # which allows us to install our binaries without the setuid # bit. if command -v setcap > /dev/null; then if setcap cap_net_raw+ep $PROGRAM; then chmod u-s $PROGRAM else echo "Setcap failed on $PROGRAM, falling back to setuid" >&2 chmod u+s $PROGRAM fi else echo "Setcap is not installed, falling back to setuid" >&2 chmod u+s $PROGRAM fi fi exit 0 # Local variables: # mode: shell-script # tab-width: 4 # indent-tabs-mode: nil # end: