⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
bind8
/
View File Name :
conf_ncheck.cgi
#!/usr/bin/perl # Check the whole BIND config and report problems use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; # Globals our (%access, %text, %config); require './bind8-lib.pl'; &ReadParse(); $access{'defaults'} || &error($text{'ncheck_ecannot'}); &ui_print_header(undef, $text{'ncheck_title'}, "", undef, undef, undef, undef, &restart_links()); my $file = &make_chroot($config{'named_conf'}); my @errs = &check_bind_config(); if (@errs) { # Show list of errors print "
",&text('ncheck_errs', "
$file
"),"
\n"; print "
\n"; foreach my $e (@errs) { print "
".&html_escape($e)."
\n"; } print "
\n"; } else { # All OK! print "
",&text('ncheck_allok', "
$file
"),"
\n"; } &ui_print_footer("", $text{'index_return'});