Subversion Repositories ALCASAR

Rev

Rev 2005 | Rev 2521 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2005 Rev 2299
Line 176... Line 176...
176
<?php
176
<?php
177
		if($titre == "domain")
177
		if($titre == "domain")
178
		{
178
		{
179
 
179
 
180
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
180
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
181
			exec("head -n 15 $filtre | cut -d '/' -f2", $resultat);
181
			exec("head -n 15 ".escapeshellarg($filtre)." | cut -d '/' -f2", $resultat);
182
		}
182
		}
183
		elseif($titre == "ip")
183
		elseif($titre == "ip")
184
		{
184
		{
185
			$filtre = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
185
			$filtre = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
186
			exec("head -n 15 $filtre | cut -d ' ' -f3", $resultat);
186
			exec("head -n 15 ".escapeshellarg($filtre)." | cut -d ' ' -f3", $resultat);
187
		}
187
		}
188
		else
188
		else
189
		{
189
		{
190
			exec("head -n 15 $filtre", $resultat);
190
			exec("head -n 15 ".escapeshellarg($filtre), $resultat);
191
		}
191
		}
192
		for($i=0; $i<count($resultat); $i++)
192
		for($i=0; $i<count($resultat); $i++)
193
			echo $resultat[$i]."<br/>";
193
			echo $resultat[$i]."<br/>";
194
		?>
194
		?>
195
	</td></tr>
195
	</td></tr>