Subversion Repositories ALCASAR

Rev

Rev 1865 | Rev 1870 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1865 Rev 1867
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<HTML><!-- written by Rexy -->
2
<HTML><!-- written by Rexy -->
3
<HEAD>
3
<HEAD>
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
<TITLE>ALCASAR DNS filtering</TITLE>
5
<TITLE>ALCASAR DNS filtering</TITLE>
6
<link rel="stylesheet" href="/css/style.css" type="text/css">
6
<link rel="stylesheet" href="/css/style.css" type="text/css">
7
</HEAD>
7
</HEAD>
8
<body>
8
<body>
9
<?
9
<?
10
function form_filter ($form_content)
10
function form_filter ($form_content)
11
{
11
{
12
// réencodage iso + format unix + rc fin de ligne (ouf...)
12
// réencodage iso + format unix + rc fin de ligne (ouf...)
13
	$list = str_replace("\r\n", "\n", utf8_decode($form_content));
13
	$list = str_replace("\r\n", "\n", utf8_decode($form_content));
14
	if (strlen($list) != 0){
14
	if (strlen($list) != 0){
15
		if ($list[strlen($list)-1] != "\n") { $list[strlen($list)]="\n";} ;} ;
15
		if ($list[strlen($list)-1] != "\n") { $list[strlen($list)]="\n";} ;} ;
16
	return $list;
16
	return $list;
17
}
17
}
18
function form_filter_ip($form_content, $color)
18
function form_filter_ip($form_content, $color)
19
{
19
{
20
	//# reconstruction des ip
20
	//# reconstruction des ip
21
	$list = explode("\n", form_filter($form_content));
21
	$list = explode("\n", form_filter($form_content));
22
	$new_list = "";
22
	$new_list = "";
23
	foreach($list as &$value)
23
	foreach($list as &$value)
24
	{
24
	{
25
		if(preg_match('/([0-9]{1,3}.){3}[0-9]{1,3}/', $value))
25
		if(preg_match('/([0-9]{1,3}.){3}[0-9]{1,3}/', $value))
26
		{
26
		{
27
			$new_list = $new_list.$value."\n";
27
			$new_list = $new_list.$value."\n";
28
		}
28
		}
29
	}
29
	}
30
	if($color == "white")
30
	if($color == "white")
31
	{
31
	{
32
		return preg_replace("/(.*)\n/", "add whitelist_ip_allowed $1\n", $new_list);
32
		return preg_replace("/(.*)\n/", "add wl_ip_allowed $1\n", $new_list);
33
	}
33
	}
34
	else
34
	else
35
	{
35
	{
36
		return preg_replace("/(.*)\n/", "add blacklist_ip_blocked $1\n", $new_list);
36
		return preg_replace("/(.*)\n/", "add bl_ip_blocked $1\n", $new_list);
37
	}
37
	}
38
}
38
}
39
function echo_file ($filename)
39
function echo_file ($filename)
40
	{
40
	{
41
	if (file_exists($filename))
41
	if (file_exists($filename))
42
		{
42
		{
43
		if (filesize($filename) != 0)
43
		if (filesize($filename) != 0)
44
			{
44
			{
45
			$pointeur=fopen($filename,"r");
45
			$pointeur=fopen($filename,"r");
46
			$tampon = fread($pointeur, filesize($filename));
46
			$tampon = fread($pointeur, filesize($filename));
47
			fclose($pointeur);
47
			fclose($pointeur);
48
			echo $tampon;
48
			echo $tampon;
49
			}
49
			}
50
		}
50
		}
51
	else
51
	else
52
		{
52
		{
53
		echo "$filename doesn't exist";
53
		echo "$filename doesn't exist";
54
		}
54
		}
55
	}
55
	}
56
function echo_ip_file ($filename)
56
function echo_ip_file ($filename)
57
{
57
{
58
	exec("cat $filename | cut -d ' ' -f3", $resultat);
58
	exec("cat $filename | cut -d ' ' -f3", $resultat);
59
	for($i=0; $i<exec("wc -l $filename"); $i++)
59
	for($i=0; $i<exec("wc -l $filename"); $i++)
60
	{
60
	{
61
		echo $resultat[$i]."\n";
61
		echo $resultat[$i]."\n";
62
	}
62
	}
63
}
63
}
64
 
64
 
65
#maximum length for top-level DNS
65
#maximum length for top-level DNS
66
function max_tld()
66
function max_tld()
67
{
67
{
68
	$url_tld = "http://data.iana.org/TLD/tlds-alpha-by-domain.txt";
68
	$url_tld = "http://data.iana.org/TLD/tlds-alpha-by-domain.txt";
69
	$result_tld = file_get_contents($url_tld,false);
69
	$result_tld = file_get_contents($url_tld,false);
70
	$max_tld = 18; 							#valeur de base si le site ne répond plus
70
	$max_tld = 18; 							#valeur de base si le site ne répond plus
71
	if($result_tld !== FALSE){
71
	if($result_tld !== FALSE){
72
		foreach(explode("\n", $result_tld) as $line)
72
		foreach(explode("\n", $result_tld) as $line)
73
		{
73
		{
74
			if((strpos($line,'-') === false) and (strpos($line,'#') === false))
74
			if((strpos($line,'-') === false) and (strpos($line,'#') === false))
75
			{
75
			{
76
				if(strlen($line) > $max_tld)
76
				if(strlen($line) > $max_tld)
77
				{
77
				{
78
					$max_tld = strlen($line);
78
					$max_tld = strlen($line);
79
				}
79
				}
80
			}
80
			}
81
		}
81
		}
82
	}
82
	}
83
	return $max_tld;
83
	return $max_tld;
84
}
84
}
85
 
85
 
86
# Choice of language
86
# Choice of language
87
$Language = 'en';
87
$Language = 'en';
88
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
88
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
89
  $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
89
  $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
90
  $Language = strtolower(substr(chop($Langue[0]),0,2)); }
90
  $Language = strtolower(substr(chop($Langue[0]),0,2)); }
91
if($Language == 'fr'){
91
if($Language == 'fr'){
92
  $l_bl="Liste noire générale";
92
  $l_bl="Liste noire générale";
93
  $l_load="Chargement...";
93
  $l_load="Chargement...";
94
  $l_list_version="Version de la liste : ";
94
  $l_list_version="Version de la liste : ";
95
  $l_bl_categories="Sélectionnez les catégories à filtrer";
95
  $l_bl_categories="Sélectionnez les catégories à filtrer";
96
  $l_download_bl="Télécharger la dernière version";
96
  $l_download_bl="Télécharger la dernière version";
97
  $l_fingerprint="L'empreinte numérique du fichier téléchargé est : ";
97
  $l_fingerprint="L'empreinte numérique du fichier téléchargé est : ";
98
  $l_fingerprint2="Vérifiez-là en suivant ce lien (ligne 'blacklists.tar.gz') : ";
98
  $l_fingerprint2="Vérifiez-là en suivant ce lien (ligne 'blacklists.tar.gz') : ";
99
  $l_activate_bl="Activer la nouvelle version";
99
  $l_activate_bl="Activer la nouvelle version";
100
  $l_reject_bl="Rejeter";
100
  $l_reject_bl="Rejeter";
101
  $l_warning="Temps estimé : une minute.";
101
  $l_warning="Temps estimé : une minute.";
102
  $l_specific_filtering="Filtrage special";
102
  $l_specific_filtering="Filtrage special";
103
  $l_forbidden_dns="Noms de domaine filtrés";
103
  $l_forbidden_dns="Noms de domaine filtrés";
104
  $l_one_dns="Entrez un nom de domaine par ligne (exemple : .domaine.org)";
104
  $l_one_dns="Entrez un nom de domaine par ligne (exemple : .domaine.org)";
105
  $l_maj_rehabilitated="Noms de domaine ou IP réhabilités";
105
  $l_maj_rehabilitated="Noms de domaine ou IP réhabilités";
106
  $l_rehabilitated_dns="Noms de domaine réhabilités";
106
  $l_rehabilitated_dns="Noms de domaine réhabilités";
107
  $l_rehabilitated_dns_explain="Entrez ici des noms de domaine bloqués par la liste noire <BR> que vous souhaitez réhabiliter.";
107
  $l_rehabilitated_dns_explain="Entrez ici des noms de domaine bloqués par la liste noire <BR> que vous souhaitez réhabiliter.";
108
  $l_add_to_bl="Noms de domaine ou IP ajoutés à la liste noire";
108
  $l_add_to_bl="Noms de domaine ou IP ajoutés à la liste noire";
109
  $l_forbidden_ip="IP filtrées";
109
  $l_forbidden_ip="IP filtrées";
110
  $l_forbidden_ip_explain="Entrez une IP par ligne (exemple : 123.123.123.123)<br/>ou une ADRESSE RESEAU (exemple : 123.123.0.0/16)";
110
  $l_forbidden_ip_explain="Entrez une IP par ligne (exemple : 123.123.123.123)<br/>ou une ADRESSE RESEAU (exemple : 123.123.0.0/16)";
111
  $l_rehabilitated_ip="IP réhabilitées";
111
  $l_rehabilitated_ip="IP réhabilitées";
112
  $l_rehabilitated_ip_explain="Entrez ici des IP bloquées par la liste noire <BR> que vous souhaitez réhabiliter.";
112
  $l_rehabilitated_ip_explain="Entrez ici des IP bloquées par la liste noire <BR> que vous souhaitez réhabiliter.";
113
  $l_one_ip="Entrez une IP par ligne (exemple : 123.123.123.123)";
113
  $l_one_ip="Entrez une IP par ligne (exemple : 123.123.123.123)";
114
  $l_record="Enregistrer les modifications";
114
  $l_record="Enregistrer les modifications";
115
  $l_wait="Une fois validées, 10 secondes sont nécessaires pour traiter vos modifications";
115
  $l_wait="Une fois validées, 10 secondes sont nécessaires pour traiter vos modifications";
116
  $l_ip_filtering="Filtrer les URLs contenant une adresse IP au lieu d'un nom de domaine (ex: http://25.56.58.59/index.htm)";
116
  $l_ip_filtering="Filtrer les URLs contenant une adresse IP au lieu d'un nom de domaine (ex: http://25.56.58.59/index.htm)";
117
  $l_safe_searching="Activer le contrôle scolaire/parental des moteurs de recherche google.";
117
  $l_safe_searching="Activer le contrôle scolaire/parental des moteurs de recherche google.";
118
  $l_safe_youtube="Pour un Youtube restreint, suivez les étapes ici : "; 
118
  $l_safe_youtube="Pour un Youtube restreint, suivez les étapes ici : "; 
119
  $l_youtube_id="(<a href='https://support.google.com/youtube/answer/174084?hl=fr' target='cat_help' onclick=window.open('https://support.google.com/youtube/answer/174084?hl=fr','cat_help','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes') title='Youtube for school'>lien pour créer un identifiant Youtube (Id)</a>)";
119
  $l_youtube_id="(<a href='https://support.google.com/youtube/answer/174084?hl=fr' target='cat_help' onclick=window.open('https://support.google.com/youtube/answer/174084?hl=fr','cat_help','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes') title='Youtube for school'>lien pour créer un identifiant Youtube (Id)</a>)";
120
  $l_error_open_file="Erreur d'ouverture du fichier";
120
  $l_error_open_file="Erreur d'ouverture du fichier";
121
  $l_additional_file_title="Fichiers de 'listes noires' additionnels";
121
  $l_additional_file_title="Fichiers de 'listes noires' additionnels";
122
  $l_file_list="Liste des fichiers";
122
  $l_file_list="Liste des fichiers";
123
  $l_add_file="Ajouter un fichier";
123
  $l_add_file="Ajouter un fichier";
124
  $l_add_file_explain="Chaque ligne du fichier doit être une adresse IP ou un nom de domaine"; 
124
  $l_add_file_explain="Chaque ligne du fichier doit être une adresse IP ou un nom de domaine"; 
125
  $l_file_name="Nom du fichier";
125
  $l_file_name="Nom du fichier";
126
  $l_file_remove="Supprimer";
126
  $l_file_remove="Supprimer";
127
  $l_error_upload="Erreur d'envoi du fichier";
127
  $l_error_upload="Erreur d'envoi du fichier";
128
  $l_remove="Supprimer";
128
  $l_remove="Supprimer";
129
  $l_submit="Envoyer";
129
  $l_submit="Envoyer";
130
  $l_nb_ip="Nombre d'IP";
130
  $l_nb_ip="Nombre d'IP";
131
  $l_nb_domain_names="Nombre de noms de domaine";
131
  $l_nb_domain_names="Nombre de noms de domaine";
132
  $l_nbDomainNames="Noms de domaine :";
132
  $l_nbDomainNames="Noms de domaine :";
133
  $l_nbUrl="Url :";
133
  $l_nbUrl="Url :";
134
  $l_nbIp="Ip :";
134
  $l_nbIp="Ip :";
135
}
135
}
136
else {
136
else {
137
  $l_bl="BlackList";
137
  $l_bl="BlackList";
138
  $l_load="Loading...";
138
  $l_load="Loading...";
139
  $l_list_version="List version : ";
139
  $l_list_version="List version : ";
140
  $l_bl_categories="Select the categories to filter";
140
  $l_bl_categories="Select the categories to filter";
141
  $l_download_bl="Download the last version";
141
  $l_download_bl="Download the last version";
142
  $l_fingerprint="The digital fingerprint of the downloaded blacklist is : ";
142
  $l_fingerprint="The digital fingerprint of the downloaded blacklist is : ";
143
  $l_fingerprint2="Verify it with this link (line 'blacklists.tar.gz') : ";
143
  $l_fingerprint2="Verify it with this link (line 'blacklists.tar.gz') : ";
144
  $l_activate_bl="Activate the new version";
144
  $l_activate_bl="Activate the new version";
145
  $l_reject_bl="Reject";
145
  $l_reject_bl="Reject";
146
  $l_warning="Estimated time : one minute.";
146
  $l_warning="Estimated time : one minute.";
147
  $l_specific_filtering="Specific filtering";
147
  $l_specific_filtering="Specific filtering";
148
  $l_forbidden_dns="Filtered domain names";
148
  $l_forbidden_dns="Filtered domain names";
149
  $l_allowed_dns="Allowed domain names";
149
  $l_allowed_dns="Allowed domain names";
150
  $l_one_dns="Enter one domain name per row (example : .domain.org)";
150
  $l_one_dns="Enter one domain name per row (example : .domain.org)";
151
  $l_maj_rehabilitated="Domain names or IP rehabilitated";
151
  $l_maj_rehabilitated="Domain names or IP rehabilitated";
152
  $l_rehabilitated_dns="Rehabilitated domain names";
152
  $l_rehabilitated_dns="Rehabilitated domain names";
153
  $l_rehabilitated_dns_explain="Enter here domain names that are blocked by the blacklist <BR> and you want to rehabilitate.";
153
  $l_rehabilitated_dns_explain="Enter here domain names that are blocked by the blacklist <BR> and you want to rehabilitate.";
154
  $l_add_to_bl="Domain names or IP to add to blacklist";
154
  $l_add_to_bl="Domain names or IP to add to blacklist";
155
  $l_forbidden_ip="Filtered IP";
155
  $l_forbidden_ip="Filtered IP";
156
  $l_forbidden_ip_explain="Enter one IP per row (example : 123.123.123.123)<br/>or a NETWORK ADDRESS (example : 123.123.0.0/16)";
156
  $l_forbidden_ip_explain="Enter one IP per row (example : 123.123.123.123)<br/>or a NETWORK ADDRESS (example : 123.123.0.0/16)";
157
  $l_rehabilitated_ip="Rehabilitated IP";
157
  $l_rehabilitated_ip="Rehabilitated IP";
158
  $l_rehabilitated_ip_explain="Enter here IP that are blocked by the blacklist <BR> and you want to rehabilitate.";
158
  $l_rehabilitated_ip_explain="Enter here IP that are blocked by the blacklist <BR> and you want to rehabilitate.";
159
  $l_one_ip="Enter one IP per row (example : 123.123.123.123)";
159
  $l_one_ip="Enter one IP per row (example : 123.123.123.123)";
160
  $l_record="Save changes";
160
  $l_record="Save changes";
161
  $l_wait="Once validated, 10 seconds are necessary to compute your modifications";
161
  $l_wait="Once validated, 10 seconds are necessary to compute your modifications";
162
  $l_ip_filtering="Filtering URLs that contain an IP address instead of a domain name (ie: http://25.56.58.59/index.htm)";
162
  $l_ip_filtering="Filtering URLs that contain an IP address instead of a domain name (ie: http://25.56.58.59/index.htm)";
163
  $l_safe_searching="Enabling school/parental control for the search engines google, yahoo, bing, metacrawler and Youtube."; 
163
  $l_safe_searching="Enabling school/parental control for the search engines google, yahoo, bing, metacrawler and Youtube."; 
164
  $l_safe_youtube="For safe Youtube, follow these steps : "; 
164
  $l_safe_youtube="For safe Youtube, follow these steps : "; 
165
  $l_youtube_id="(<a href='https://support.google.com/youtube/answer/174084?hl=en' target='cat_help' onclick=window.open('https://support.google.com/youtube/answer/174084?hl=en','cat_help','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes') title='Youtube for school'>link to create a Youtube Id</a>)";
165
  $l_youtube_id="(<a href='https://support.google.com/youtube/answer/174084?hl=en' target='cat_help' onclick=window.open('https://support.google.com/youtube/answer/174084?hl=en','cat_help','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes') title='Youtube for school'>link to create a Youtube Id</a>)";
166
  $l_error_open_file="Error opening file";
166
  $l_error_open_file="Error opening file";
167
  $l_additional_file_title="Additional blacklist files";
167
  $l_additional_file_title="Additional blacklist files";
168
  $l_file_list="Files list";
168
  $l_file_list="Files list";
169
  $l_add_file="Add a file";
169
  $l_add_file="Add a file";
170
  $l_add_file_explain="Each line of the file must be an IP address or a domain name"; 
170
  $l_add_file_explain="Each line of the file must be an IP address or a domain name"; 
171
  $l_file_name="Filename";
171
  $l_file_name="Filename";
172
  $l_file_remove="Remove";
172
  $l_file_remove="Remove";
173
  $l_error_upload="Error during the upload process";
173
  $l_error_upload="Error during the upload process";
174
  $l_remove="Delete";
174
  $l_remove="Delete";
175
  $l_submit="Submit";
175
  $l_submit="Submit";
176
  $l_nb_ip="Number of IP";
176
  $l_nb_ip="Number of IP";
177
  $l_nb_domain_names="Number of domain names";
177
  $l_nb_domain_names="Number of domain names";
178
  $l_nbDomainNames="Domain names :";
178
  $l_nbDomainNames="Domain names :";
179
  $l_nbUrl="Url :";
179
  $l_nbUrl="Url :";
180
  $l_nbIp="Ip :";
180
  $l_nbIp="Ip :";
181
}
181
}
182
$dir_etc="/usr/local/etc/";
182
$dir_etc="/usr/local/etc/";
183
$dir_dg="/etc/dansguardian/lists/";
183
$dir_dg="/etc/dansguardian/lists/";
184
$dir_bl_ip="/usr/local/share/iptables-bl/";
184
$dir_bl_ip="/usr/local/share/iptables-bl/";
185
$bl_categories=$dir_etc."alcasar-bl-categories";
185
$bl_categories=$dir_etc."alcasar-bl-categories";
186
$bl_categories_enabled=$dir_etc."alcasar-bl-categories-enabled";
186
$bl_categories_enabled=$dir_etc."alcasar-bl-categories-enabled";
187
$conf_file=$dir_etc."alcasar.conf";
187
$conf_file=$dir_etc."alcasar.conf";
188
$dir_blacklist=$dir_dg."blacklist/";
188
$dir_blacklist=$dir_dg."blacklist/";
189
$urlregex_file=$dir_dg."urlregexplist";
189
$urlregex_file=$dir_dg."urlregexplist";
190
$bannedsite_file=$dir_dg."bannedsitelist";
190
$bannedsite_file=$dir_dg."bannedsitelist";
191
$dir_tmp="/tmp/blacklists";
191
$dir_tmp="/tmp/blacklists";
192
$upload_dir_ip = "/usr/local/share/iptables-bl-enabled/";
192
$upload_dir_ip = "/usr/local/share/iptables-bl-enabled/";
193
$upload_dir_domain_names = "/usr/local/share/dnsmasq-bl-enabled/";
193
$upload_dir_domain_names = "/usr/local/share/dnsmasq-bl-enabled/";
194
$cron_apache = "/etc/cron.d/alcasar-update-categories";
194
$cron_apache = "/etc/cron.d/alcasar-update-cat";
195
# default values
195
# default values
196
if (is_file ($conf_file))
196
if (is_file ($conf_file))
197
	{
197
	{
198
	$tab=file($conf_file);
198
	$tab=file($conf_file);
199
	if ($tab)
199
	if ($tab)
200
		{
200
		{
201
		foreach ($tab as $line)
201
		foreach ($tab as $line)
202
			{
202
			{
203
			$field=explode("=", $line);
203
			$field=explode("=", $line);
204
			if ($field[0] == "PRIVATE_IP")
204
			if ($field[0] == "PRIVATE_IP")
205
				{
205
				{
206
				$PRIVATE_IP_MASK=trim($field[1]);
206
				$PRIVATE_IP_MASK=trim($field[1]);
207
				$tmp = explode("/",$PRIVATE_IP_MASK);
207
				$tmp = explode("/",$PRIVATE_IP_MASK);
208
				$PRIVATE_IP=$tmp[0];
208
				$PRIVATE_IP=$tmp[0];
209
				}
209
				}
210
			}
210
			}
211
		}
211
		}
212
	}
212
	}
213
else { echo "$l_error_open_file $conf_file";}
213
else { echo "$l_error_open_file $conf_file";}
214
if (isset($_POST['choix'])){ $choix=$_POST['choix']; } else { $choix=""; }
214
if (isset($_POST['choix'])){ $choix=$_POST['choix']; } else { $choix=""; }
215
switch ($choix)
215
switch ($choix)
216
{
216
{
217
case 'Download_list' :
217
case 'Download_list' :
218
	exec ("sudo /usr/local/bin/alcasar-bl.sh --download");
218
	exec ("sudo /usr/local/bin/alcasar-bl.sh --download");
219
	break;
219
	break;
220
case 'Active_list' :
220
case 'Active_list' :
221
	exec ("sudo /usr/local/bin/alcasar-bl.sh --adapt");
221
	exec ("sudo /usr/local/bin/alcasar-bl.sh --adapt");
222
	exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
222
	exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
223
	break;
223
	break;
224
case 'Reject_list' :
224
case 'Reject_list' :
225
	unlink ("$dir_tmp/blacklists.tar.gz"); unlink ("$dir_tmp/md5sum");
225
	unlink ("$dir_tmp/blacklists.tar.gz"); unlink ("$dir_tmp/md5sum");
226
	break;
226
	break;
227
case 'MAJ_cat_bl' :
227
case 'MAJ_cat_bl' :
228
	if (file_exists($bl_categories_enabled))
228
	if (file_exists($bl_categories_enabled))
229
	{
229
	{
230
		$cron_malware = 0;
230
		$cron_malware = 0;
231
		$pointeur=fopen($bl_categories_enabled, "w+");
231
		$pointeur=fopen($bl_categories_enabled, "w+");
232
		foreach ($_POST as $key => $value)
232
		foreach ($_POST as $key => $value)
233
			{
233
			{
234
			if (strstr($key,'chk-'))
234
			if (strstr($key,'chk-'))
235
			{	
235
			{	
236
				$line=str_replace('chk-','',$key)."\n";
236
				$line=str_replace('chk-','',$key)."\n";
237
				fwrite($pointeur,$line);
237
				fwrite($pointeur,$line);
-
 
238
				if(trim($line) == 'malware')
238
				
239
				{
-
 
240
					$cron_malware = 1;
-
 
241
					$fichier=fopen($cron_apache,"w+");
-
 
242
					fputs($fichier, "# update malware categories every 12 hours\n");
-
 
243
					fputs($fichier, "* 0-23/12 * * * /usr/local/bin/alcasar-bl.sh --update-cat malware rsync://ftp.ut-capitole.fr/blacklist/dest/malware\n");
-
 
244
				}
239
			}
245
			}
240
			}
246
			}
-
 
247
			if(!$cron_malware)
-
 
248
			{
-
 
249
				$fichier=fopen($cron_apache,"w+");
-
 
250
				fputs($fichier, "# malware updates disabled\n");
-
 
251
			}
241
			
252
			
242
		fclose($pointeur);
253
		fclose($pointeur);
243
		}
254
		}
244
	else {echo "$l_error_open_file $bl_categories_enabled";}
255
	else {echo "$l_error_open_file $bl_categories_enabled";}
245
	$fichier=fopen($dir_dg."blacklists/ossi/domains","w+");
256
	$fichier=fopen($dir_dg."blacklists/ossi/domains","w+");
246
	fputs($fichier, form_filter($_POST['OSSI_bl_domains']));
257
	fputs($fichier, form_filter($_POST['OSSI_bl_domains']));
247
	fclose($fichier);
258
	fclose($fichier);
248
	unset($_POST['OSSI_bl_domains']);
259
	unset($_POST['OSSI_bl_domains']);
249
	$fichier=fopen($dir_dg."exceptionsitelist","w+");
260
	$fichier=fopen($dir_dg."exceptionsitelist","w+");
250
	fputs($fichier, form_filter($_POST['BL_rehabilited_domains']));
261
	fputs($fichier, form_filter($_POST['BL_rehabilited_domains']));
251
	fclose($fichier);
262
	fclose($fichier);
252
	unset($_POST['BL_rehabilited_domains']);
263
	unset($_POST['BL_rehabilited_domains']);
253
	$fichier=fopen($dir_bl_ip."ossi","w+");
264
	$fichier=fopen($dir_bl_ip."ossi","w+");
254
	fputs($fichier, form_filter_ip($_POST['OSSI_bl_ip'], "black"));
265
	fputs($fichier, form_filter_ip($_POST['OSSI_bl_ip'], "black"));
255
	fclose($fichier);
266
	fclose($fichier);
256
	unset($_POST['OSSI_bl_ip']);
267
	unset($_POST['OSSI_bl_ip']);
257
	$fichier=fopen($dir_dg."exceptioniplist","w+");
268
	$fichier=fopen($dir_dg."exceptioniplist","w+");
258
	fputs($fichier, form_filter($_POST['BL_rehabilited_ip']));
269
	fputs($fichier, form_filter($_POST['BL_rehabilited_ip']));
259
	fclose($fichier);
270
	fclose($fichier);
260
	unset($_POST['BL_rehabilited_ip']);
271
	unset($_POST['BL_rehabilited_ip']);
261
	exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
272
	exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
262
	break;
273
	break;
263
case 'Specific_filtering' :
274
case 'Specific_filtering' :
264
	$pureip="-pureip_off"; $safesearch="-safesearch_off"; ;
275
	$pureip="-pureip_off"; $safesearch="-safesearch_off"; ;
265
	foreach ($_POST as $key => $value)
276
	foreach ($_POST as $key => $value)
266
	{
277
	{
267
		if (strstr($key,'chk-ip')) $pureip="-pureip_on";
278
		if (strstr($key,'chk-ip')) $pureip="-pureip_on";
268
		if (strstr($key,'chk-safesearch')) $safesearch="-safesearch_on";
279
		if (strstr($key,'chk-safesearch')) $safesearch="-safesearch_on";
269
	}
280
	}
270
	exec ("sudo /usr/local/bin/alcasar-url_filter_bl.sh $safesearch $pureip");
281
	exec ("sudo /usr/local/bin/alcasar-url_filter_bl.sh $safesearch $pureip");
271
	break;
282
	break;
272
case 'MAJ_ip_file_delete' :
283
case 'MAJ_ip_file_delete' :
273
	foreach($_POST as $fichier => $value)
284
	foreach($_POST as $fichier => $value)
274
	{
285
	{
275
		if($fichier != "choix")
286
		if($fichier != "choix")
276
		{
287
		{
277
			exec("rm -rf $upload_dir_ip$fichier");
288
			exec("rm -rf $upload_dir_ip$fichier");
278
			exec("rm -rf $upload_dir_domain_names$fichier");
289
			exec("rm -rf $upload_dir_domain_names$fichier");
279
			exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
290
			exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
280
		}
291
		}
281
	}
292
	}
282
	break;
293
	break;
283
case 'MAJ_ip_file_upload' :
294
case 'MAJ_ip_file_upload' :
284
	$nom = str_replace (".", "_",basename($_FILES['fichier_ip']['name']));
295
	$nom = str_replace (".", "_",basename($_FILES['fichier_ip']['name']));
285
	# Si un fichier a été choisi
296
	# Si un fichier a été choisi
286
	if(!empty($nom))
297
	if(!empty($nom))
287
	{	
298
	{	
288
		# On l'upload
299
		# On l'upload
289
		if(move_uploaded_file($_FILES['fichier_ip']['tmp_name'], $upload_dir_ip.$nom))
300
		if(move_uploaded_file($_FILES['fichier_ip']['tmp_name'], $upload_dir_ip.$nom))
290
		{
301
		{
291
			# On extrait uniquement les ip du fichier
302
			# On extrait uniquement les ip du fichier
292
			exec("grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' $upload_dir_ip$nom > $upload_dir_ip\ossi_ip");
303
			exec("grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' $upload_dir_ip$nom > $upload_dir_ip\ossi_ip");
293
 
304
 
294
			# Suppression des doublons
305
			# Suppression des doublons
295
			exec("sort -u $upload_dir_ip\ossi_ip > $upload_dir_ip\ossi-$nom && rm -f $upload_dir_ip\ossi_ip");
306
			exec("sort -u $upload_dir_ip\ossi_ip > $upload_dir_ip\ossi-$nom && rm -f $upload_dir_ip\ossi_ip");
296
 
307
 
297
			# On adapte le fichier à la sauvegarde du set
308
			# On adapte le fichier à la sauvegarde du set
298
			exec("sed -i \"s/^/add blacklist_ip_blocked /g\" $upload_dir_ip\ossi-$nom"); 
309
			exec("sed -i \"s/^/add bl_ip_blocked /g\" $upload_dir_ip\ossi-$nom"); 
299
			
310
			
300
 
311
 
301
			# On extrait uniquement les noms de domaine
312
			# On extrait uniquement les noms de domaine
302
			# max_tld() retourne le nombre max de charactere pour un top-level dns
313
			# max_tld() retourne le nombre max de charactere pour un top-level dns
303
			exec("grep -Eo '([a-zA-Z0-9_-]+\.){1,2}[a-zA-Z]{2,".max_tld()."}' $upload_dir_ip$nom > $upload_dir_domain_names\ossi_domain_names");
314
			exec("grep -Eo '([a-zA-Z0-9_-]+\.){1,2}[a-zA-Z]{2,".max_tld()."}' $upload_dir_ip$nom > $upload_dir_domain_names\ossi_domain_names");
304
 
315
 
305
			# Suppression des doublons
316
			# Suppression des doublons
306
			exec("sort -u $upload_dir_domain_names\ossi_domain_names > $upload_dir_domain_names\ossi-$nom && rm -f $upload_dir_domain_names\ossi_domain_names");
317
			exec("sort -u $upload_dir_domain_names\ossi_domain_names > $upload_dir_domain_names\ossi-$nom && rm -f $upload_dir_domain_names\ossi_domain_names");
307
 
318
 
308
			# On adapte le fichier pour Dnsmasq
319
			# On adapte le fichier pour Dnsmasq
309
			exec("sed -i \"s/^/address=\//g\" $upload_dir_domain_names\ossi-$nom");
320
			exec("sed -i \"s/^/address=\//g\" $upload_dir_domain_names\ossi-$nom");
310
			exec("sed -i \"s/$/\/$PRIVATE_IP/g\" $upload_dir_domain_names\ossi-$nom");
321
			exec("sed -i \"s/$/\/$PRIVATE_IP/g\" $upload_dir_domain_names\ossi-$nom");
311
 
322
 
312
			# Suppression du fichier
323
			# Suppression du fichier
313
			exec("rm -f $upload_dir_ip$nom");
324
			exec("rm -f $upload_dir_ip$nom");
314
		}
325
		}
315
		else
326
		else
316
		{
327
		{
317
			echo $l_error_upload;
328
			echo $l_error_upload;
318
		}
329
		}
319
		exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
330
		exec ("sudo /usr/local/bin/alcasar-bl.sh --reload");
320
		exec ("sudo /usr/local/bin/alcasar-iptables.sh ");
331
		exec ("sudo /usr/local/bin/alcasar-iptables.sh ");
321
	}
332
	}
322
	break;
333
	break;
323
}
334
}
324
?>
335
?>
325
<table width="100%" border="0" cellspacing="0" cellpadding="0">
336
<table width="100%" border="0" cellspacing="0" cellpadding="0">
326
	<tr><th>
337
	<tr><th>
327
	<?php echo $l_list_version; echo date ("F d Y", filemtime ('/etc/dansguardian/lists/blacklists/README'));?>
338
	<?php echo $l_list_version; echo date ("F d Y", filemtime ('/etc/dansguardian/lists/blacklists/README'));?>
328
	</th></tr>
339
	</th></tr>
329
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
340
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
330
</table>
341
</table>
331
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
342
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
332
<tr><td valign="middle" align="left" colspan=10>
343
<tr><td valign="middle" align="left" colspan=10>
333
<FORM action='bl_filter.php' method=POST>
344
<FORM action='bl_filter.php' method=POST>
334
<?php
345
<?php
335
if ((file_exists("$dir_tmp/blacklists.tar.gz")) && (file_exists("$dir_tmp/md5sum")))
346
if ((file_exists("$dir_tmp/blacklists.tar.gz")) && (file_exists("$dir_tmp/md5sum")))
336
	{
347
	{
337
	echo "$l_fingerprint"; echo_file ("$dir_tmp/md5sum");
348
	echo "$l_fingerprint"; echo_file ("$dir_tmp/md5sum");
338
	echo "<br>$l_fingerprint2<a href='http://dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST' target='cat_help' onclick=window.open('http://dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST','cat_help','width=600,height=150,toolbar=no,scrollbars=yes,resizable=yes') title='verify fingerprint'>dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST</a><br>";
349
	echo "<br>$l_fingerprint2<a href='http://dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST' target='cat_help' onclick=window.open('http://dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST','cat_help','width=600,height=150,toolbar=no,scrollbars=yes,resizable=yes') title='verify fingerprint'>dsi.ut-capitole.fr/blacklists/download/MD5SUM.LST</a><br>";
339
	echo "<input type='hidden' name='choix' value='Active_list'>";
350
	echo "<input type='hidden' name='choix' value='Active_list'>";
340
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_activate_bl'> ($l_warning)</FORM>";
351
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_activate_bl'> ($l_warning)</FORM>";
341
	echo "<FORM action='bl_filter.php' method=POST>";
352
	echo "<FORM action='bl_filter.php' method=POST>";
342
	echo "<input type='hidden' name='choix' value='Reject_list'>";
353
	echo "<input type='hidden' name='choix' value='Reject_list'>";
343
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_reject_bl'></form>";
354
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_reject_bl'></form>";
344
	}
355
	}
345
else
356
else
346
	{
357
	{
347
	echo "<input type='hidden' name='choix' value='Download_list'>";
358
	echo "<input type='hidden' name='choix' value='Download_list'>";
348
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_download_bl'>";
359
	echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_download_bl'>";
349
	echo " ($l_warning)";
360
	echo " ($l_warning)";
350
	}
361
	}
351
?>
362
?>
352
</FORM>
363
</FORM>
353
</td></tr>
364
</td></tr>
354
</table><br/>
365
</table><br/>
355
<table width="100%" border="0" cellspacing="0" cellpadding="0">
366
<table width="100%" border="0" cellspacing="0" cellpadding="0">
356
	<tr><th><?php echo $l_bl; ?></th></tr>
367
	<tr><th><?php echo $l_bl; ?></th></tr>
357
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
368
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
358
</table>
369
</table>
359
<table width="100%" border=1 cellspacing=0 cellpadding=1>
370
<table width="100%" border=1 cellspacing=0 cellpadding=1>
360
<tr><td valign="middle" align="left" colspan=10>
371
<tr><td valign="middle" align="left" colspan=10>
361
<FORM action='bl_filter.php' method=POST>
372
<FORM action='bl_filter.php' method=POST>
362
<input type='hidden' name='choix' value='MAJ_cat_bl'>
373
<input type='hidden' name='choix' value='MAJ_cat_bl'>
363
<?php
374
<?php
364
echo "<center>";
375
echo "<center>";
365
$nbDomainNames = exec ("wc -l /usr/local/share/dnsmasq-bl/* | tail -n 1 | awk '{print $1}'");
376
$nbDomainNames = exec ("wc -l /usr/local/share/dnsmasq-bl/* | tail -n 1 | awk '{print $1}'");
366
$nbUrl = exec ("for file in `find /etc/dansguardian/lists/blacklists/ -name 'urls'`; do nb=$((nb+$(wc -l \$file | awk '{print $1}'))); done; echo \$nb");
377
$nbUrl = exec ("for file in `find /etc/dansguardian/lists/blacklists/ -name 'urls'`; do nb=$((nb+$(wc -l \$file | awk '{print $1}'))); done; echo \$nb");
367
$nbIp = exec ("wc -l /usr/local/share/iptables-bl/* | tail -n 1 | awk '{print $1}'");
378
$nbIp = exec ("wc -l /usr/local/share/iptables-bl/* | tail -n 1 | awk '{print $1}'");
368
echo "<b>$l_nbDomainNames</b> $nbDomainNames, <b>$l_nbUrl</b> $nbUrl, <b>$l_nbIp</b> $nbIp<br/>";
379
echo "<b>$l_nbDomainNames</b> $nbDomainNames, <b>$l_nbUrl</b> $nbUrl, <b>$l_nbIp</b> $nbIp<br/>";
369
echo "$l_bl_categories</center></td></tr>";	
380
echo "$l_bl_categories</center></td></tr>";	
370
//on lit et on interprete le fichier de catégories
381
//on lit et on interprete le fichier de catégories
371
$cols=1; 
382
$cols=1; 
372
if (file_exists($bl_categories))
383
if (file_exists($bl_categories))
373
	{
384
	{
374
	$pointeur=fopen($bl_categories,"r");
385
	$pointeur=fopen($bl_categories,"r");
375
	while (!feof ($pointeur))
386
	while (!feof ($pointeur))
376
		{
387
		{
377
		$ligne=fgets($pointeur, 4096);
388
		$ligne=fgets($pointeur, 4096);
378
		if ($ligne)
389
		if ($ligne)
379
			{
390
			{
380
			if ($cols == 1) { echo "<tr>";}
391
			if ($cols == 1) { echo "<tr>";}
381
				$categorie=trim(basename($ligne));
392
				$categorie=trim(basename($ligne));
382
			if($categorie != "ossi")
393
			if($categorie != "ossi")
383
			{
394
			{
384
				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>";
395
				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>";
385
				echo "<input type='checkbox' name='chk-$categorie'";
396
				echo "<input type='checkbox' name='chk-$categorie'";
386
				// si la ligne est commentée -> categorie non selectionnée
397
				// si la ligne est commentée -> categorie non selectionnée
387
				if (preg_match('/^#/',$ligne, $r)) { echo ">";}
398
				if (preg_match('/^#/',$ligne, $r)) { echo ">";}
388
				else { echo "checked>"; }
399
				else { echo "checked>"; }
389
				echo "</td>";
400
				echo "</td>";
390
				$cols++;
401
				$cols++;
391
			}
402
			}
392
			if ($cols > 10) {
403
			if ($cols > 10) {
393
				echo "</tr>";
404
				echo "</tr>";
394
				$cols=1; }
405
				$cols=1; }
395
			}
406
			}
396
		}
407
		}
397
	fclose($pointeur);
408
	fclose($pointeur);
398
	}
409
	}
399
else	{
410
else	{
400
	echo "$l_error_open_file $bl_categories";
411
	echo "$l_error_open_file $bl_categories";
401
	}
412
	}
402
echo "</td></tr>";
413
echo "</td></tr>";
403
echo "<tr><td valign='middle' align='left' colspan=10>";
414
echo "<tr><td valign='middle' align='left' colspan=10>";
404
echo "<center><b>$l_maj_rehabilitated</b></center></td></tr>";
415
echo "<center><b>$l_maj_rehabilitated</b></center></td></tr>";
405
echo "<tr><td width=50% colspan=5 align=center>";
416
echo "<tr><td width=50% colspan=5 align=center>";
406
echo "<H3>$l_rehabilitated_dns</H3>$l_rehabilitated_dns_explain<BR>$l_one_dns<BR>";
417
echo "<H3>$l_rehabilitated_dns</H3>$l_rehabilitated_dns_explain<BR>$l_one_dns<BR>";
407
echo "<textarea name='BL_rehabilited_domains' rows=3 cols=40>";
418
echo "<textarea name='BL_rehabilited_domains' rows=3 cols=40>";
408
echo_file ($dir_dg."exceptionsitelist");
419
echo_file ($dir_dg."exceptionsitelist");
409
echo "</textarea></td>";
420
echo "</textarea></td>";
410
echo "<td width=50% colspan=5 align=center>";
421
echo "<td width=50% colspan=5 align=center>";
411
echo "<H3>$l_rehabilitated_ip</H3>$l_rehabilitated_ip_explain<BR>$l_one_ip<BR>";
422
echo "<H3>$l_rehabilitated_ip</H3>$l_rehabilitated_ip_explain<BR>$l_one_ip<BR>";
412
echo "<textarea name='BL_rehabilited_ip' rows=3 cols=40>";
423
echo "<textarea name='BL_rehabilited_ip' rows=3 cols=40>";
413
echo_file ($dir_dg."exceptioniplist");
424
echo_file ($dir_dg."exceptioniplist");
414
echo "</textarea></td></tr><tr><td width=50% colspan=10>";
425
echo "</textarea></td></tr><tr><td width=50% colspan=10>";
415
echo "<tr><td valign='middle' align='left' colspan=10>";
426
echo "<tr><td valign='middle' align='left' colspan=10>";
416
echo "<center><b>$l_add_to_bl</b></center></td></tr>";
427
echo "<center><b>$l_add_to_bl</b></center></td></tr>";
417
echo "<tr><td width=50% colspan=5 align=center>";
428
echo "<tr><td width=50% colspan=5 align=center>";
418
echo "<H3>$l_forbidden_dns</H3>$l_one_dns<BR>";
429
echo "<H3>$l_forbidden_dns</H3>$l_one_dns<BR>";
419
echo "<textarea name='OSSI_bl_domains' rows=3 cols=40>";
430
echo "<textarea name='OSSI_bl_domains' rows=3 cols=40>";
420
echo_file ($dir_dg."blacklists/ossi/domains");
431
echo_file ($dir_dg."blacklists/ossi/domains");
421
echo "</textarea></td>";
432
echo "</textarea></td>";
422
echo "<td width=50% colspan=5 align=center>";
433
echo "<td width=50% colspan=5 align=center>";
423
echo "<H3>$l_forbidden_ip</H3>$l_forbidden_ip_explain<BR>";
434
echo "<H3>$l_forbidden_ip</H3>$l_forbidden_ip_explain<BR>";
424
echo "<textarea name='OSSI_bl_ip' rows=3 cols=40>";
435
echo "<textarea name='OSSI_bl_ip' rows=3 cols=40>";
425
echo_ip_file ($dir_bl_ip."ossi");
436
echo_ip_file ($dir_bl_ip."ossi");
426
echo "</textarea></td></tr><tr><td colspan=10>";
437
echo "</textarea></td></tr><tr><td colspan=10>";
427
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_record'>";
438
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_record'>";
428
echo "</form> ($l_wait)";
439
echo "</form> ($l_wait)";
429
echo "</td></tr></table><br/>";
440
echo "</td></tr></table><br/>";
430
?>
441
?>
431
 
442
 
432
 
443
 
433
<table width="100%" border="0" cellspacing="0" cellpadding="0">
444
<table width="100%" border="0" cellspacing="0" cellpadding="0">
434
	<tr><th><?php echo $l_additional_file_title; ?></th></tr>
445
	<tr><th><?php echo $l_additional_file_title; ?></th></tr>
435
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
446
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
436
</table>
447
</table>
437
<table width="100%" border=1 cellspacing=0 cellpadding=1>
448
<table width="100%" border=1 cellspacing=0 cellpadding=1>
438
<form action='bl_filter.php' method='POST'>
449
<form action='bl_filter.php' method='POST'>
439
<input type='hidden' name='choix' value='MAJ_ip_file_delete'>
450
<input type='hidden' name='choix' value='MAJ_ip_file_delete'>
440
<?php
451
<?php
441
echo "<tr><td width=50% colspan=5 align=center>";
452
echo "<tr><td width=50% colspan=5 align=center>";
442
echo "<H3>$l_file_list</H3>";
453
echo "<H3>$l_file_list</H3>";
443
echo "<table cellspacing=2 cellpadding=3 border=1><tr><th>$l_file_name<th>$l_nb_ip<th>$l_nb_domain_names<th>$l_file_remove</tr>";
454
echo "<table cellspacing=2 cellpadding=3 border=1><tr><th>$l_file_name<th>$l_nb_ip<th>$l_nb_domain_names<th>$l_file_remove</tr>";
444
exec("cd $upload_dir_ip && ls | grep ossi-", $fichiersIp);
455
exec("cd $upload_dir_ip && ls | grep ossi-", $fichiersIp);
445
foreach($fichiersIp as $fichier => $value)
456
foreach($fichiersIp as $fichier => $value)
446
{
457
{
447
	echo "<tr><td><center>".exec("sed 's/^.....//g' <<< $value")."</center></td><td><center>".exec("wc -l $upload_dir_ip$value | awk '{print $1}'")."</center></td><td><center>".exec("wc -l $upload_dir_domain_names$value | awk '{print $1}'")."</center></td><td><center><input type='submit'  name='$value' value='$l_remove'></center></td></tr>";
458
	echo "<tr><td><center><a href='bl_categories_help.php?liste=bl&cat=$value&ossi=yes&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'>".exec("sed 's/^.....//g' <<< $value")."</a></center></td><td><center>".exec("wc -l $upload_dir_ip$value | awk '{print $1}'")."</center></td><td><center>".exec("wc -l $upload_dir_domain_names$value | awk '{print $1}'")."</center></td><td><center><input type='submit' name='$value' value='$l_remove'></center></td></tr>";
448
}
459
}
449
echo "</table><br/></td></form><form action='bl_filter.php' method='POST' enctype='multipart/form-data'>";
460
echo "</table><br/></td></form><form action='bl_filter.php' method='POST' enctype='multipart/form-data'>";
450
echo "<input type='hidden' name='choix' value='MAJ_ip_file_upload'><td width=50% colspan=5 align=center>";
461
echo "<input type='hidden' name='choix' value='MAJ_ip_file_upload'><td width=50% colspan=5 align=center>";
451
echo "<H3>$l_add_file</H3>";
462
echo "<H3>$l_add_file</H3>";
452
echo "$l_add_file_explain";
463
echo "$l_add_file_explain";
453
echo "<input type='file' name='fichier_ip'>";
464
echo "<input type='file' name='fichier_ip'>";
454
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_submit'>";
465
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_submit'>";
455
echo "</td></tr>";
466
echo "</td></tr>";
456
echo "</form>";
467
echo "</form>";
457
echo "</table><br/>";
468
echo "</table><br/>";
458
?>
469
?>
459
 
470
 
460
<table width="100%" border="0" cellspacing="0" cellpadding="0">
471
<table width="100%" border="0" cellspacing="0" cellpadding="0">
461
	<tr><th><?php echo $l_specific_filtering; ?></th></tr>
472
	<tr><th><?php echo $l_specific_filtering; ?></th></tr>
462
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
473
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
463
</table>
474
</table>
464
 
475
 
465
 
476
 
466
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
477
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
467
<FORM action='bl_filter.php' method='POST'>
478
<FORM action='bl_filter.php' method='POST'>
468
<input type='hidden' name='choix' value='Specific_filtering'>
479
<input type='hidden' name='choix' value='Specific_filtering'>
469
<tr><td>
480
<tr><td>
470
<input type='checkbox' name='chk-ip'
481
<input type='checkbox' name='chk-ip'
471
<?php
482
<?php
472
// verify "pureip" filtering state
483
// verify "pureip" filtering state
473
if (file_exists($bannedsite_file))
484
if (file_exists($bannedsite_file))
474
	{
485
	{
475
	$pointeur=fopen($bannedsite_file,"r");
486
	$pointeur=fopen($bannedsite_file,"r");
476
	while (!feof ($pointeur))
487
	while (!feof ($pointeur))
477
		{
488
		{
478
		$ligne=fgets($pointeur, 4096);
489
		$ligne=fgets($pointeur, 4096);
479
		if ($ligne)
490
		if ($ligne)
480
			{
491
			{
481
			if (preg_match('/^\*ip$/',$ligne, $r)) 
492
			if (preg_match('/^\*ip$/',$ligne, $r)) 
482
				{
493
				{
483
				echo " checked";
494
				echo " checked";
484
				break;
495
				break;
485
				}
496
				}
486
			}
497
			}
487
		}
498
		}
488
	fclose($pointeur);
499
	fclose($pointeur);
489
	}
500
	}
490
else	{
501
else	{
491
	echo "$l_error_open_file $bannedsite_file";
502
	echo "$l_error_open_file $bannedsite_file";
492
	}
503
	}
493
echo "> $l_ip_filtering";
504
echo "> $l_ip_filtering";
494
?>
505
?>
495
</td></tr>
506
</td></tr>
496
<tr><td>
507
<tr><td>
497
<input type='checkbox' name='chk-safesearch'
508
<input type='checkbox' name='chk-safesearch'
498
<?php
509
<?php
499
// verify "safesearch" filtering state
510
// verify "safesearch" filtering state
500
if (file_exists($urlregex_file))
511
if (file_exists($urlregex_file))
501
	{
512
	{
502
	$pointeur=fopen($urlregex_file,"r");
513
	$pointeur=fopen($urlregex_file,"r");
503
	while (!feof ($pointeur))
514
	while (!feof ($pointeur))
504
		{
515
		{
505
		$ligne=fgets($pointeur, 4096);
516
		$ligne=fgets($pointeur, 4096);
506
		if ($ligne)
517
		if ($ligne)
507
			{
518
			{
508
			if (preg_match('/^\"\(\^http\:\/\/\[0\-9a\-z\]\+\\\.google/',$ligne, $r))
519
			if (preg_match('/^\"\(\^http\:\/\/\[0\-9a\-z\]\+\\\.google/',$ligne, $r))
509
				{
520
				{
510
				echo " checked";
521
				echo " checked";
511
				break;
522
				break;
512
				}
523
				}
513
			}
524
			}
514
		}
525
		}
515
	fclose($pointeur);
526
	fclose($pointeur);
516
	}
527
	}
517
else	{
528
else	{
518
	echo "$l_error_open_file $urlregex_file";
529
	echo "$l_error_open_file $urlregex_file";
519
	}
530
	}
520
echo "> $l_safe_searching";
531
echo "> $l_safe_searching";
521
echo "<br>$l_safe_youtube";
532
echo "<br>$l_safe_youtube";
522
echo " $l_youtube_id<tr><td>";
533
echo " $l_youtube_id<tr><td>";
523
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_record'></td></tr>";
534
echo "<input type='submit' onClick=\"this.disabled=true; this.value='$l_load';\" value='$l_record'></td></tr>";
524
?>
535
?>
525
</FORM> 
536
</FORM> 
526
</TABLE>
537
</TABLE>
527
</BODY>
538
</BODY>
528
</HTML>
539
</HTML>
529
 
540
 
530
 
541