Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.226.82.161
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-hwe-6.8-headers-6.8.0-49 /
tools /
hv /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile
1.95
KB
-rw-r--r--
2024-03-10 20:38
hv_get_dhcp_info.sh
931
B
-rwxr-xr-x
2024-03-10 20:38
hv_get_dns_info.sh
622
B
-rwxr-xr-x
2024-03-10 20:38
hv_set_ifconfig.sh
2.45
KB
-rwxr-xr-x
2024-03-10 20:38
Save
Rename
#!/bin/bash # This example script parses /etc/resolv.conf to retrive DNS information. # In the interest of keeping the KVP daemon code free of distro specific # information; the kvp daemon code invokes this external script to gather # DNS information. # This script is expected to print the nameserver values to stdout. # Each Distro is expected to implement this script in a distro specific # fashion. For instance on Distros that ship with Network Manager enabled, # this script can be based on the Network Manager APIs for retrieving DNS # entries. cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'