⚝
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
/
pptp-client
/
View File Name :
edit_opts.cgi
#!/usr/bin/perl # edit_opts.cgi # Display PPP options for all connections require './pptp-client-lib.pl'; &ui_print_header(undef, $text{'opts_title'}, ""); print &text('opts_desc', "
$config{'pptp_options'}
"),"
\n"; @opts = &parse_ppp_options($config{'pptp_options'}); print "
\n"; print "
\n"; print "
$text{'opts_header'}
\n"; print "
\n"; $mtu = &find("mtu", \@opts); printf "
$text{'opts_mtu'}
\n"; printf "
%s\n", $mtu ? "" : "checked", $text{'default'}; printf "
\n", $mtu ? "checked" : ""; print "
bytes
\n"; $mru = &find("mru", \@opts); printf "
$text{'opts_mru'}
\n"; printf "
%s\n", $mru ? "" : "checked", $text{'default'}; printf "
\n", $mru ? "checked" : ""; print "
bytes
\n"; print "
\n"; print "
$text{'opts_msdesc'}
\n"; # Show MPPE options &mppe_options_form(\@opts); print "
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});