⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
mount
/
Edit File: nfs_export.cgi
#!/usr/bin/perl # nfs_export.cgi # Display a list of NFS exports on some host for the user to choose from require './mount-lib.pl'; &ReadParse(); &popup_header(&text('nfs_choose', &html_escape($in{'server'}))); print <<EOF; <script> function choose(f) { top.opener.ifield.value = f; window.close(); } </script> EOF if ($error = &exports_list($in{'server'}, \@dirs, \@clients)) { print "<b>",&text('nfs_failed', &html_escape($in{'server'}), "<p><tt>$error</tt><p>"),"</b>\n"; exit; } print "<b>$text{'nfs_seldir'}</b>\n"; if (defined(&nfs_max_version) && &nfs_max_version($in{'server'}) >= 4) { print "<br>$text{'nfs_seldirv4'}\n"; } print "<table border width=100%>\n"; print "<tr $tb> <td><b>$text{'nfs_dir'}</b></td> ", "<td><b>$text{'nfs_clients'}</b></td> </tr>\n"; for($i=0; $i<@dirs; $i++) { print "<tr $cb>\n"; print "<td>".&ui_link("#", $dirs[$i], undef, "onClick='choose(\"$dirs[$i]\"); return false;'" ); print "</td>\n"; printf "<td>%s</td>\n", length($clients[$i]) > 45 ? &html_escape(substr($clients[$i], 0, 45))." ..." : &html_escape($clients[$i]); print "</tr>\n"; } print "</table>\n"; &popup_footer();
Simpan