Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.44.253
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
etc /
NetworkManager /
dispatcher.d /
Delete
Unzip
Name
Size
Permission
Date
Action
no-wait.d
[ DIR ]
drwxr-xr-x
2020-07-21 18:00
pre-down.d
[ DIR ]
drwxr-xr-x
2020-07-21 18:00
pre-up.d
[ DIR ]
drwxr-xr-x
2020-07-21 18:00
11-dhclient
1.04
KB
-rwxr-xr-x
2020-04-24 14:15
20-chrony
428
B
-rwxr-xr-x
2019-05-10 10:22
cloud-init-azure-hook
719
B
-rwxr-xr-x
2020-08-06 20:49
Save
Rename
#!/bin/sh # This file is part of cloud-init. See LICENSE file for license information. # This script hooks into NetworkManager(8) via its scripts # arguments are 'interface-name' and 'action' # is_azure() { local dmi_path="/sys/class/dmi/id/board_vendor" vendor="" if [ -e "$dmi_path" ] && read vendor < "$dmi_path"; then [ "$vendor" = "Microsoft Corporation" ] && return 0 fi return 1 } is_enabled() { # only execute hooks if cloud-init is enabled and on azure [ -e /run/cloud-init/enabled ] || return 1 is_azure } if is_enabled; then case "$1:$2" in *:up) exec cloud-init dhclient-hook up "$1";; *:down) exec cloud-init dhclient-hook down "$1";; esac fi