⚝
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
/
webmin
/
View File Name :
third_chooser.cgi
#!/usr/bin/perl # third_chooser.cgi # Display a list of third-party modules for installation $trust_unknown_referers = 1; require './webmin-lib.pl'; &popup_header($text{'third_title'}); $mods = &list_third_modules(); if (!ref($mods)) { print "
",&text('third_failed', $mods),"
\n"; } else { print "
"; print &ui_textbox("filter",$text{'ui_filterbox'}, 50, 0, undef,"style='width:100%;color:#aaa;' onkeyup=\"filter_match(this.value,'row',true);\" onfocus=\"if (this.value == '".$text{'ui_filterbox'}."') {this.value = '';this.style.color='#000';}\" onblur=\"if (this.value == '') {this.value = '".$text{'ui_filterbox'}."';this.style.color='#aaa';}\""); print &ui_hr("style='wdith:100%;'")."
"; print "
$text{'third_header'}
\n"; print "\n"; @table = ( ); $cnt = 0; foreach $m (@$mods) { push(@table, [ &ui_link("#", $m->[0], undef, "onClick='return select(\"$m->[2]\");'"), $m->[1] eq "NONE" ? "" : &html_escape($m->[1]), $m->[3], ]); $cnt++; } print &ui_columns_table(undef, 100, \@table); } if ( $cnt >= 10 ) { print ""; print ""; } &popup_footer();