Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 3178 → Rev 3179

/web/acc/admin/bl_filter.php
10,41 → 10,34
<div class="lds-spinner" id="spinner"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
</div>
<?
function form_filter ($form_content)
{
// réencodage iso + format unix + rc fin de ligne (ouf...)
function form_filter ($form_content){
// Re-encoding : ISO + unix format + end-of-line
$list = str_replace("\r\n", "\n", utf8_decode($form_content));
if (strlen($list) != 0){
if ($list[strlen($list)-1] != "\n") { $list[strlen($list)]="\n";} ;} ;
return $list;
}
function form_filter_ip($form_content, $color)
{
//# reconstruction des ip
 
function form_filter_ip($form_content, $color){
// IP reconstruction
$list = explode("\n", form_filter($form_content));
$new_list = "";
foreach ($list as &$value)
{
if(preg_match('/([0-9]{1,3}.){3}[0-9]{1,3}/', $value))
{
foreach ($list as &$value){
if(preg_match('/([0-9]{1,3}.){3}[0-9]{1,3}/', $value)){
$new_list = $new_list.$value."\n";
}
}
if($color == "white")
{
if($color == "white"){
return preg_replace("/(.*)\n/", "add wl_ip_allowed $1\n", $new_list);
}
else
{
else {
return preg_replace("/(.*)\n/", "add bl_ip_blocked $1\n", $new_list);
}
}
function echo_file ($filename)
{
if (file_exists($filename))
{
if (filesize($filename) != 0)
{
 
function echo_file ($filename){
if (file_exists($filename)){
if (filesize($filename) != 0){
$pointeur=fopen($filename,"r");
$tampon = fread($pointeur, filesize($filename));
fclose($pointeur);
51,17 → 44,14
echo $tampon;
}
}
else
{
else {
echo "$filename doesn't exist";
}
}
function echo_ip_file ($filename)
{
function echo_ip_file ($filename){
$filename = escapeshellarg($filename);
exec("cat $filename | cut -d ' ' -f3", $resultat);
for($i=0; $i<exec("wc -l $filename"); $i++)
{
for($i=0; $i<exec("wc -l $filename"); $i++){
echo $resultat[$i]."\n";
}
}
74,6 → 64,7
}
if($Language == 'fr'){
$l_bl="Liste noire principale";
$l_state="Sont actuellement bloqués : ";
$l_load="Chargement...";
$l_list_version="Version de la liste : ";
$l_bl_categories="Sélectionnez les catégories à filtrer";
110,9 → 101,9
$l_submit="Envoyer";
$l_nb_ip="Nombre d'IP";
$l_nb_domain_names="Nombre de noms de domaine";
$l_nbDomainNames="Noms de domaine :";
$l_nbUrl="Url :";
$l_nbIp="Ip :";
$l_nbDomainNames="noms de domaine";
$l_nbUrl="URL";
$l_nbIp="@Ip";
$l_update_cat="Blacklist principale (catégorie 'malware' uniquement)";
$l_update_cat_header="Mise à jour automatique des Blacklists";
$l_update_success="Échec de la mise à jour";
161,9 → 152,9
$l_submit="Enviar";
$l_nb_ip="Números de IP";
$l_nb_domain_names="Números de sitios";
$l_nbDomainNames="Domain names: ";
$l_nbUrl="Url :";
$l_nbIp="Ip :";
$l_nbDomainNames="sitios";
$l_nbUrl="URL";
$l_nbIp="IP@";
$l_update_cat="¿Actualizar automáticamente las categorías cada 12 horas (solo 'malware' por ahora)?";
$l_update_cat_header="Actualización automática de la lista negra";
$l_update_success="actualización fallida";
245,29 → 236,24
$updateable_ossi_bls=["ossi-bl-candc"];
 
# default values
if (is_file ($conf_file))
{
if (is_file ($conf_file)){
$tab=file($conf_file);
if ($tab)
{
foreach ($tab as $line)
{
if ($tab){
foreach ($tab as $line){
$field=explode("=", $line);
switch ($field[0]) {
switch ($field[0]){
case 'PRIVATE_IP':
$PRIVATE_IP_MASK=trim($field[1]);
$tmp = explode("/",$PRIVATE_IP_MASK);
$PRIVATE_IP=$tmp[0];
break;
 
case 'BL_SAFESEARCH':
if (strtolower(trim($field[1])) == 'on') {
if (strtolower(trim($field[1])) == 'on'){
$bl_safesearch='on';
}
break;
 
case 'BL_PUREIP':
if (strtolower(trim($field[1])) == 'on') {
if (strtolower(trim($field[1])) == 'on'){
$bl_pureip='on';
}
break;
277,8 → 263,7
}
else { echo "$l_error_open_file $conf_file";}
if (isset($_POST['choix'])){ $choix=$_POST['choix']; } else { $choix=""; }
switch ($choix)
{
switch ($choix){
case 'Download_list' :
exec ("sudo /usr/local/bin/alcasar-bl.sh --download");
break;
290,14 → 275,11
unlink ("$dir_tmp/blacklists.tar.gz"); unlink ("$dir_tmp/md5sum");
break;
case 'MAJ_cat_bl' :
if (file_exists($bl_categories_enabled))
{
if (file_exists($bl_categories_enabled)){
exec("/bin/sed -i \"/^ossi-/!d\" $bl_categories_enabled"); // keep ossi custom categories
$pointeur=fopen($bl_categories_enabled, "a+");
foreach ($_POST as $key => $value)
{
if (strstr($key,'chk-'))
{
foreach ($_POST as $key => $value){
if (strstr($key,'chk-')){
$line=str_replace('chk-','',$key)."\n";
fwrite($pointeur,$line);
}
322,8 → 304,7
case 'Specific_filtering':
$bl_pureip='off';
$bl_safesearch='off';
foreach ($_POST as $key => $value)
{
foreach ($_POST as $key => $value){
if (strstr($key,'chk-ip')) $bl_pureip="on";
if (strstr($key,'chk-safesearch')) $bl_safesearch="on";
}
330,43 → 311,32
exec ("sudo /usr/local/bin/alcasar-url_filter_bl.sh -safesearch_$bl_safesearch -pureip_$bl_pureip");
break;
case 'MAJ_ossi_file' :
foreach ($_POST as $fichier => $value)
{
if($fichier != "choix" && $fichier != "update_cat")
{
foreach ($_POST as $fichier => $value){
if($fichier != "choix" && $fichier != "update_cat"){
$action=$_POST[$fichier];
if($action == $l_remove) //delete
{
if($action == $l_remove){ //delete
exec("/bin/sed -i ".escapeshellarg("/^$fichier\$/d")." $bl_categories_enabled");
exec("/bin/sed -i ".escapeshellarg("/$fichier\$/d")." $bl_categories");
exec("rm -rf $dir_blacklist".escapeshellarg($fichier));
exec("sudo /usr/local/bin/alcasar-bl.sh --reload");
}
if($action == $l_disable) //disable
{
 
if($action == $l_disable){ //disable
exec("/bin/sed -i ".escapeshellarg("/^$fichier\$/d")." $bl_categories_enabled");
exec("sudo /usr/local/bin/alcasar-bl.sh --reload");
}
if($action == $l_enable) //enable
{
if($action == $l_enable){ //enable
file_put_contents($bl_categories_enabled, $fichier."\n", FILE_APPEND);
exec("sudo /usr/local/bin/alcasar-bl.sh --reload 2>&1", $out, $ret);
}
if($action == $l_update) //update
{
if ($fichier == ossi-bl-candc)
{
if($action == $l_update){ //update
if ($fichier == ossi-bl-candc){
exec("sudo /usr/local/bin/alcasar-bl-autoupdate.sh --update_ossi-bl-candc 2>&1", $out, $ret);
if ($ret == 0)
{
if ($ret == 0){
echo "<p>".$l_update_success."</p>";
}
else
{
else {
echo "<p>".$l_update_failed.":</p>";
foreach ($out as $line)
{
foreach ($out as $line){
echo "<p>".$line."</p>";
}
}
381,20 → 351,13
fclose($f);
$f = fopen($update_file_ossi_cat, 'w');
fclose($f);
foreach ($_POST as $fichier => $value)
{
// General BL
if ($fichier == 'update_cat' && $value == 1)
{
if (file_exists($bl_categories_enabled))
{
foreach ($_POST as $fichier => $value){ // General BL
if ($fichier == 'update_cat' && $value == 1){
if (file_exists($bl_categories_enabled)){
file_put_contents($update_file_cat, "malware rsync://ftp.ut-capitole.fr/blacklist/dest/malware\n", FILE_APPEND);
}
}
// C&C Server List
if ($fichier == 'ossi-bl-candc' && $value == 1)
{
if ($fichier == 'ossi-bl-candc' && $value == 1){ // C&C Server List
file_put_contents($update_file_ossi_cat, "alcasar-bl-autoupdate.sh --update_ossi-bl-candc\n", FILE_APPEND);
}
}
403,20 → 366,17
$bad_char = array(" ", ".");
$file_name = str_replace ($bad_char, "_",basename($_FILES['fichier_ip']['name']));
$dest_dir = $dir_blacklist."ossi-bl-".$file_name; # /etc/e2guardian/list/blacklist/ossi-bl-XXXXXXXX
if((!empty($file_name)) && (!file_exists($dest_dir)))
{
if((!empty($file_name)) && (!file_exists($dest_dir))){
exec("mkdir ".escapeshellarg($dest_dir));
$file=$_FILES['fichier_ip']['tmp_name'];
exec('/usr/bin/dos2unix '.escapeshellarg($file));
if(move_uploaded_file($_FILES['fichier_ip']['tmp_name'], $dest_dir."/domains")) // copy in the file "domains" (containing @ip & domain names (like over Toulouse categories))
{
if(move_uploaded_file($_FILES['fichier_ip']['tmp_name'], $dest_dir."/domains")){ // copy in the file "domains" (containing @ip & domain names (like over Toulouse categories))
touch ($dest_dir."/urls"); // create the URL file even if it isn't used
file_put_contents ($bl_categories, $dest_dir."\n", FILE_APPEND); // add to the categories list
file_put_contents ($bl_categories_enabled, "ossi-bl-".$file_name."\n", FILE_APPEND); //Enabled by default
exec("sudo /usr/local/bin/alcasar-bl.sh --reload");
}
else
{
else {
exec("rm -rf ".escapeshellarg($dest_dir));
echo $l_error_upload;
}
463,22 → 423,20
<?php
echo "<center>";
// total number of IP, DNS & URLs
$nbDomainNames = exec("wc -l /usr/local/share/unbound-bl/* | tail -n 1 | awk '{print $1}'") / 2;
$nbDomainNames = exec("wc -l $dir_bl_domain_names_enabled* | tail -n 1 | awk '{print $1}'2") / 2;
$nbUrl = exec("for file in `find /etc/e2guardian/lists/blacklists/ -name 'urls'`; do nb=$((nb+$(wc -l \$file | awk '{print $1}'))); done; echo \$nb");
$nbIp = exec("wc -l /usr/local/share/iptables-bl/* | tail -n 1 | awk '{print $1}'");
echo "<b>$l_nbDomainNames</b> $nbDomainNames, <b>$l_nbUrl</b> $nbUrl, <b>$l_nbIp</b> $nbIp<br/>";
$nbIp = exec("wc -l $dir_bl_ip_enabled* | tail -n 1 | awk '{print $1}'");
echo "$l_state $nbDomainNames <b>$l_nbDomainNames</b>, $nbUrl <b>$l_nbUrl</b>, $nbIp <b>$l_nbIp</b><br/>";
echo "$l_bl_categories</center></td></tr>";
//read & display all BL categories (checked or not)
//read & display all categories (checked or not)
$cols=1;
if (file_exists($bl_categories))
{
if (file_exists($bl_categories)){
$bl_files = file($bl_categories);
$bl_files = preg_grep("/ossi-/", $bl_files, 1); // don't display ossi custom categories
foreach ($bl_files as $fichier => $value)
{
foreach ($bl_files as $fichier => $value){
if ($cols == 1) { echo "<tr>";}
$categorie=trim(basename($value));
echo "<td><a href='bl_categories_help.php?liste=bl&cat=$categorie' target='cat_help' onclick=\"window.open('bl_categories_help.php','cat_help','width=600,height=450,toolbar=no,scrollbars=yes,resizable=yes')\" title='categories help page'>$categorie</a><br>";
echo "<td><a href='bl_categories_help.php?cat=$categorie' target='cat_help' onclick=\"window.open('bl_categories_help.php','cat_help','width=600,height=450,toolbar=no,scrollbars=yes,resizable=yes')\" title='categories help page'>$categorie</a><br>";
echo "<input type='checkbox' name='chk-$categorie'";
// if the line is commented, the category is disable
if (preg_match('/^#/',$value, $r)) { echo ">";}
485,7 → 443,7
else { echo " checked>"; }
echo "</td>";
$cols++;
if ($cols > 10) {
if ($cols > 10){
echo "</tr>\n";
$cols=1;
}
494,7 → 452,6
else {
echo "$l_error_open_file $bl_categories";
}
 
echo "</tr>\n";
echo "<tr><td valign='middle' align='left' colspan=10>";
echo "<center>
538,15 → 495,13
//list OSSI custom categories
$fichiersbl = array_diff(scandir($dir_blacklist), array('..','.','ossi-bl','ossi-wl'));
$fichiersbl = preg_grep("/^ossi-bl-/",$fichiersbl);
foreach ($fichiersbl as $fichier => $value)
{
echo "<tr><td><center><a href='bl_categories_help.php?liste=bl&cat=$value&filtre=domain' target='cat_help' onclick=\"window.open('bl_categories_help','cat_help','width=600,height=450,toolbar=no,scrollbars=yes,resizable=yes')\" title='categories help page'>".substr($value,8)."</a></center></td><td><center>".exec("wc -l $dir_bl_ip$value | cut -d\" \" -f1")."</center></td><td><center>".exec("wc -l $dir_bl_domain_names$value.conf | cut -d\" \" -f1")."</center></td><td><center><input type='submit' name='$value'";
foreach ($fichiersbl as $fichier => $value){
echo "<tr><td><center><a href='bl_categories_help.php?cat=$value&filtre=domain' target='cat_help' onclick=\"window.open('bl_categories_help','cat_help','width=600,height=450,toolbar=no,scrollbars=yes,resizable=yes')\" title='categories help page'>".substr($value,8)."</a></center></td><td><center>".exec("wc -l $dir_bl_ip$value | cut -d\" \" -f1")."</center></td><td><center>".exec("wc -l $dir_bl_domain_names$value.conf | cut -d\" \" -f1")."</center></td><td><center><input type='submit' name='$value'";
if (file_exists ($dir_bl_domain_names_enabled.$value)) echo " value='$l_disable'>"; else echo " value='$l_enable'>";
echo "</center></td><td><center><input type='submit' name='$value' value='$l_remove'></center></td>";
if (in_array($value,$updateable_ossi_bls)) echo "<td><center><input type='submit' name='$value' value='$l_update'></center></td>"; else echo "<td><center>$l_no_update_configured</center></td>";
echo "</tr>";
}
 
echo "</table>";
echo "</form><br></td>";
echo "<td width=50% colspan=5 align=center><H3>$l_add_file</H3>";
584,9 → 539,7
echo "<input type='radio' name='update_cat' value=1 ".$update_select[1]." >".$l_enable;
echo "</td>";
// Display update checkbox for each updateable ossi-bl
foreach ($updateable_ossi_bls as $value)
{
//check if autoupdate is enabled
foreach ($updateable_ossi_bls as $value){ //check if autoupdate is enabled
$update_ossi_select = ["", ""];
if ( strpos(file_get_contents($update_file_ossi_cat),$value) !== false ) $update_ossi_select[1] = "checked";
else $update_ossi_select[0] = "checked";