require 'samba-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the samba module sub acl_security_form { print "<tr>\n<td><b>$text{'acl_apply'}</b></td> <td>\n"; printf "<input type=radio name=apply value=1 %s> $text{'yes'}\n", $_[0]->{'apply'} ? "checked" : ""; printf "<input type=radio name=apply value=0 %s> $text{'no'}</td>\n", $_[0]->{'apply'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_view_all_con'}</b></td> <td>\n"; printf "<input type=radio name=view_all_con value=1 %s> $text{'yes'}\n", $_[0]->{'view_all_con'} ? "checked" : ""; printf "<input type=radio name=view_all_con value=0 %s> $text{'no'}</td>\n", $_[0]->{'view_all_con'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_kill_con'}</b></td> <td>\n"; printf "<input type=radio name=kill_con value=1 %s> $text{'yes'}\n", $_[0]->{'kill_con'} ? "checked" : ""; printf "<input type=radio name=kill_con value=0 %s> $text{'no'}</td>\n", $_[0]->{'kill_con'} ? "" : "checked"; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; print "<tr>\n<td><b>$text{'acl_conf_net'}</b></td> <td>\n"; printf "<input type=radio name=conf_net value=1 %s> $text{'yes'}\n", $_[0]->{'conf_net'} ? "checked" : ""; printf "<input type=radio name=conf_net value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_net'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_conf_smb'}</b></td> <td>\n"; printf "<input type=radio name=conf_smb value=1 %s> $text{'yes'}\n", $_[0]->{'conf_smb'} ? "checked" : ""; printf "<input type=radio name=conf_smb value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_smb'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_conf_pass'}</b></td> <td>\n"; printf "<input type=radio name=conf_pass value=1 %s> $text{'yes'}\n", $_[0]->{'conf_pass'} ? "checked" : ""; printf "<input type=radio name=conf_pass value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_pass'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_conf_print'}</b></td> <td>\n"; printf "<input type=radio name=conf_print value=1 %s> $text{'yes'}\n", $_[0]->{'conf_print'} ? "checked" : ""; printf "<input type=radio name=conf_print value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_print'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_conf_misc'}</b></td> <td>\n"; printf "<input type=radio name=conf_misc value=1 %s> $text{'yes'}\n", $_[0]->{'conf_misc'} ? "checked" : ""; printf "<input type=radio name=conf_misc value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_misc'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_swat'}</b></td> <td>\n"; printf "<input type=radio name=swat value=1 %s> $text{'yes'}\n", $_[0]->{'swat'} ? "checked" : ""; printf "<input type=radio name=swat value=0 %s> $text{'no'}</td>\n", $_[0]->{'swat'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_manual'}</b></td> <td>\n"; printf "<input type=radio name=manual value=1 %s> $text{'yes'}\n", $_[0]->{'manual'} ? "checked" : ""; printf "<input type=radio name=manual value=0 %s> $text{'no'}</td>\n", $_[0]->{'manual'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_winbind'}</b></td> <td>\n"; printf "<input type=radio name=winbind value=1 %s> $text{'yes'}\n", $_[0]->{'winbind'} ? "checked" : ""; printf "<input type=radio name=winbind value=0 %s> $text{'no'}</td>\n", $_[0]->{'winbind'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_bind'}</b></td> <td>\n"; printf "<input type=radio name=conf_bind value=1 %s> $text{'yes'}\n", $_[0]->{'conf_bind'} ? "checked" : ""; printf "<input type=radio name=conf_bind value=0 %s> $text{'no'}</td>\n", $_[0]->{'conf_bind'} ? "" : "checked"; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # encripted passwords print "<tr>\n<td $tb><b>$text{'acl_enc_passwd_opts'}</b></td></tr> \n"; print "<tr>\n<td><b>$text{'acl_view_users'}</b></td> <td>\n"; printf "<input type=radio name=view_users value=1 %s> $text{'yes'}\n", $_[0]->{'view_users'} ? "checked" : ""; printf "<input type=radio name=view_users value=0 %s> $text{'no'}</td>\n", $_[0]->{'view_users'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_maint_users'}</b></td> <td>\n"; printf "<input type=radio name=maint_users value=1 %s> $text{'yes'}\n", $_[0]->{'maint_users'} ? "checked" : ""; printf "<input type=radio name=maint_users value=0 %s> $text{'no'}</td>\n", $_[0]->{'maint_users'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_maint_makepass'}</b></td> <td>\n"; printf "<input type=radio name=maint_makepass value=1 %s> $text{'yes'}\n", $_[0]->{'maint_makepass'} ? "checked" : ""; printf "<input type=radio name=maint_makepass value=0 %s> $text{'no'}</td>\n", $_[0]->{'maint_makepass'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_maint_sync'}</b></td> <td>\n"; printf "<input type=radio name=maint_sync value=1 %s> $text{'yes'}\n", $_[0]->{'maint_sync'} ? "checked" : ""; printf "<input type=radio name=maint_sync value=0 %s> $text{'no'}</td>\n", $_[0]->{'maint_sync'} ? "" : "checked"; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # encripted passwords print "<tr>\n<td $tb><b>$text{'acl_group_opts'}</b></td></tr> \n"; print "<tr>\n<td><b>$text{'acl_maint_groups'}</b></td> <td>\n"; printf "<input type=radio name=maint_groups value=1 %s> $text{'yes'}\n", $_[0]->{'maint_groups'} ? "checked" : ""; printf "<input type=radio name=maint_groups value=0 %s> $text{'no'}</td>\n", $_[0]->{'maint_groups'} ? "" : "checked"; print "</tr>\n"; print "<tr>\n<td><b>$text{'acl_maint_gsync'}</b></td> <td>\n"; printf "<input type=radio name=maint_gsync value=1 %s> $text{'yes'}\n", $_[0]->{'maint_gsync'} ? "checked" : ""; printf "<input type=radio name=maint_gsync value=0 %s> $text{'no'}</td>\n", $_[0]->{'maint_gsync'} ? "" : "checked"; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # hide print "<tr>\n<td><b>$text{'acl_hide'}</b></td> <td>\n"; printf "<input type=radio name=hide value=1 %s> $text{'yes'}\n", $_[0]->{'hide'} == 1 ? "checked" : ""; printf "<input type=radio name=hide value=0 %s> $text{'no'}</td>\n", $_[0]->{'hide'} == 0 ? "checked" : ""; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # global acls print "<tr>\n<td><b>$text{'acl_afs'}</b></td>\n"; print "<td colspan=3>\n"; printf "<input type=checkbox name=c_fs value=1 %s> %s\n", $_[0]->{'c_fs'} ? "checked" : "", $text{"acl_c"}; printf "<input type=checkbox name=r_fs value=1 %s> %s\n", $_[0]->{'r_fs'} ? "checked" : "", $text{"acl_r"}; printf "<input type=checkbox name=w_fs value=1 %s> %s\n", $_[0]->{'w_fs'} ? "checked" : "", $text{"acl_w"}; print "</td> </tr>\n"; print "<tr>\n<td><b>$text{'acl_aps'}</b></td>\n"; print "<td colspan=3>\n"; printf "<input type=checkbox name=c_ps value=1 %s> %s\n", $_[0]->{'c_ps'} ? "checked" : "", $text{"acl_c"}; printf "<input type=checkbox name=r_ps value=1 %s> %s\n", $_[0]->{'r_ps'} ? "checked" : "", $text{"acl_r"}; printf "<input type=checkbox name=w_ps value=1 %s> %s\n", $_[0]->{'w_ps'} ? "checked" : "", $text{"acl_w"}; print "</td> </tr>\n"; print "<tr>\n<td><b>$text{'acl_copy'}</b></td> <td>\n"; printf "<input type=radio name=copy value=1 %s> $text{'yes'}\n", $_[0]->{'copy'} ? "checked" : ""; printf "<input type=radio name=copy value=0 %s> $text{'no'}</td>\n", $_[0]->{'copy'} ? "" : "checked"; print "</tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # per-share acls print "<tr><td><b>$text{'acl_per_fs_acls'}</b></td> <td>\n"; printf "<input type=radio name=per_fs_acls value=1 %s> $text{'yes'}\n", $_[0]->{'per_fs_acls'} ? "checked" : ""; printf "<input type=radio name=per_fs_acls value=0 %s> $text{'no'}\n", $_[0]->{'per_fs_acls'} ? "" : "checked"; print "</td></tr>\n"; print "<tr><td><b>$text{'acl_per_ps_acls'}</b></td> <td>\n"; printf "<input type=radio name=per_ps_acls value=1 %s> $text{'yes'}\n", $_[0]->{'per_ps_acls'} ? "checked" : ""; printf "<input type=radio name=per_ps_acls value=0 %s> $text{'no'}\n", $_[0]->{'per_ps_acls'} ? "" : "checked"; print "</td></tr>\n"; print "<tr> <td colspan=4><hr></td> </tr>\n"; # table print "<tr> <td colspan=4>\n<table border width=100%>\n"; printf "<th $tb colspan=7><b>%s</b></th>\n", $text{'acl_per_share_acls'}; print "<tr $tb>\n"; printf "<td rowspan=2><b>%s</b></td>\n", $text{'acl_sname'}; printf "<td rowspan=2><b>%s</b></td>\n", $text{'acl_saccess'}; printf "<td rowspan=2><b>%s</b></td>\n", $text{'acl_sconn'}; printf "<th colspan=4><b>%s</b></th>\n", $text{'acl_sopthdr'}; print "</tr>\n<tr $tb>\n"; printf "<td><b>%s</b></td>\n", $text{'acl_ssec'}; printf "<td><b>%s</b></td>\n", $text{'acl_sperm'}; printf "<td><b>%s</b></td>\n", $text{'acl_snaming'}; printf "<td><b>%s<br>%s</b></td>\n", $text{'acl_smisc'}, $text{'acl_sprn'}; print "</tr>\n"; foreach (&list_shares()) { &display_acl_row($_[0], $_); } print "</table> </td> </tr>\n"; } # acl_security_save(&options) # Parse the form for security options for the samba module sub acl_security_save { if ($in{'r_fs'} < $in{'w_fs'} || $in{'r_ps'} < $in{'w_ps'}) { &error($text{'acl_ernow'}); } # If create, read, AND write are all turned off... don't SHOW file shares... $_[0]->{'conf_fs'}=1; if ($in{'c_fs'} == "" && $in{'r_fs'} == "" && $in{'w_fs'} == "") { $_[0]->{'conf_fs'}=0; } # If create, read, AND write are all turned off... don't SHOW print shares... $_[0]->{'conf_ps'}=1; if ($in{'c_ps'} == "" && $in{'r_ps'} == "" && $in{'w_ps'} == "") { $_[0]->{'conf_ps'}=0; } $_[0]->{'apply'}=$in{'apply'}; $_[0]->{'view_all_con'}=$in{'view_all_con'}; $_[0]->{'kill_con'}=$in{'kill_con'}; $_[0]->{'conf_net'}=$in{'conf_net'}; $_[0]->{'conf_smb'}=$in{'conf_smb'}; $_[0]->{'conf_pass'}=$in{'conf_pass'}; $_[0]->{'conf_print'}=$in{'conf_print'}; $_[0]->{'conf_misc'}=$in{'conf_misc'}; $_[0]->{'swat'}=$in{'swat'}; $_[0]->{'manual'}=$in{'manual'}; $_[0]->{'hide'}=$in{'hide'}; $_[0]->{'per_fs_acls'}=$in{'per_fs_acls'}; $_[0]->{'per_ps_acls'}=$in{'per_ps_acls'}; $_[0]->{'c_fs'}=$in{'c_fs'}; $_[0]->{'r_fs'}=$in{'r_fs'}; $_[0]->{'w_fs'}=$in{'w_fs'}; $_[0]->{'c_ps'}=$in{'c_ps'}; $_[0]->{'r_ps'}=$in{'r_ps'}; $_[0]->{'w_ps'}=$in{'w_ps'}; $_[0]->{'copy'}=$in{'copy'}; $_[0]->{'view_users'}=$in{'view_users'}; $_[0]->{'maint_users'}=$in{'maint_users'}; $_[0]->{'maint_makepass'}=$in{'maint_makepass'}; $_[0]->{'maint_sync'}=$in{'maint_sync'}; $_[0]->{'maint_groups'}=$in{'maint_groups'}; $_[0]->{'maint_gsync'}=$in{'maint_gsync'}; $_[0]->{'winbind'}=$in{'winbind'}; $_[0]->{'conf_bind'}=$in{'conf_bind'}; foreach (keys %in) { $_[0]->{$1} .= $in{$_} if /^\w\w_(ACL\w\w_\w+)$/; } } # display_acl_row(\%access, $share_name) sub display_acl_row { local($acc,$name)=@_; local %share; &get_share($name); local $stype=&istrue('printable') ? 'ps' : 'fs'; local $aclname='ACL' . $stype . '_' . $name; #display row print "<tr>\n"; printf $stype eq 'fs' ? "<td><b>%s</b></td>\n" : "<td><b><i>%s</i></td>\n", $name; &display_acl_cell($acc, $name, 'r', 'w', $aclname, $text{'acl_na'}, $text{'acl_r1'}, $text{'acl_rw'}); &display_acl_cell($acc, $name, 'v', 'V', $aclname, $text{'acl_na'}, $text{'acl_view'}, $text{'acl_kill'}); &display_acl_cell($acc, $name, 's', 'S', $aclname, $text{'acl_na'}, $text{'acl_view'}, $text{'acl_edit'}); $stype eq 'fs' ? &display_acl_cell($acc, $name, 'p', 'P', $aclname, $text{'acl_na'}, $text{'acl_view'}, $text{'acl_edit'}) : print "<td> </td>\n"; $stype eq 'fs' ? &display_acl_cell($acc, $name, 'n', 'N', $aclname, $text{'acl_na'}, $text{'acl_view'}, $text{'acl_edit'}) : print "<td> </td>\n"; &display_acl_cell($acc, $name, 'o', 'O', $aclname, $text{'acl_na'}, $text{'acl_view'}, $text{'acl_edit'}); print "</tr>\n"; } #display_acl_cell(\%access, $name, # $rperm, $wperm, $aclname, # $text1, $text2, $text3) sub display_acl_cell { local ($acc, $name, $rp, $wp, $aclname, $text1, $text2, $text3) = @_; local $rn = $rp . $wp . '_' . $aclname; print "<td>\n"; if($acc->{$aclname}) { printf "<input type=radio name=$rn value='' %s> %s<br>\n", !&perm_to($rp, $acc, $aclname) ? "checked" : "", $text1; printf "<input type=radio name=$rn value='$rp' %s> %s<br>\n", &perm_to($rp, $acc, $aclname) && !&perm_to($rp.$wp, $acc, $aclname) ? "checked" : "",$text2; printf "<input type=radio name=$rn value='$rp$wp' %s> %s\n", &perm_to($rp.$wp, $acc, $aclname) ? "checked" : "", $text3; } else { printf "<input type=radio name=$rn value='' checked> %s<br>\n", $text1; printf "<input type=radio name=$rn value='$rp'> %s<br>\n", $text2; printf "<input type=radio name=$rn value='$rp$wp'> %s\n", $text3; } print "</td>\n"; } # perm_to($permissions_string,\%access,$ACLname) # check only per-share permissions sub perm_to { local $acl=$_[1]->{$_[2]}; foreach (split //,$_[0]) { return 0 if index($acl,$_) == -1; } return 1; } 1;
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 2.06 KB | 0644 |
|
acl_security.pl | File | 12.76 KB | 0755 |
|
ask_epass.cgi | File | 1.46 KB | 0755 |
|
backup_config.pl | File | 752 B | 0755 |
|
cgi_args.pl | File | 1012 B | 0755 |
|
conf_bind.cgi | File | 1.56 KB | 0755 |
|
conf_misc.cgi | File | 2.05 KB | 0755 |
|
conf_net.cgi | File | 2.6 KB | 0755 |
|
conf_pass.cgi | File | 2.36 KB | 0755 |
|
conf_print.cgi | File | 1.17 KB | 0755 |
|
conf_smb.cgi | File | 3.75 KB | 0755 |
|
config-AlmaLinux-7.0-ALL | File | 533 B | 0644 |
|
config-Amazon-Linux-2-ALL | File | 488 B | 0644 |
|
config-CentOS-Linux-7.0-ALL | File | 533 B | 0644 |
|
config-CentOS-Stream-Linux-8.0-ALL | File | 533 B | 0644 |
|
config-CloudLinux-8.0-ALL | File | 533 B | 0644 |
|
config-Oracle-Linux-8.0-ALL | File | 533 B | 0644 |
|
config-Redhat-Enterprise-Linux-7.0-ALL | File | 488 B | 0644 |
|
config-Rocky-Linux-7.0-ALL | File | 533 B | 0644 |
|
config-Scientific-Linux-7.0-ALL | File | 488 B | 0644 |
|
config-aix | File | 539 B | 0644 |
|
config-cobalt-linux | File | 418 B | 0644 |
|
config-coherent-linux | File | 502 B | 0644 |
|
config-corel-linux | File | 405 B | 0644 |
|
config-debian-linux | File | 427 B | 0644 |
|
config-debian-linux-2.1 | File | 405 B | 0644 |
|
config-debian-linux-2.2-7.9 | File | 690 B | 0644 |
|
config-debian-linux-8.0-ALL | File | 578 B | 0644 |
|
config-freebsd | File | 721 B | 0644 |
|
config-freebsd-8-ALL | File | 813 B | 0644 |
|
config-generic-linux | File | 547 B | 0644 |
|
config-gentoo-linux | File | 545 B | 0644 |
|
config-hpux | File | 574 B | 0644 |
|
config-irix | File | 593 B | 0644 |
|
config-lfs-linux | File | 418 B | 0644 |
|
config-macos | File | 621 B | 0644 |
|
config-macos-1.5-ALL | File | 517 B | 0644 |
|
config-mandrake-linux | File | 476 B | 0644 |
|
config-mandrake-linux-8.1-ALL | File | 484 B | 0644 |
|
config-msc-linux | File | 480 B | 0644 |
|
config-netbsd | File | 642 B | 0644 |
|
config-open-linux | File | 482 B | 0644 |
|
config-openSUSE-Linux-15.0-ALL | File | 519 B | 0644 |
|
config-openbsd | File | 647 B | 0644 |
|
config-openmamba-linux | File | 496 B | 0644 |
|
config-openserver | File | 593 B | 0644 |
|
config-osf1 | File | 593 B | 0644 |
|
config-pardus-linux | File | 403 B | 0644 |
|
config-redhat-linux | File | 490 B | 0644 |
|
config-redhat-linux-10.0-15.0 | File | 502 B | 0644 |
|
config-redhat-linux-16.0-23.0 | File | 559 B | 0644 |
|
config-redhat-linux-24.0-ALL | File | 563 B | 0644 |
|
config-redhat-linux-7.0-9.0 | File | 502 B | 0644 |
|
config-slackware-linux | File | 452 B | 0644 |
|
config-slackware-linux-7.0-7.1 | File | 470 B | 0644 |
|
config-slackware-linux-8.0-ALL | File | 533 B | 0644 |
|
config-sol-linux | File | 528 B | 0644 |
|
config-solaris | File | 593 B | 0644 |
|
config-solaris-10-ALL | File | 461 B | 0644 |
|
config-solaris-8-9 | File | 533 B | 0644 |
|
config-suse-linux | File | 452 B | 0644 |
|
config-suse-linux-13.0-ALL | File | 494 B | 0644 |
|
config-suse-linux-7.3-8.0 | File | 470 B | 0644 |
|
config-suse-linux-8.2-12.9 | File | 545 B | 0644 |
|
config-syno-linux | File | 293 B | 0644 |
|
config-trustix-linux | File | 492 B | 0644 |
|
config-turbo-linux | File | 418 B | 0644 |
|
config-united-linux | File | 492 B | 0644 |
|
config-unixware | File | 593 B | 0644 |
|
config.info | File | 918 B | 0644 |
|
config.info.bg | File | 1.54 KB | 0644 |
|
config.info.ca | File | 1.02 KB | 0644 |
|
config.info.cs | File | 746 B | 0644 |
|
config.info.da | File | 991 B | 0644 |
|
config.info.de | File | 1.15 KB | 0644 |
|
config.info.es | File | 880 B | 0644 |
|
config.info.fa | File | 1.09 KB | 0644 |
|
config.info.fr | File | 940 B | 0644 |
|
config.info.ja | File | 834 B | 0644 |
|
config.info.nl | File | 953 B | 0644 |
|
config.info.no | File | 975 B | 0644 |
|
config.info.pl | File | 1.08 KB | 0644 |
|
config.info.pt_BR | File | 869 B | 0644 |
|
config.info.ru | File | 891 B | 0644 |
|
config.info.ru.UTF-8 | File | 887 B | 0644 |
|
config.info.sv | File | 638 B | 0644 |
|
config.info.tr | File | 442 B | 0644 |
|
config.info.uk | File | 939 B | 0644 |
|
config.info.zh | File | 510 B | 0644 |
|
config.info.zh_TW | File | 748 B | 0644 |
|
create_copy.cgi | File | 735 B | 0755 |
|
defaultacl | File | 369 B | 0644 |
|
delete_euser.cgi | File | 464 B | 0755 |
|
delete_share.cgi | File | 632 B | 0755 |
|
delete_shares.cgi | File | 607 B | 0755 |
|
edit_epass.cgi | File | 880 B | 0755 |
|
edit_euser.cgi | File | 2.59 KB | 0755 |
|
edit_fmisc.cgi | File | 2.21 KB | 0755 |
|
edit_fname.cgi | File | 1.74 KB | 0755 |
|
edit_fperm.cgi | File | 1.85 KB | 0755 |
|
edit_fshare.cgi | File | 3.2 KB | 0755 |
|
edit_group.cgi | File | 1.82 KB | 0755 |
|
edit_gsync.cgi | File | 1.08 KB | 0755 |
|
edit_manual.cgi | File | 583 B | 0755 |
|
edit_popts.cgi | File | 1.82 KB | 0755 |
|
edit_pshare.cgi | File | 3.27 KB | 0755 |
|
edit_sec.cgi | File | 3.06 KB | 0755 |
|
edit_sync.cgi | File | 1.23 KB | 0755 |
|
edit_winbind.cgi | File | 800 B | 0755 |
|
index.cgi | File | 9.34 KB | 0755 |
|
install_check.pl | File | 365 B | 0755 |
|
kill_user.cgi | File | 719 B | 0755 |
|
kill_users.cgi | File | 783 B | 0755 |
|
list_groups.cgi | File | 1.11 KB | 0755 |
|
log_parser.pl | File | 1.78 KB | 0755 |
|
logout.cgi | File | 305 B | 0755 |
|
make_epass.cgi | File | 4.24 KB | 0755 |
|
module.info | File | 246 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 117 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 165 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 179 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 212 B | 0644 |
|
module.info.ca | File | 104 B | 0644 |
|
module.info.ca.auto | File | 24 B | 0644 |
|
module.info.cs | File | 47 B | 0644 |
|
module.info.cs.auto | File | 104 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 114 B | 0644 |
|
module.info.de | File | 106 B | 0644 |
|
module.info.de.auto | File | 22 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 264 B | 0644 |
|
module.info.es | File | 60 B | 0644 |
|
module.info.es.auto | File | 100 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 143 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 180 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 130 B | 0644 |
|
module.info.fr | File | 47 B | 0644 |
|
module.info.fr.auto | File | 96 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 145 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 144 B | 0644 |
|
module.info.hu | File | 0 B | 0644 |
|
module.info.hu.auto | File | 158 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 124 B | 0644 |
|
module.info.ja | File | 41 B | 0644 |
|
module.info.ja.auto | File | 119 B | 0644 |
|
module.info.ko | File | 39 B | 0644 |
|
module.info.ko.auto | File | 107 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 157 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 149 B | 0644 |
|
module.info.ms | File | 104 B | 0644 |
|
module.info.ms.auto | File | 23 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 120 B | 0644 |
|
module.info.nl | File | 34 B | 0644 |
|
module.info.nl.auto | File | 88 B | 0644 |
|
module.info.no | File | 32 B | 0644 |
|
module.info.no.auto | File | 82 B | 0644 |
|
module.info.pl | File | 125 B | 0644 |
|
module.info.pl.auto | File | 24 B | 0644 |
|
module.info.pt | File | 51 B | 0644 |
|
module.info.pt.auto | File | 98 B | 0644 |
|
module.info.pt_BR | File | 60 B | 0644 |
|
module.info.pt_BR.auto | File | 104 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 141 B | 0644 |
|
module.info.ru | File | 36 B | 0644 |
|
module.info.ru.auto | File | 151 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 136 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 138 B | 0644 |
|
module.info.sv | File | 29 B | 0644 |
|
module.info.sv.auto | File | 88 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 235 B | 0644 |
|
module.info.tr | File | 41 B | 0644 |
|
module.info.tr.auto | File | 115 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 226 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 207 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 133 B | 0644 |
|
module.info.zh | File | 35 B | 0644 |
|
module.info.zh.auto | File | 78 B | 0644 |
|
module.info.zh_TW | File | 36 B | 0644 |
|
module.info.zh_TW.auto | File | 84 B | 0644 |
|
opts.pl.dev | File | 6.37 KB | 0644 |
|
prefs.info | File | 17 B | 0644 |
|
rbac-mapping | File | 457 B | 0644 |
|
readonly-share.pl | File | 477 B | 0755 |
|
readwrite-share.pl | File | 481 B | 0755 |
|
restart.cgi | File | 1.33 KB | 0755 |
|
restart_wb.cgi | File | 816 B | 0755 |
|
samba-lib.pl | File | 25.98 KB | 0755 |
|
save_bind.cgi | File | 1.34 KB | 0755 |
|
save_copy.cgi | File | 711 B | 0755 |
|
save_euser.cgi | File | 1.62 KB | 0755 |
|
save_fmisc.cgi | File | 1.37 KB | 0755 |
|
save_fname.cgi | File | 1012 B | 0755 |
|
save_fperm.cgi | File | 1.13 KB | 0755 |
|
save_fshare.cgi | File | 2.63 KB | 0755 |
|
save_group.cgi | File | 1.2 KB | 0755 |
|
save_gsync.cgi | File | 522 B | 0755 |
|
save_manual.cgi | File | 395 B | 0755 |
|
save_misc.cgi | File | 2.05 KB | 0755 |
|
save_net.cgi | File | 1.75 KB | 0755 |
|
save_pass.cgi | File | 2.17 KB | 0755 |
|
save_popts.cgi | File | 1.2 KB | 0755 |
|
save_print.cgi | File | 916 B | 0755 |
|
save_pshare.cgi | File | 2.22 KB | 0755 |
|
save_sec.cgi | File | 2.14 KB | 0755 |
|
save_smb.cgi | File | 2.21 KB | 0755 |
|
save_sync.cgi | File | 691 B | 0755 |
|
save_winbind.cgi | File | 902 B | 0755 |
|
set-hostname-workgroup.pl | File | 737 B | 0755 |
|
smbhash.pl | File | 17.88 KB | 0755 |
|
start.cgi | File | 748 B | 0755 |
|
start_wb.cgi | File | 621 B | 0755 |
|
stop.cgi | File | 492 B | 0755 |
|
stop_wb.cgi | File | 422 B | 0755 |
|
swat.cgi | File | 3.17 KB | 0755 |
|
swat_save.cgi | File | 515 B | 0755 |
|
useradmin_update.pl | File | 4.69 KB | 0755 |
|
view_users.cgi | File | 3.04 KB | 0755 |
|