initial commit of file from CVS for smeserver-webfilter on Sat Sep 7 16:44:31 AEST 2024
This commit is contained in:
22
root/etc/cron.daily/squid-db-cleanup
Normal file
22
root/etc/cron.daily/squid-db-cleanup
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
HOME=/root
|
||||
|
||||
LOG=$(/sbin/e-smith/db configuration getprop squid-db-logd status || echo 'disabled')
|
||||
|
||||
if [ "$LOG" != "enabled" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
HOST=$(/sbin/e-smith/db configuration getprop squid-db-logd DbHost || echo 'localhost')
|
||||
|
||||
if [ "$HOST" != "localhost" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
RETENTION=$(/sbin/e-smith/db configuration getprop squid-db-logd Retention || echo 370)
|
||||
DB=$(/sbin/e-smith/db configuration getprop squid-db-logd DbName || echo squid_log)
|
||||
|
||||
echo "delete from access_log where date_day<DATE_SUB(NOW(), INTERVAL $RETENTION DAY);" | /usr/bin/mysql $DB
|
||||
echo "delete from deny_log where date_day<DATE_SUB(NOW(), INTERVAL $RETENTION DAY);" | /usr/bin/mysql $DB
|
||||
|
@@ -0,0 +1 @@
|
||||
squid_log
|
@@ -0,0 +1 @@
|
||||
squid
|
@@ -0,0 +1 @@
|
||||
enabled
|
@@ -0,0 +1 @@
|
||||
service
|
@@ -0,0 +1 @@
|
||||
child,liste_bu,sexual_education,cleaning,reaffected,cooking,bank,astrology,financial,jobsearch,marketingware,strict_redirector,strong_redirector,tricheur,mixed_adult,dangerous_material
|
@@ -0,0 +1 @@
|
||||
enabled
|
@@ -0,0 +1 @@
|
||||
service
|
@@ -0,0 +1 @@
|
||||
disabled
|
@@ -0,0 +1 @@
|
||||
service
|
@@ -0,0 +1 @@
|
||||
enabled
|
@@ -0,0 +1 @@
|
||||
service
|
27
root/etc/e-smith/db/configuration/migrate/SquidDBPassword
Normal file
27
root/etc/e-smith/db/configuration/migrate/SquidDBPassword
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
my $rec = $DB->get('squid-db-logd')
|
||||
|| $DB->new_record('squid-db-logd', {type => 'service'});
|
||||
my $pw = $rec->prop('DbPassword');
|
||||
if (not $pw or length($pw) < 57){
|
||||
use MIME::Base64 qw(encode_base64);
|
||||
|
||||
$pw = "not set due to error";
|
||||
if ( open( RANDOM, "/dev/urandom" ) ){
|
||||
my $buf;
|
||||
# 57 bytes is a full line of Base64 coding, and contains
|
||||
# 456 bits of randomness - given a perfectly random /dev/random
|
||||
if ( read( RANDOM, $buf, 57 ) != 57 ){
|
||||
warn("Short read from /dev/random: $!");
|
||||
}
|
||||
else{
|
||||
$pw = encode_base64($buf);
|
||||
chomp $pw;
|
||||
}
|
||||
close RANDOM;
|
||||
}
|
||||
else{
|
||||
warn "Could not open /dev/urandom: $!";
|
||||
}
|
||||
$rec->set_prop('DbPassword', $pw);
|
||||
}
|
||||
}
|
84
root/etc/e-smith/events/actions/squidguard-update-databases
Normal file
84
root/etc/e-smith/events/actions/squidguard-update-databases
Normal file
@@ -0,0 +1,84 @@
|
||||
#!/bin/bash
|
||||
#----------------------------------------------------------------------
|
||||
# copyright (C) 2011 Firewall Services
|
||||
# daniel@firewall-services.com
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
# This function check if the given category is disabled
|
||||
function cat_is_disabled(){
|
||||
cat=$1
|
||||
local ret=0
|
||||
for D in $(echo $DISABLED_CAT | sed -e 's/[;,]/ /g'); do
|
||||
if [ "$D" == "$cat" ]; then
|
||||
local ret=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
echo $ret
|
||||
}
|
||||
|
||||
/bin/mkdir -p /var/squidGuard/blacklists/{black,white}
|
||||
|
||||
# Be sure those files exists
|
||||
for F in "black/domains" "black/urls" "white/domains" "white/urls"; do
|
||||
if [ \! -e /var/squidGuard/blacklists/$F ]; then
|
||||
touch /var/squidGuard/blacklists/$F
|
||||
fi
|
||||
done
|
||||
|
||||
UPDATE=$(/sbin/e-smith/db configuration getprop squidguard AutoUpdate || echo enabled)
|
||||
DISABLED_CAT=$(/sbin/e-smith/db configuration getprop squidguard DisabledCategories)
|
||||
|
||||
if [ "$UPDATE" == "enabled" ]; then
|
||||
# Update database from the University of Toulouse
|
||||
/usr/bin/rsync -rzPq ftp.univ-tlse1.fr::blacklist/dest/ /var/squidGuard/blacklists/
|
||||
fi
|
||||
|
||||
# Rebuild database only if something changed
|
||||
for CAT in $(ls /var/squidGuard/blacklists/); do
|
||||
if [ "$(cat_is_disabled $CAT)" == "1" ]; then
|
||||
echo "$CAT is disabled, skiping"
|
||||
continue
|
||||
fi
|
||||
for TYPE in domains urls; do
|
||||
if [ -f /var/squidGuard/blacklists/$CAT/$TYPE ]; then
|
||||
OLDMD=$(cat /var/squidGuard/blacklists/$CAT/$TYPE.md5 2>/dev/null)
|
||||
NEWMD=$(md5sum /var/squidGuard/blacklists/$CAT/$TYPE | cut -d' ' -f1)
|
||||
if [ "$OLDMD" != "$NEWMD" ]; then
|
||||
echo "$CAT/$TYPE has changed, database needs to be updated"
|
||||
rm -f /var/squidGuard/blacklists/$CAT/$TYPE.db
|
||||
/usr/bin/squidGuard -P -C $CAT/$TYPE
|
||||
if [ -e /var/squidGuard/blacklists/$CAT/$TYPE.db ]; then
|
||||
md5sum /var/squidGuard/blacklists/$CAT/$TYPE | cut -d' ' -f1 > \
|
||||
/var/squidGuard/blacklists/$CAT/$TYPE.md5
|
||||
fi
|
||||
else
|
||||
echo "$CAT/$TYPE hasn't changed, no database update needed"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
chown -R squid:squid /var/squidGuard/blacklists
|
||||
chown -R squid:squid /var/log/squidGuard/*
|
||||
chmod 640 /var/log/squidGuard/*
|
||||
|
||||
# Reload squid configuration
|
||||
/usr/sbin/squid -k reconfigure
|
||||
|
||||
|
258
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="bg">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Черен списък</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Бял списък</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/da/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/da/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="da">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web filter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtrering konfiguration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>Denne side lader dig blokere nogle hjemmeside kategorier</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Deaktiveret</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Aktiveret</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Vil du aktivere URL filtrering og blokere valgte hjemmeside kategorier ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL filter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>du at aktivere antivirus filtrering og blokere download af inficerede filer ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV filter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>Du kan kontrollere hjemmeside kategorier, du vil blokere</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blokeret ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Kategori</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blokerede kategorier</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>Dette felt indeholder et eller flere poster</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Voksen websteder lige fra erotisk til hardcore pornografi</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racistisk, antisemitisk, tilskyndelse til had websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting websteder certificeret af ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrologi relaterede websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio og video websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online netbanker</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" nyheds websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Websteder godkendt for</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websteder for at rense og opdatere computere</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Websteder for madlavning</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>Websteder, der beskriver, hvordan man skaber farlige materialer (eksplosive, gift osv.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating hjemmesider</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Narkotika relaterede hjemmesider</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>Fil hosting hjemmesider (video, billeder, lyd)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Finansielle websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Fora</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online spille websteder, kasinoer, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online spil eller spil distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking og computer angreb websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Jobs gning</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>uddannelsesm ssige websteder for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websteder der installerer malware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga og tegneserier relaterede hjemmesider</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Meget specielle marketing websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Telefon relaterede websteder (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank og lignende websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>Nyheds websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Annonce</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radiostationer</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Websteder, der har \'e6ndret ejerskab og dermed indhold</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtrerende omdirigerings websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Fjernbetjening websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sekter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websteder der taler om seksualundervisning og kan vises som pornografisk</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websteder</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Sociale netverk</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sport</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Ligesom omdirigering, men omfatter klassiske gemaskiner</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Ligesom streng omdirigering, men for Google og andre, kun blokere nogle geord</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>Websteder, der forklarer, hvordan du snyde eksamen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Websteder for forfalskede programmer</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail osv.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[Du kan indtaste her en IP-adresser listen (eller IP intervaller), for hvilke URL-filtrering vil blive deaktiveret (men AV-filtrering vil stadig blive anvendt). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Ufiltrerede IP-adresser</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[F\'f8lgende felter lader dig styre din egen liste blokerede websteder (blacklist) eller liste tilladt websteder (whitelist). Den whitelist altid forrang. <br> Du kan indtaste her en liste over blokerede dom\'e6nenavne eller webadresser.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Sortlistet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Indtast her et dom\'e6nenavne eller webadresse lister, som vil blive tilladt</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Hvidlistet</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/de/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/de/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="de">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Internetfilter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>Hier können sie Webseiten nach Kategorien filtern</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Deaktiviert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Aktiviert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Wollen sie den Internetfilter aktivieren?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Wollen sie den Antivirus-Gateway aktivieren?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>Antivirus Filter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>Aktivieren sie die Webseiten-Kategorien, die sie blockieren möchten.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Aktiviert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Kategorie</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Aktivierte Kategorien</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>Dieses Feld enthält einen oder mehrere Einträge</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Erotikseiten, Pornographie</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>Rassistische und antisemitische Seiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Glücksspielseiten von ARJEL nicht zertifiziert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrologie</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio- und Videose</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online Banking Seiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Internetblogs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>Prominenten Nachrichten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online Chats</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Für Kinder geeignete Seiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Updateseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Kochrezepte</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>Anleitungen zum Bombenbau oder zur Giftmischung</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Partnerbörsen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drogen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>Datei-Hostingseiten (Videos, Bilder, Musik)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Finanzen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Internetforen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online Spieleseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Onlinespiele und -anbieter</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacker Webseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Stellenbörsen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>Bildungsseiten für "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Mit Malware infizierte Seiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga- und Comicseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Marketing Webseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Angebote für Handys (Klingeltöne etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishingseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>Nachrichten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Anzeigenmarkt</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internetradios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Webseiten, die Eigentum und somit Inhalte geändert haben</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Seiten, die Internetfilter umgehen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Seiten zur Fernbedienung</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sekten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>Seiten mit sexuellen Diskussionen und Inhalten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping-Webseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Soziale Netzwerke</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sportseiten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Seiten, die Internetfilter umgehen und weitere Suchmaschinen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Seiten, die Internetfilter umgehen und weitere Suchmaschinen, einige Schlüsselwörter werden geblockt</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>Seiten, die Betrügereien bei Prüfungen erklären</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Seiten mit gefälschter Software</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmailer (GMX, Web.de etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[Geben sie hier IP-Adressen oder einen IP-Adressebereich ein, die nicht gefiltert werden sollen (der Antivirus-Filter bleibt erhalten). Beispiel:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Ungefilterte IP-Adressen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[Nachfolgend können sie blockierte (Blacklist) und erlaubte (Whitelist) Webseiten eingeben. Die Whitelist hat immer Vorrang.<br><br>Sie können hier blockierte URLs oder IP-Adressen eingeben.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Erlaubte Webseiten oder IP-Adressen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/el/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/el/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="el">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Απενεργοποιημένος/η/ο</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Ενεργοποιήθηκε</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="en-us">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/es/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/es/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="es">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Deshabilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Habilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/et/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/et/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="et">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Keelatud</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Lubatud</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="fr">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Filtrage Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Configuration du filtrage Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>Cette page vous permet de bloquer certaines catégories de sites Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Désactivé</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Activé</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Voulez-vous activer le filtrage d'URL et bloquer certaines catégories de sites Web ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>Filtrage d'URLs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Voulez-vous activer le filtrage antivirus et bloquer les téléchargements de fichiers infectés ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>Filtrage AV</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>Vous pouvez vérifier les catégories de sites Web que vous voulez bloquer</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Bloqué ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Catégorie</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Catégories bloquées</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>Ce champ contient une ou plusieurs entrées erronées</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Sites pour adultes allant de la pornographie érotique à la pornographie « hardcore »</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>Sites racistes, antisémites, incitant à la haine</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Sites de paris en ligne certifiés par l'ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Sites relatifs à l'astrologie</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Sites audio et video</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Sites de banques en ligne</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Sites hébergeant des blogues</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>Sites d'information « people »</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Sites de messageries instantanées</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Sites favoris des enfants</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Sites Web de désinfection et de mises à jour d'ordinateurs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Sites de fichiers témoins (« cookies »)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>Sites Web décrivant comment créer des matières dangereuses (explosif, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Sites Web de rencontres</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Sites Web liés à la drogue</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>Sites Web hébergeant des fichiers (vidéo, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Sites Web de la finance</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Sites Web de jeux en ligne, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Jeux en ligne ou vente de jeux</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Sites Web de piratage et d'attaques d'ordinateur</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Recherche d'emploi</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>Sites Web éducatifs pour « univ-tise1.fr »</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Sites Web d'injection de logiciels malfaisants</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Sites Web relatifs aux mangas et aux bandes dessinées</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Sites Web de commerce très spécial</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Sites Web liés à la téléphonie (sonneries, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Sites Web d’hameçonnage, de pièges bancaires et autres</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>Sites Web d'informations</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Publicité</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Radios sur Internet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Site qui ont changé de propriétaire et donc de contenu</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtrage des sites Web de contournement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Sites Web de prise de contrôle à distance</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sectes</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>Sites Web qui parlent d'éducation sexuelle et peuvent être détectés comme pornographiques</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Sites Web marchands</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Réseaux sociaux</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Comme « redirector » mais inclut les moteurs de recherche classiques</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Comme « strict_redirector » mais pour Google et autres, bloque seulement quelques mots-clés</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>Sites Web qui expliquent comment tricher aux examens</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Sites Web de logiciels contrefaits</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Messageries sur le Web (hotmail, gmail, etc)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[Vous pouvez entrer ici une liste d'adresses IP (ou des intervalles d'IP) pour lesquelles le filtrage d'URL sera désactivé (mais le filtrage AV sera encore appliqué). Par exemple :<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Adresses IP non filtrées</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[Les champs suivants vous permettent de configurer votre propre liste de sites Web bloqués (blacklist) ou liste de sites Web autorisés (whitelist). La liste blanche a toujours la priorité.<br><br>Vous pouvez entrer ici une liste de noms de domaines bloqués ou d'URLs.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Liste noire</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Entrer ici une liste de noms de domaine ou d'URLs qui seront autorisés</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Liste blanche</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/he/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/he/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="he">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="hu">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Letiltva</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Engedélyezve</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/id/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/id/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="id">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/it/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/it/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="it">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Filtro Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Configurazione filtro Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>Questa pagina consente di bloccare alcune categorie di siti Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabilitato</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Abilitato</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Si vuole abilitare il filtro URL e bloccare categorie selezionate di Siti Web?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>Filtro URL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Si vuole attivare il filtro antivirus e bloccare il download di file infetti ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>Filtro AV</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>Si possono controllare le categorie di Siti Web che si vogliono bloccare</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Bloccato?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Categoria</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Categorie bloccate</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>Il campo contiene una o più righe scorrette</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Siti per adulti spazianti dall'erotismo alla pornografia hardcore</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>siti razzisti, antisemiti, incitanti all'odio</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Siti di scommesse online certificati da ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Siti astrologici</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Siti contenenti file audio e video</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Siti di banking online</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Siti di blogging</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>Siti di notizie mondane</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Chat online</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Siti approvati per bambini</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Siti Web per ripulire ed aggiornare computer</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Siti di cucina</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>Siti Web che descrivono la creazione di sostanze pericolose (esplosivi, veleni, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Siti per incontri on-line (Dating)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Siti che pubblcizzano o commercializzano droghe</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>Siti per deposito di file (video, immagini, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Siti Web di finanza</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Siti per giochi online, casino, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Siti per giochi online o per distribuzione di giochi</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Siti di hacking e attacco ai PC</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Siti Web di ricerca di lavoro</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>Siti Web di istruzione per "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Siti Web che infettano con badware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Siti Web su manga e fumetti in generale</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Siti Web di commercio molto speciali</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Siti Web di telefonia (suoneria ecc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Siti Web di phishing, finte banche ed altro</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>Siti Web di informazione</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Siti Web di pubblicità</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Radio Internet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Siti Web che hanno cambiato proprietario e quindi contenuti</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Siti Web per evitare il filtro contenuti</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Siti Web per il controllo remoto</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sette</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>Siti Web che trattano di educazione sessuale e sono rilevati come pornografici</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Siti Web di acquisto on-line</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social network</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Siti Web di sport</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Come redirector, ma include i motori di ricerca classici</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Come strict_redirector, ma per google ed altri blocca solo alcune parole chiave</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>Siti Web che spiegano come imbrogliare agli esami</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Siti Web di software contraffatto</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmail (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[Qui si può inserire una lista di indirizzi IP (o intervalli di IP) per i quali il filtro URL sarà disabilitato (ma il filtro AV sarà ancora applicato). Per esempio:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Indirizzi IP non filtrati</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[I campi seguenti permettono di gestire la propria lista di Siti Web bloccati (blacklist) o consentiti (whitelist). La whitelist ha sempre la precedenza .<br><br>Qui si può inserire la lista di domini o URL bloccat.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Inserire qui la lista di nomi di dominio o URL che saranno consentiti</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="ja">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="nb">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Deaktivert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>aktivert</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="nl">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Inactief</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Actief</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="pl">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Enabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="pt-br">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Filtragem Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Configuraçã de filtragem Web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>Esta página permite voce bloquear algumas categorias de sites web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Desabilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Habilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Você deseja habilitar a filtragem de URL e bloquear as categorias de web sites selecionadas ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>Filtragem de URL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Você quer habilitar a filtragem com antivirus e bloquear download de arquivos infectados ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>Filtragem AV</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>Você deve marcar as categorias de sites web que deseja bloquear</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Bloqueado ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Categoria</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Categorias bloqueadas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>Este campo contem um ou mais entradas inválidas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Sites adultos, desde eroticos até pornografia hardcore</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racistas, anti-semitas, sites que incitam violencia e ódio</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Site online de apostas certificados pela ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Sites relacionadoas a astrologia</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Sites de Audio and video</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Sites de bancos online</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Sites que hospedam Blogs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>Sites com notícias de Celebridades</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Sites de bate papo online</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Sites aprovados para crianças</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Sites para limpar e atualizar computadores</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Sites sobre Cozinha</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>Sites descrevendo como criar materias perigosos (explosivos, veneno, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Sites de encontros</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Sites relacionados a drogas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>Sites de hospedagem de arquivos video, imagens, áudio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Sites Financeiros</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Foruns de discussão</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Site de jogos online, cassinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Jogos online games ou distribuição de jogos</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Sites de Hacking e ataques a computadores</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Sites de procura de emprego</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Sites que injetam malware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Sites de conteúdo relacionado a Manga e gibis</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Sites de Marketing muito especiais</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Sites relacionados a telefone (toques, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Sites de Phishing, falsos bancos e correlatos</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>Sites de Notícias</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Publicidade</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Radios via Internet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites que mudaram de proprietário e por isso de conteúdo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Sites ensinando a contornar filtragem web</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Sites de Controle Remoto</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>Sites que falam sobre educação sexual e podem ser detectados como pornografia</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Sites de Compras</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Redes Sociais</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Esportes</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Sites que ensinam contornar filtragem e incluindo os mecanismos de busca clássicos</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Sites que ensinam contornar filtragem, mas para os mecanismos de busca clássicos, somente algumas palavras chave são bloqueadas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>Sites que explicam como trapacear em exames</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Sites de pirataria de software - warez</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (HotMail, Gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[VocÊ pode digitar aqui uma lista de endereços IP(ou range de IP) para as quais a filtragem de URL será desabilitada (mas ainda terá filtragem de virus se estiver habilitada). Por exemplo:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Endereços IP sem filtragem</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[Os seguintes campos permitem que você crie suas próprias listas de sites bloqueados (blacklist) ou liberados (whitelist). A whitelist sempre tem precedencia sobre a blacklist.<br><br>Você pode digitar aqui uma lista de URLs ou nomes de domínio.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Digite aqui uma lista de nomes de domínio ou URL que serão liberados</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Lista Branca</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="pt">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Desabilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Habilitado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="ro">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Disabled</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Activat</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="ru">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Отключен</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Включен</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="sl">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Onemogoceno</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Omogoceno</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="sv">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Ej tillåten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Tillåten</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/th/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/th/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="th">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>ปิดไม่ใช้งาน</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>เปิดใช้งาน</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
258
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/webfilter
Normal file
258
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="tr">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>Etkin değil</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>Etkin</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="zh-cn">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>网页过滤</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>网页过滤设置</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>禁用</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>启用</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL 过滤</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>病毒过滤</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>在线赌博网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>迷信类网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>音视频网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>电子银行</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>博客托管</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>在线聊天</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>儿童网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>约会网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>毒品相关的网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>文件托管类网站 (视频, 图片, 音频)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>财经网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>社区网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>在线游戏类的网站.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>在线游戏或游戏发行类的网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>黑客网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>找工作的网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>教育类网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>包含恶意软件的网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>动漫类网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>小众网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>电话销售类网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>钓鱼网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>新闻网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>广告</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>互联网电台</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>例外的网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>色情网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>购物网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>社交网络</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>体育</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>考试作弊网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>盗版软件网站</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>网页邮箱 (hotmail, gmail 等.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>黑名单</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>白名单</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,258 @@
|
||||
<lexicon lang="zh-tw">
|
||||
<entry>
|
||||
<base>WEB_FILTERING</base>
|
||||
<trans>Web Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Web filtering configuration</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PAGE_DESCRIPTION</base>
|
||||
<trans>This page lets you block some websites categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DISABLED</base>
|
||||
<trans>禁用</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ENABLED</base>
|
||||
<trans>啟用</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_URL_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_URL_FILTER_STATUS</base>
|
||||
<trans>URL Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_AV_FILTER_STATUS</base>
|
||||
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_AV_FILTER_STATUS</base>
|
||||
<trans>AV Filtering</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLOCKED_CATEGORIES</base>
|
||||
<trans>You can check websites categories you want to block</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_OR_NOT</base>
|
||||
<trans>Blocked ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CATEGORY</base>
|
||||
<trans>Category</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLOCKED_CATEGORIES</base>
|
||||
<trans>Blocked categories</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>NOT_A_VALID_IP_LIST</base>
|
||||
<trans>This field contains one or more bad entries(s)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>adult</base>
|
||||
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>agressif</base>
|
||||
<trans>racist, antisemitic, inciting to hatred sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>arjel</base>
|
||||
<trans>Online betting sites certified by the ARJEL</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>astrology</base>
|
||||
<trans>Astrology related sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>audio-video</base>
|
||||
<trans>Audio and video sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>bank</base>
|
||||
<trans>Online banking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>blog</base>
|
||||
<trans>Blog hosting sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>celebrity</base>
|
||||
<trans>"People" news sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>chat</base>
|
||||
<trans>Online chating sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>child</base>
|
||||
<trans>Child approved sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cleaning</base>
|
||||
<trans>Websites to sanitize and update computers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>cooking</base>
|
||||
<trans>Cooking sites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dangerous_material</base>
|
||||
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>dating</base>
|
||||
<trans>Dating websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>drogue</base>
|
||||
<trans>Drugs related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>filehosting</base>
|
||||
<trans>File hosting websites (video, images, audio)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>financial</base>
|
||||
<trans>Financial websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>forums</base>
|
||||
<trans>Forums</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>gambling</base>
|
||||
<trans>Online gaming websites, casinos, etc.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>games</base>
|
||||
<trans>Online games or games distribution</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>hacking</base>
|
||||
<trans>Hacking and computer attacks websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>jobsearch</base>
|
||||
<trans>Job search</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>liste_bu</base>
|
||||
<trans>educational websites for "univ-tlse1.fr"</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>malware</base>
|
||||
<trans>Websites injecting badwares</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>manga</base>
|
||||
<trans>Manga and comics related websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>marketingware</base>
|
||||
<trans>Very special marketing websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>mobile-phone</base>
|
||||
<trans>Phone related websites (ring, etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>phishing</base>
|
||||
<trans>Phishing, bank traps ans other websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>press</base>
|
||||
<trans>News websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>publicite</base>
|
||||
<trans>Advertisement</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>radio</base>
|
||||
<trans>Internet radios</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>reaffected</base>
|
||||
<trans>Sites that have changed ownership and therefore content</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>redirector</base>
|
||||
<trans>Filtering bypass websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>remote-control</base>
|
||||
<trans>Remote control websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sect</base>
|
||||
<trans>Sects</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sexual_education</base>
|
||||
<trans>websites that talk about sex education and can be detected as pornographic</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>shopping</base>
|
||||
<trans>Shopping websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>social_networks</base>
|
||||
<trans>Social networks</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>sports</base>
|
||||
<trans>Sports</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strict_redirector</base>
|
||||
<trans>Like redirector, but include classic search engines</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>strong_redirector</base>
|
||||
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>tricheur</base>
|
||||
<trans>websites that explain how to cheat on exams</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>warez</base>
|
||||
<trans>Counterfeit softwares websites</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>webmail</base>
|
||||
<trans>Webmails (hotmail, gmail etc.)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_UNRESTRICTED</base>
|
||||
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_UNRESTRICTED</base>
|
||||
<trans>Unfiltered IP addresses</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_BLACK</base>
|
||||
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_BLACK</base>
|
||||
<trans>Blacklist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>DESC_WHITE</base>
|
||||
<trans>Enter here a domain names or urls list which will be allowed</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>LABEL_WHITE</base>
|
||||
<trans>Whitelist</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1 @@
|
||||
PERMS=0755
|
@@ -0,0 +1 @@
|
||||
PERMS=0750
|
@@ -0,0 +1 @@
|
||||
exec /etc/e-smith/events/actions/squidguard-update-databases 2>&1 > /dev/null
|
47
root/etc/e-smith/templates/etc/e-smith/sql/init/squiddblogd
Normal file
47
root/etc/e-smith/templates/etc/e-smith/sql/init/squiddblogd
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
my $db = ${'squid-db-logd'}{'DbName'} || 'squid_log';
|
||||
my $user = ${'squid-db-logd'}{'DbUser'} || 'squid';
|
||||
my $pass = ${'squid-db-logd'}{'DbPassword'} || 'squid';
|
||||
|
||||
my $dbstruct = `rpm -qd smeserver-webfilter | grep squid_log.sql`;
|
||||
|
||||
$OUT .= <<"END";
|
||||
#! /bin/sh
|
||||
if [ ! -d /var/lib/mysql/$db ]; then
|
||||
/usr/bin/mysql -e 'create database $db'
|
||||
/usr/bin/mysql $db < $dbstruct
|
||||
fi
|
||||
|
||||
/usr/bin/mysql <<EOF
|
||||
USE mysql;
|
||||
|
||||
REPLACE INTO user (
|
||||
host,
|
||||
user,
|
||||
password)
|
||||
VALUES (
|
||||
'localhost',
|
||||
'$user',
|
||||
PASSWORD ('$pass'));
|
||||
|
||||
|
||||
REPLACE INTO db (
|
||||
host,
|
||||
db,
|
||||
user,
|
||||
select_priv, insert_priv, update_priv, delete_priv,
|
||||
create_priv, alter_priv, index_priv, drop_priv, create_tmp_table_priv,
|
||||
grant_priv, lock_tables_priv, references_priv)
|
||||
VALUES (
|
||||
'localhost',
|
||||
'$db',
|
||||
'$user',
|
||||
'Y', 'Y', 'Y', 'Y',
|
||||
'Y', 'Y', 'Y', 'Y', 'Y',
|
||||
'N', 'Y', 'Y');
|
||||
|
||||
FLUSH PRIVILEGES;
|
||||
EOF
|
||||
END
|
||||
}
|
||||
|
@@ -0,0 +1,13 @@
|
||||
ScriptAlias /squidGuard/cgi-bin/ /usr/share/squidGuard/cgi-bin/
|
||||
Alias /squidGuard /usr/share/squidGuard
|
||||
|
||||
<Directory /usr/share/squidGuard/cgi-bin>
|
||||
AllowOverride None
|
||||
Options +ExecCGI
|
||||
Require all granted
|
||||
</Directory>
|
||||
<Directory /usr/share/squidGuard/images>
|
||||
AllowOverride None
|
||||
Options None
|
||||
Require all granted
|
||||
</Directory>
|
@@ -0,0 +1,9 @@
|
||||
/var/log/squidGuard/*.log \{
|
||||
weekly
|
||||
rotate 52
|
||||
copytruncate
|
||||
compress
|
||||
notifempty
|
||||
missingok
|
||||
\}
|
||||
|
@@ -0,0 +1,25 @@
|
||||
{
|
||||
my $sg = $squidguard{'status'} || 'disabled';
|
||||
my $sc = $squidclamav{'status'} || 'disabled';
|
||||
my $redir = '';
|
||||
|
||||
if ($sc eq 'enabled'){
|
||||
$redir = '/usr/bin/squidclamav';
|
||||
}
|
||||
elsif ($sg eq 'enabled'){
|
||||
$redir = '/usr/bin/squidGuard';
|
||||
}
|
||||
|
||||
if ($redir ne ''){
|
||||
$OUT .=<<"EOF";
|
||||
redirect_program $redir
|
||||
redirect_children 20
|
||||
EOF
|
||||
}
|
||||
else{
|
||||
$OUT .= '# neither squidGuard nor squidclamav is enabled';
|
||||
}
|
||||
}
|
||||
|
||||
acl self src 127.0.0.1
|
||||
url_rewrite_access deny self
|
@@ -0,0 +1,2 @@
|
||||
dbhome /var/squidGuard
|
||||
logdir /var/log/squidGuard
|
@@ -0,0 +1,13 @@
|
||||
src unrestricted \{
|
||||
{
|
||||
|
||||
my $ip = $squidguard{'UnrestrictedIP'} || '';
|
||||
$ip =~ s/[,;]/ /g;
|
||||
$OUT .=<<"EOF" if ($ip ne '');
|
||||
|
||||
ip $ip
|
||||
|
||||
EOF
|
||||
|
||||
}
|
||||
\}
|
@@ -0,0 +1,33 @@
|
||||
dest black \{
|
||||
log deny.log
|
||||
domainlist blacklists/black/domains
|
||||
urllist blacklists/black/urls
|
||||
\}
|
||||
dest white \{
|
||||
log white.log
|
||||
domainlist blacklists/white/domains
|
||||
urllist blacklists/white/urls
|
||||
\}
|
||||
|
||||
{
|
||||
my @hide = split (/[;,]/, ($squidguard{'DisabledCategories'} || ''));
|
||||
|
||||
opendir BL, '/var/squidGuard/blacklists/' || die "Couldn't open blacklists dir\n";
|
||||
|
||||
while (my $cat = readdir(BL)){
|
||||
next if (!-d "/var/squidGuard/blacklists/$cat" ||
|
||||
$cat =~ /^\./ ||
|
||||
$cat eq 'black' ||
|
||||
$cat eq 'white' ||
|
||||
grep { $_ eq $cat } @hide );
|
||||
$OUT .= "dest $cat {\n\tlog deny.log\n";
|
||||
$OUT .= "\tdomainlist blacklists/$cat/domains\n"
|
||||
if (-e "/var/squidGuard/blacklists/$cat/domains");
|
||||
$OUT .= "\turllist blacklists/$cat/urls\n"
|
||||
if (-e "/var/squidGuard/blacklists/$cat/urls");
|
||||
$OUT .= "\texpressionlist blacklists/$cat/expressions\n"
|
||||
if (-e "/var/squidGuard/blacklists/$cat/expressions");
|
||||
$OUT .= "}\n";
|
||||
}
|
||||
closedir BL;
|
||||
}
|
@@ -0,0 +1 @@
|
||||
acl \{
|
@@ -0,0 +1,3 @@
|
||||
unrestricted \{
|
||||
pass any
|
||||
\}
|
@@ -0,0 +1,17 @@
|
||||
{
|
||||
my @blocked = split(/[;,]/, ($squidguard{'BlockedCategories'} || ''));
|
||||
my $redirect = $squidguard{'RedirectUrl'} ||
|
||||
"http://$SystemName.$DomainName/squidGuard/".
|
||||
'cgi-bin/blocked.cgi?clientaddr=%a&clientname=%n'.
|
||||
'&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u';
|
||||
|
||||
my $deny = 'white !black';
|
||||
$deny .= " !$_" foreach (@blocked);
|
||||
$deny .= " !in-addr" if (($squidguard{'DenyIP'} || 'disabled') eq 'enabled');
|
||||
$OUT .=<<"EOF";
|
||||
default {
|
||||
pass $deny any
|
||||
redirect $redirect
|
||||
}
|
||||
EOF
|
||||
}
|
@@ -0,0 +1 @@
|
||||
\}
|
2
root/etc/e-smith/templates/etc/squidclamav.conf/010squid
Normal file
2
root/etc/e-smith/templates/etc/squidclamav.conf/010squid
Normal file
@@ -0,0 +1,2 @@
|
||||
squid_ip 127.0.0.1
|
||||
squid_port {$squid{'TCPPort'} || '3128';}
|
16
root/etc/e-smith/templates/etc/squidclamav.conf/020log
Normal file
16
root/etc/e-smith/templates/etc/squidclamav.conf/020log
Normal file
@@ -0,0 +1,16 @@
|
||||
logfile /var/log/squid/squidclamav.log
|
||||
{
|
||||
my $debug = $squidclamav{'Debug'} || 'no';
|
||||
if ($debug =~ m/^yes|enabled|on|1$/i){
|
||||
$OUT .=<<"EOF";
|
||||
|
||||
debug 1
|
||||
stat 1
|
||||
logredir 1
|
||||
|
||||
EOF
|
||||
}
|
||||
else{
|
||||
$OUT .= "# Debuging is disabled\n";
|
||||
}
|
||||
}
|
2
root/etc/e-smith/templates/etc/squidclamav.conf/030clam
Normal file
2
root/etc/e-smith/templates/etc/squidclamav.conf/030clam
Normal file
@@ -0,0 +1,2 @@
|
||||
clamd_local /var/clamav/clamd.socket
|
||||
maxsize {$squidclamav{'MaxScanSize'} || '5000000';}
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
my $sg = $squidguard{'status'} || 'disabled';
|
||||
if ($sg eq 'enabled'){
|
||||
$OUT .= "squidguard /usr/bin/squidGuard\n";
|
||||
}
|
||||
else{
|
||||
$OUT .= "# squidGuard is disabled\n";
|
||||
}
|
||||
}
|
@@ -0,0 +1 @@
|
||||
redirect http://{$SystemName.'.'.$DomainName}/squidGuard/cgi-bin/blocked.cgi
|
4
root/etc/e-smith/templates/etc/squidclamav.conf/060var
Normal file
4
root/etc/e-smith/templates/etc/squidclamav.conf/060var
Normal file
@@ -0,0 +1,4 @@
|
||||
maxredir 30
|
||||
timeout 60
|
||||
useragent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
|
||||
|
11
root/etc/e-smith/templates/etc/squidclamav.conf/070exclude
Normal file
11
root/etc/e-smith/templates/etc/squidclamav.conf/070exclude
Normal file
@@ -0,0 +1,11 @@
|
||||
# Do not scan images
|
||||
abort ^.*\.(ico|gif|png|jpg)$
|
||||
abortcontent ^image\/.*$
|
||||
|
||||
# Do not scan streamed videos
|
||||
abortcontent ^video\/x-flv$
|
||||
abortcontent ^video\/mp4$
|
||||
|
||||
# Do not scan sequence of framed Microsoft Media Server (MMS) data packets
|
||||
abortcontent ^.*application\/x-mms-framed.*$
|
||||
|
10
root/etc/e-smith/templates/etc/squidclamav.conf/080whitelist
Normal file
10
root/etc/e-smith/templates/etc/squidclamav.conf/080whitelist
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
|
||||
if ( -e "/etc/squid/clamav_whitelist" ){
|
||||
Text::Template::_load_text("/etc/squid/clamav_whitelist");
|
||||
}
|
||||
else{
|
||||
$OUT .= "";
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
image = /usr/share/squidGuard/images/blocked.gif
|
||||
redirect = http://{$SystemName.'.'.$DomainName}/images/blocked.gif
|
||||
proxy = {$SystemName.'.'.$DomainName}
|
||||
proxymaster = admin@{$DomainName}
|
||||
autoinaddr = 2
|
||||
company = {$squidGuard{'CompanyName'} || $ldap{'defaultCompany'}}
|
||||
companylogo = {$squidGuard{'CompanyLogo'} || ''}
|
||||
squidguard = http://www.squidguard.org
|
||||
squidguardlogo = http://www.squidguard.org/Logos/squidGuard.gif
|
79
root/etc/e-smith/web/functions/webfilter
Normal file
79
root/etc/e-smith/web/functions/webfilter
Normal file
@@ -0,0 +1,79 @@
|
||||
#!/usr/bin/perl -wT
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : Configuration
|
||||
# description : WEB_FILTERING
|
||||
# navigation : 6000 6950
|
||||
#----------------------------------------------------------------------
|
||||
# Copyright (C) 2011-2012 Firewall Services
|
||||
# daniel@firewall-services.com
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
use strict;
|
||||
use esmith::FormMagick;
|
||||
use esmith::FormMagick::Panel::webfilter;
|
||||
my $f = esmith::FormMagick::Panel::webfilter->new();
|
||||
$f->display();
|
||||
|
||||
|
||||
__DATA__
|
||||
<form title="FORM_TITLE" header="/etc/e-smith/web/common/head.tmpl" footer="/etc/e-smith/web/common/foot.tmpl">
|
||||
<page name="First" pre-event="print_status_message()" post-event="change_settings()">
|
||||
<description>PAGE_DESCRIPTION</description>
|
||||
|
||||
<field type="select"
|
||||
id="url_filter_status"
|
||||
options="'disabled' => 'DISABLED', 'enabled' => 'ENABLED'"
|
||||
value="get_prop('squidguard', 'status')">
|
||||
<description>DESC_URL_FILTER_STATUS</description>
|
||||
<label>LABEL_URL_FILTER_STATUS</label>
|
||||
</field>
|
||||
|
||||
<field type="select"
|
||||
id="av_filter_status"
|
||||
options="'disabled' => 'DISABLED', 'enabled' => 'ENABLED'"
|
||||
value="get_prop('squidclamav','status')">
|
||||
<description>DESC_AV_FILTER_STATUS</description>
|
||||
<label>LABEL_AV_FILTER_STATUS</label>
|
||||
</field>
|
||||
|
||||
<field type="literal" id="blocked_desc" value="">
|
||||
<description>DESC_BLOCKED_CATEGORIES</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_categories()"/>
|
||||
|
||||
<field type="textarea" id="unrestricted" cols="60" rows="10"
|
||||
value="get_list('squidguard','UnrestrictedIP')" validation="valid_ip_list()">
|
||||
<description>DESC_UNRESTRICTED</description>
|
||||
<label>LABEL_UNRESTRICTED</label>
|
||||
</field>
|
||||
|
||||
<field type="textarea" id="black" cols="60" rows="10"
|
||||
value="get_wbl('black')">
|
||||
<description>DESC_BLACK</description>
|
||||
<label>LABEL_BLACK</label>
|
||||
</field>
|
||||
<field type="textarea" id="white" cols="60" rows="10"
|
||||
value="get_wbl('white')">
|
||||
<description>DESC_WHITE</description>
|
||||
<label>LABEL_WHITE</label>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
</page>
|
||||
</form>
|
9
root/etc/logrotate.d/squidclamav
Normal file
9
root/etc/logrotate.d/squidclamav
Normal file
@@ -0,0 +1,9 @@
|
||||
/var/log/squid/squidclamav.log {
|
||||
weekly
|
||||
rotate 52
|
||||
copytruncate
|
||||
compress
|
||||
notifempty
|
||||
missingok
|
||||
}
|
||||
|
223
root/usr/bin/squid-db-logd
Normal file
223
root/usr/bin/squid-db-logd
Normal file
@@ -0,0 +1,223 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use File::Tail;
|
||||
use DBI;
|
||||
use URI;
|
||||
use Getopt::Long;
|
||||
use threads;
|
||||
use threads::shared;
|
||||
use strict;
|
||||
|
||||
our %opts = ();
|
||||
|
||||
# Set default options
|
||||
$opts{squidlog} = '/var/log/squid/access.log';
|
||||
$opts{squidguardlog} = '/var/log/squidGuard/deny.log';
|
||||
$opts{squid} = 1;
|
||||
$opts{squidguard} = 0;
|
||||
$opts{debug} = 0;
|
||||
$opts{dbhost} = 'localhost';
|
||||
$opts{dbname} = 'squid_log';
|
||||
$opts{dbuser} = 'squid';
|
||||
$opts{dbpass} = 'squid';
|
||||
|
||||
# get command line arguments
|
||||
GetOptions(
|
||||
"debug=i" => \$opts{debug},
|
||||
"squidlog=s" => \$opts{squidlog},
|
||||
"squidguardlog=s" => \$opts{squidguardlog},
|
||||
"squid!" => \$opts{squid},
|
||||
"squidguard!" => \$opts{squidguard},
|
||||
"dbhost=s" => \$opts{dbhost},
|
||||
"dbname=s" => \$opts{dbname},
|
||||
"dbuser=s" => \$opts{dbuser},
|
||||
"dbpass=s" => \$opts{dbpass}
|
||||
);
|
||||
|
||||
# Disable output buffering
|
||||
select(STDOUT);
|
||||
$| = 1;
|
||||
select(STDERR);
|
||||
$| = 1;
|
||||
|
||||
open STDERR, '>&STDOUT';
|
||||
|
||||
# Set process name
|
||||
$0 = 'squid-db-logd';
|
||||
|
||||
# Get hostname
|
||||
our $host = `hostname`;
|
||||
chomp($host);
|
||||
|
||||
### Subroutines
|
||||
|
||||
# Print messages on stderr
|
||||
# for debuging purpose
|
||||
sub printlog {
|
||||
my $msg = shift;
|
||||
print "$msg\n";
|
||||
return;
|
||||
}
|
||||
|
||||
# Connect to the database
|
||||
sub db_connect {
|
||||
my $dbh = DBI->connect("DBI:mysql:database=$opts{dbname};host=$opts{dbhost}",
|
||||
$opts{dbuser}, $opts{dbpass}, {RaiseError => 1});
|
||||
die "Couldn't connect to database\n" unless ($dbh);
|
||||
return $dbh;
|
||||
}
|
||||
|
||||
# escape chars for MySQL queries
|
||||
sub mysql_escape {
|
||||
my $string = shift;
|
||||
$string =~ s|'|\\'|g;
|
||||
return $string;
|
||||
}
|
||||
|
||||
# log squid access
|
||||
|
||||
# prepare squid insert query
|
||||
sub squid_prepare {
|
||||
my $dbh = shift;
|
||||
my $q = "INSERT INTO access_log (proxy_host, timestamp, response_time, ".
|
||||
"client_ip, squid_status, http_status, reply_size, request_method, ".
|
||||
"url, domain, username, squid_connect, server_ip, mime_type) ".
|
||||
"VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
|
||||
my $qh = $dbh->prepare($q);
|
||||
return $qh;
|
||||
}
|
||||
|
||||
# prepare squidGuard insert query
|
||||
sub squidguard_prepare {
|
||||
my $dbh = shift;
|
||||
my $q = "INSERT INTO deny_log (proxy_host, date_day, date_time, ".
|
||||
"category, client_ip, url, domain, username) ".
|
||||
"VALUES(?,?,?,?,?,?,?,?)";
|
||||
my $qh = $dbh->prepare($q);
|
||||
return $qh;
|
||||
}
|
||||
|
||||
sub squid_log {
|
||||
|
||||
my $logfile = shift;
|
||||
|
||||
printlog("squid_log thread connecting to database") if ($opts{debug} ge 1);
|
||||
my $dbh = db_connect;
|
||||
my $qh = squid_prepare($dbh);
|
||||
# Open log file
|
||||
|
||||
printlog("opening squid log file") if ($opts{debug} ge 1);
|
||||
my $tail = File::Tail->new(name=>$logfile, maxinterval=>15);
|
||||
|
||||
while (defined(my $line=$tail->read)){
|
||||
my ($timestamp, $response_time, $client_ip, $status, $reply_size,
|
||||
$request_method, $url, $username, $server, $mime_type) = split /\s+/, $line;
|
||||
my ($squid_status, $http_status) = split /\//, $status;
|
||||
my ($squid_connect, $server_ip) = split /\//, $server;
|
||||
|
||||
# Skip stats requested by squidclient
|
||||
next if ($url =~ m/^cache_object:/);
|
||||
|
||||
my $domain;
|
||||
if ($request_method eq 'CONNECT'){
|
||||
($domain,undef) = split /:/, $url;
|
||||
}
|
||||
elsif ($url =~ m/^error:/){
|
||||
(undef,$domain) = split /:/, $url;
|
||||
}
|
||||
else{
|
||||
my $uri = URI->new($url);
|
||||
$domain = $uri->host;
|
||||
}
|
||||
|
||||
# MySQL escape
|
||||
# Shouldn't be needed, but just in case logs contains junk
|
||||
$timestamp = mysql_escape($timestamp);
|
||||
$response_time = mysql_escape($response_time);
|
||||
$client_ip = mysql_escape($client_ip);
|
||||
$squid_status = mysql_escape($squid_status);
|
||||
$http_status = mysql_escape($http_status);
|
||||
$reply_size = mysql_escape($reply_size);
|
||||
$request_method = mysql_escape($request_method);
|
||||
$url = mysql_escape($url);
|
||||
$domain = mysql_escape($domain);
|
||||
$username = mysql_escape($username);
|
||||
$squid_connect = mysql_escape($squid_connect);
|
||||
$server_ip = mysql_escape($server_ip);
|
||||
$mime_type = mysql_escape($mime_type);
|
||||
|
||||
printlog("New access_log entry:\ntimestamp: $timestamp\nresponse_time: $response_time\n".
|
||||
"client_ip: $client_ip\nsquid_status: $squid_status\nhttp_status: $http_status\n".
|
||||
"reply_size: $reply_size\nrequest_method: $request_method\nurl: $url\n".
|
||||
"username: $username\nsquid_connect: $squid_connect\n".
|
||||
"server_ip: $server_ip\nmime_type: $mime_type\n\n") if ($opts{debug} ge 2);
|
||||
|
||||
$qh->execute($host, $timestamp,$response_time,$client_ip,$squid_status,
|
||||
$http_status,$reply_size,$request_method,$url,$domain,
|
||||
$username,$squid_connect,$server_ip,$mime_type) || die "Database error: ".$qh->errstr;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
# log squid access
|
||||
sub squidguard_log {
|
||||
|
||||
my $logfile = shift;
|
||||
|
||||
printlog("squidguard_log thread connecting to database") if ($opts{debug} ge 1);
|
||||
my $dbh = db_connect;
|
||||
my $qh = squidguard_prepare($dbh);
|
||||
|
||||
# Open log file
|
||||
printlog("opening squidGuard log file") if ($opts{debug} ge 1);
|
||||
my $tail = File::Tail->new(name=>$logfile, maxinterval=>15);
|
||||
|
||||
while (defined(my $line=$tail->read)){
|
||||
my ($date_day, $date_time, undef, $category, $url, $client_ip, $username) = split /\s+/, $line;
|
||||
# Clean some values
|
||||
$category =~ m/default\/(\w+)/;
|
||||
$category = $1;
|
||||
$client_ip =~ s/\/\-$//;
|
||||
|
||||
my $domain;
|
||||
# Use the URI parser if possible
|
||||
if ($url =~ m/^https?:\/\//){
|
||||
my $uri = URI->new($url);
|
||||
$domain = $uri->host;
|
||||
}
|
||||
# Else, it's a CONNECT method like www.domain.tld:443
|
||||
else {
|
||||
($domain,undef) = split /:/, $url;
|
||||
}
|
||||
$domain = mysql_escape($domain);
|
||||
|
||||
# MySQL escape
|
||||
$date_day = mysql_escape($date_day);
|
||||
$date_time = mysql_escape($date_time);
|
||||
$category = mysql_escape($category);
|
||||
$url = mysql_escape($url);
|
||||
$client_ip = mysql_escape($client_ip);
|
||||
$username = mysql_escape($username);
|
||||
|
||||
printlog("New deny_log entry:\ndate: $date_day\ntime: $date_time\ncategory: $category\n".
|
||||
"client_ip: $client_ip\nurl: $url\nusername: $username\n\n") if ($opts{debug} ge 2);
|
||||
|
||||
$qh->execute($host,$date_day,$date_time,$category,$client_ip,$url,$domain,$username) ||
|
||||
die "Database error: ".$qh->errstr;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
printlog("Starting log monitoring threads") if ($opts{debug} ge 1);
|
||||
my $thr1 = threads->create('squid_log', $opts{squidlog}) if ($opts{squid});
|
||||
my $thr = 1;
|
||||
if ($opts{squidguard}){
|
||||
my $thr2 = threads->create('squidguard_log', $opts{squidguardlog}) if ($opts{squidguard});
|
||||
$thr++;
|
||||
}
|
||||
|
||||
while (scalar(threads->list(threads::running)) ge $thr){
|
||||
sleep(5);
|
||||
}
|
||||
|
||||
die "At least one thread died\n";
|
@@ -0,0 +1,190 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
package esmith::FormMagick::Panel::webfilter;
|
||||
|
||||
use strict;
|
||||
|
||||
use esmith::FormMagick;
|
||||
use esmith::ConfigDB;
|
||||
use esmith::cgi;
|
||||
use Exporter;
|
||||
use Carp;
|
||||
|
||||
our @ISA = qw(esmith::FormMagick);
|
||||
|
||||
our $db = esmith::ConfigDB->open() || die "Couldn't open config db";
|
||||
|
||||
sub new {
|
||||
shift;
|
||||
my $self = esmith::FormMagick->new();
|
||||
$self->{calling_package} = (caller)[0];
|
||||
bless $self;
|
||||
return $self;
|
||||
}
|
||||
|
||||
sub get_prop{
|
||||
my ($self,$entrie,$prop) = @_;
|
||||
return $db->get_prop($entrie, $prop) || '';
|
||||
}
|
||||
|
||||
sub get_list{
|
||||
my ($self,$entrie,$prop) = @_;
|
||||
my $values = get_prop($self,$entrie,$prop);
|
||||
$values =~ s/[;,]/\n/g;
|
||||
return $values;
|
||||
}
|
||||
|
||||
sub get_wbl{
|
||||
my ($self,$bl) = @_;
|
||||
open FILE, "</var/squidGuard/blacklists/$bl/domains" || die "Couldn't open file /var/squidGuard/blacklists/$bl/domains: $!\n";
|
||||
my $content = '';
|
||||
while (<FILE>){
|
||||
$content .= $_;
|
||||
}
|
||||
close FILE;
|
||||
open FILE, "</var/squidGuard/blacklists/$bl/urls" || die "Couldn't open file /var/squidGuard/blacklists/$bl/urls: $!\n";
|
||||
while (<FILE>){
|
||||
$content .= $_;
|
||||
}
|
||||
close FILE;
|
||||
return $content;
|
||||
}
|
||||
|
||||
sub print_section_bar{
|
||||
my ($fm) = @_;
|
||||
print " <tr>\n <td colspan='2'>\n";
|
||||
print "<hr class=\"sectionbar\"/>\n";
|
||||
return undef;
|
||||
}
|
||||
|
||||
sub print_categories{
|
||||
my ($fm) = @_;
|
||||
my $q = $fm->{cgi};
|
||||
my @blockedCategories = split(/[,;]/, (get_prop($fm, 'squidguard', 'BlockedCategories')));
|
||||
print "<tr><td class=\"sme-noborders-label\">",
|
||||
$fm->localise('BLOCKED_CATEGORIES'),
|
||||
"</td><td>\n";
|
||||
print $q->start_table({-class => "sme-border"}),"\n";
|
||||
print $q->Tr(
|
||||
esmith::cgi::genSmallCell($q, $fm->localise('BLOCKED_OR_NOT'),"header"),
|
||||
esmith::cgi::genSmallCell($q, $fm->localise('CATEGORY'),"header"),
|
||||
esmith::cgi::genSmallCell($q, $fm->localise('DESCRIPTION'),"header")
|
||||
);
|
||||
my @categories = ();
|
||||
my @hide = split(/[;,]/, (get_prop($fm, 'squidguard', 'DisabledCategories')));
|
||||
opendir BL, '/var/squidGuard/blacklists' || die "Couldn't open blacklists directory\n";
|
||||
while (my $cat = readdir(BL)){
|
||||
next if (!-d "/var/squidGuard/blacklists/$cat" ||
|
||||
$cat =~ /^\./ ||
|
||||
$cat eq 'black' ||
|
||||
$cat eq 'white' ||
|
||||
grep { $_ eq $cat } @hide);
|
||||
push @categories, $cat;
|
||||
}
|
||||
closedir BL;
|
||||
foreach my $c (sort @categories){
|
||||
my $checked = '';
|
||||
if (grep { $_ eq $c } @blockedCategories) {
|
||||
$checked = 'checked';
|
||||
}
|
||||
print $q->Tr(
|
||||
$q->td(
|
||||
"<input type=\"checkbox\""
|
||||
. " name=\"blockedCategories\""
|
||||
. " $checked value=\"$c\">"
|
||||
),
|
||||
esmith::cgi::genSmallCell($q, $c,"normal"),
|
||||
esmith::cgi::genSmallCell( $q, $fm->localise($c),"normal")
|
||||
);
|
||||
}
|
||||
print "</table></td></tr>\n";
|
||||
return undef;
|
||||
}
|
||||
|
||||
sub change_settings {
|
||||
my $fm = shift;
|
||||
my $q = $fm->{'cgi'};
|
||||
|
||||
$db->set_prop('squidguard', 'status', $q->param('url_filter_status'));
|
||||
$db->set_prop('squidclamav', 'status', $q->param('av_filter_status'));
|
||||
|
||||
my $squid = $db->get('squid') || die "Couldn't find squid service in configuration DB\n";
|
||||
my $squidstatus = $squid->prop('status') || 'disabled';
|
||||
|
||||
# If either squidguard or havp is enabled, squid needs to be enabled too
|
||||
if ((($q->param('url_filter_status') eq 'enabled') || ($q->param('av_filter_status') eq 'enabled')) &&
|
||||
($squidstatus ne 'enabled')){
|
||||
$db->set_prop('squid', 'status', 'enabled');
|
||||
$fm->error('ERROR') unless (system ("/sbin/e-smith/signal-event proxy-update") == 0 );
|
||||
}
|
||||
|
||||
$db->set_prop('squidguard', 'BlockedCategories', join(',', $q->param('blockedCategories')));
|
||||
my $ip = $q->param('unrestricted');
|
||||
$ip =~ s/\r?\n/,/g;
|
||||
$db->set_prop('squidguard', 'UnrestrictedIP', $ip);
|
||||
|
||||
# Split domains and URL
|
||||
# as squidguard wants them in their own file
|
||||
my %list;
|
||||
$list{black_domains} = [ grep {$_ !~ m|/|} split(/\r?\n/, $q->param('black')) ];
|
||||
$list{black_urls} = [ grep {$_ =~ m|/|} split(/\r?\n/, $q->param('black')) ];
|
||||
$list{white_domains} = [ grep {$_ !~ m|/|} split(/\r?\n/, $q->param('white')) ];
|
||||
$list{white_urls} = [ grep {$_ =~ m|/|} split(/\r?\n/, $q->param('white')) ];
|
||||
|
||||
foreach (qw{black_domains black_urls white_domains white_urls}){
|
||||
my $file = $_;
|
||||
my $bl = $file;
|
||||
$file =~ s!_!/!;
|
||||
open FILE, ">/var/squidGuard/blacklists/$file" || die "Couldn't open $file: $!\n";
|
||||
foreach (@{$list{$bl}}){
|
||||
$_ =~ s|https?://||g;
|
||||
print FILE $_."\n";
|
||||
}
|
||||
close FILE;
|
||||
}
|
||||
# Write whitelist for squidclamav
|
||||
open FILE, ">/etc/squid/clamav_whitelist" || die "Couldn't open /etc/squid/clamav_whitelist: $!\n";
|
||||
foreach (@{$list{white_domains}},@{$list{white_urls}}){
|
||||
$_ =~ s|https?://||g;
|
||||
$_ =~ s|^(.*)|whitelist\ \.$1|g;
|
||||
$_ =~ s|\.|\\\.|g;
|
||||
print FILE $_."\n";
|
||||
}
|
||||
close FILE;
|
||||
|
||||
unless (system ("/sbin/e-smith/signal-event http-proxy-update") == 0 ){
|
||||
$fm->error('ERROR');
|
||||
}
|
||||
|
||||
$fm->success('SUCCESS');
|
||||
}
|
||||
|
||||
sub valid_ip_list{
|
||||
my ($fm,$text) = @_;
|
||||
foreach (split /\r?\n/, $text){
|
||||
return $fm->localise('NOT_A_VALID_IP_LIST') unless
|
||||
(valid_ip_or_range($fm,$_) eq 'OK' or $_ eq '');
|
||||
}
|
||||
return 'OK'
|
||||
}
|
||||
|
||||
sub valid_ip_or_range{
|
||||
my ($fm,$entry) = @_;
|
||||
if ($entry =~ m/^\d+\.\d+\.\d+\.\d+$/){
|
||||
return CGI::FormMagick::Validator::ip_number($fm, $entry)
|
||||
}
|
||||
elsif ($entry =~ m/^(\d+\.\d+\.\d+\.\d+)[\/\-](\d+\.\d+\.\d+\.\d+)$/){
|
||||
return 'OK' if (CGI::FormMagick::Validator::ip_number($fm, $1) eq 'OK' &&
|
||||
CGI::FormMagick::Validator::ip_number($fm, $2) eq 'OK');
|
||||
}
|
||||
elsif ($entry =~ m/^(\d+\.\d+\.\d+\.\d+)\/(\d{1,2})$/){
|
||||
return 'OK' if (CGI::FormMagick::Validator::ip_number($fm, $1) eq 'OK' &&
|
||||
$2 < 32 &&
|
||||
$2 > 1);
|
||||
}
|
||||
return $fm->localise('NOT_A_VALID_IP_OR_RANGE');
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
390
root/usr/share/squidGuard/cgi-bin/blocked.cgi
Executable file
390
root/usr/share/squidGuard/cgi-bin/blocked.cgi
Executable file
@@ -0,0 +1,390 @@
|
||||
#! /usr/bin/perl
|
||||
#
|
||||
# Explain to the user that the URL is blocked and by which rule set
|
||||
#
|
||||
# Original by P<>l Baltzersen 1999 (pal.baltzersen@ost.eltele.no)
|
||||
# French texts thanks to Fabrice Prigent (fabrice.prigent@univ-tlse1.fr)
|
||||
# Dutch texts thanks to Anneke Sicherer-Roetman (sicherer@sichemsoft.nl)
|
||||
# German texts thanks to Buergernetz Pfaffenhofen (http://www.bn-paf.de/filter/)
|
||||
# Spanish texts thanks to Samuel García).
|
||||
# Rewrite by Christine Kronberg, 2008, to enable an easier integration of
|
||||
# other languages.
|
||||
#
|
||||
|
||||
# By accepting this notice, you agree to be bound by the following
|
||||
# agreements:
|
||||
#
|
||||
# This software product, squidGuard, is copyrighted (C) 1998-2008
|
||||
# by Christine Kronberg, Shalla Secure Services. All rights reserved.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License (version 2) as
|
||||
# published by the Free Software Foundation. It is distributed in the
|
||||
# hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
||||
# the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License (GPL) for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# (GPL) along with this program.
|
||||
|
||||
use strict;
|
||||
use Socket;
|
||||
#
|
||||
# GLOBAL VALUES:
|
||||
#
|
||||
my ($clientaddr,$clientname,$clientuser,$clientgroup,$targetgroup,$url);
|
||||
my @supported;
|
||||
my $lang="en";
|
||||
my (%msgconf,%title,%logo,%msg,%tab,%word);
|
||||
my ($protocol,$address,$port,$path,$refererhost,$referer);
|
||||
my %Babel = ();
|
||||
my $rechts="";
|
||||
my $links="";
|
||||
my $dummy="";
|
||||
sub getpreferedlang(@);
|
||||
sub parsequery($);
|
||||
sub status($);
|
||||
sub redirect($);
|
||||
sub content($);
|
||||
sub expires($);
|
||||
sub msg($$);
|
||||
sub gethostnames($);
|
||||
sub spliturl($);
|
||||
sub showhtml($);
|
||||
sub showimage($$$);
|
||||
sub showinaddr($$$$$);
|
||||
|
||||
#
|
||||
# CONFIGURABLE OPTIONS:
|
||||
#
|
||||
# (Currently: "en", "fr", "de", "es", "nl", "no")
|
||||
@supported = (
|
||||
"en (English), ",
|
||||
"fr (Français), ",
|
||||
"de (Deutsch), ",
|
||||
"es (Español), ",
|
||||
"nl (Nederlands), ",
|
||||
"no (Norsk)."
|
||||
);
|
||||
|
||||
# Read external conf file
|
||||
open CONF, '../conf.txt' || die "Couldn't open conf file\n";
|
||||
my %conf;
|
||||
while (<CONF>){
|
||||
next if ($_ =~ m/^#/ or $_ !~ /=/);
|
||||
chomp;
|
||||
my ($key,$value) = split(/\s*=\s*/,$_);
|
||||
$conf{$key} = $value;
|
||||
}
|
||||
close CONF;
|
||||
|
||||
########################################################################################
|
||||
#
|
||||
# SUBROUTINES:
|
||||
#
|
||||
|
||||
#
|
||||
# RETURN THE FIRST SUPPORTED LANGUAGE OF THE BROWSERS PREFERRED OR THE
|
||||
# DEFAULT:
|
||||
#
|
||||
sub getpreferedlang(@) {
|
||||
my @supported = @_;
|
||||
my @languages = split(/\s*,\s*/,$ENV{"HTTP_ACCEPT_LANGUAGE"}) if(defined($ENV{"HTTP_ACCEPT_LANGUAGE"}));
|
||||
my $lang;
|
||||
my $supp;
|
||||
push(@languages,$supported[0]);
|
||||
for $lang (@languages) {
|
||||
$lang =~ s/\s.*//;
|
||||
$lang = substr($lang,0,2);
|
||||
for $supp (@supported) {
|
||||
$supp =~ s/\s.*//;
|
||||
return($lang) if ($lang eq $supp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# PARSE THE QUERY_STRING FOR KNOWN KEYS:
|
||||
#
|
||||
sub parsequery($) {
|
||||
my $query = shift;
|
||||
my $clientaddr = "$Babel{Unknown}";
|
||||
my $clientname = "$Babel{Unknown}";
|
||||
my $clientuser = "$Babel{Unknown}";
|
||||
my $clientgroup = "$Babel{Unknown}";
|
||||
my $targetgroup = "$Babel{Unknown}";
|
||||
my $url = "$Babel{Unknown}";
|
||||
my $virus = "$Babel{Unknown}";
|
||||
my $user = "$Babel{Unknown}";
|
||||
my $source = "$Babel{Unknown}";
|
||||
if (defined($query)) {
|
||||
while ($query =~ /^\&?([^\&=]+)=\"([^\"]*)\"(.*)/ || $query =~ /^\&?([^\&=]+)=([^\&=]*)(.*)/) {
|
||||
my $key = $1;
|
||||
my $value = $2;
|
||||
$value = "$Babel{Unknown}" unless(defined($value) && $value && $value ne "unknown");
|
||||
$query = $3;
|
||||
if ($key =~ /^(clientaddr|clientname|clientuser|clientgroup|targetgroup|url|virus|source|user)$/) {
|
||||
eval "\$$key = \$value";
|
||||
}
|
||||
if ($query =~ /^url=(.*)/) {
|
||||
$url = $1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
}
|
||||
$source =~ s/\/\-$//;
|
||||
$virus =~ s/\+/\ /g;
|
||||
$virus =~ s/FOUND//;
|
||||
$virus =~ s/stream/virus/;
|
||||
$clientaddr = $source if ($source ne $Babel{Unknown});
|
||||
$targetgroup = $virus if ($virus ne $Babel{Unknown});
|
||||
$clientuser = $user if ($user ne $Babel{Unknown});
|
||||
return($clientaddr,$clientname,$clientuser,$clientgroup,$targetgroup,$url);
|
||||
}
|
||||
|
||||
#
|
||||
# PRINT HTTP STATUS HEARER:
|
||||
#
|
||||
sub status($) {
|
||||
my $status = shift;
|
||||
print "Status: $status\n";
|
||||
}
|
||||
|
||||
#
|
||||
# PRINT HTTP LOCATION HEARER:
|
||||
#
|
||||
sub redirect($) {
|
||||
my $location = shift;
|
||||
print "Location: $location\n";
|
||||
}
|
||||
|
||||
#
|
||||
# PRINT HTTP CONTENT-TYPE HEARER:
|
||||
#
|
||||
sub content($) {
|
||||
my $contenttype = shift;
|
||||
print "Content-Type: $contenttype\n";
|
||||
}
|
||||
|
||||
#
|
||||
# PRINT HTTP LAST-MODIFIED AND EXPIRES HEARER:
|
||||
#
|
||||
sub expires($) {
|
||||
my $ttl = shift;
|
||||
my $time = time;
|
||||
my @day = ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
|
||||
my @month = ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
|
||||
my ($sec,$min,$hour,$mday,$mon,$year,$wday) = gmtime($time);
|
||||
printf "Last-Modified: %s, %d %s %d", $day[$wday],$mday,$month[$mon],$year+1900;
|
||||
printf " %02d:%02d:%02d GMT\n", $hour,$min,$sec;
|
||||
($sec,$min,$hour,$mday,$mon,$year,$wday) = gmtime($time+$ttl);
|
||||
printf "Expires: %s, %d %s %d", $day[$wday],$mday,$month[$mon],$year+1900;
|
||||
printf " %02d:%02d:%02d GMT\n", $hour,$min,$sec;
|
||||
}
|
||||
|
||||
#
|
||||
# REVERSE LOOKUP AND RETURN NAMES:
|
||||
#
|
||||
sub gethostnames($) {
|
||||
my $address = shift;
|
||||
my ($name,$aliases) = gethostbyaddr(inet_aton($address), AF_INET);
|
||||
my @names;
|
||||
if (defined($name)) {
|
||||
push(@names,$name);
|
||||
if (defined($aliases) && $aliases) {
|
||||
for(split(/\s+/,$aliases)) {
|
||||
next unless(/\./);
|
||||
push(@names,$_);
|
||||
}
|
||||
}
|
||||
}
|
||||
return(@names);
|
||||
}
|
||||
|
||||
#
|
||||
# SPLIT AN URL INTO PROTOCOL, ADDRESS, PORT AND PATH:
|
||||
#
|
||||
sub spliturl($) {
|
||||
my $url = shift;
|
||||
my $protocol = "";
|
||||
my $address = "";
|
||||
my $port = "";
|
||||
my $path = "";
|
||||
$url =~ /^([^\/:]+):\/\/([^\/:]+)(:\d*)?(.*)/;
|
||||
$protocol = $1 if(defined($1));
|
||||
$address = $2 if(defined($2));
|
||||
$port = $3 if(defined($3));
|
||||
$path = $4 if(defined($4));
|
||||
return($protocol,$address,$port,$path);
|
||||
}
|
||||
|
||||
#
|
||||
# SEND OUT AN IMAGE:
|
||||
#
|
||||
sub showimage($$$) {
|
||||
my ($type,$file,$redirect) = @_;
|
||||
content("image/$type");
|
||||
expires(300);
|
||||
redirect($redirect) if($redirect);
|
||||
print "\n";
|
||||
open(GIF, "$file");
|
||||
print <GIF>;
|
||||
close(GIF)
|
||||
}
|
||||
|
||||
#
|
||||
# SHOW THE INADDR ALERNATIVES WITH OPTIONAL ATOREDIRECT:
|
||||
#
|
||||
sub showinaddr($$$$$) {
|
||||
my ($targetgroup,$protocol,$address,$port,$path) = @_;
|
||||
my $msgid = $targetgroup;
|
||||
my @names = gethostnames($address);
|
||||
if($conf{autoinaddr} == 2 && @names || $conf{autoinaddr} && @names==1) {
|
||||
status("301 Moved Permanently");
|
||||
redirect("$protocol://$names[0]$port$path");
|
||||
} elsif (@names>1) {
|
||||
status("300 Multiple Choices");
|
||||
} elsif (@names) {
|
||||
status("301 Moved Permanently");
|
||||
} else {
|
||||
status("404 Not Found");
|
||||
}
|
||||
if (@names) {
|
||||
print "Content-type: text/html\n\n";
|
||||
print "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n";
|
||||
print "<html><head>\n";
|
||||
print "<title>$Babel{Title}</title>\n";
|
||||
print "</head>\n";
|
||||
print "<body bgcolor=#E6E6FA> \n";
|
||||
expires(0);
|
||||
$msgid = "in-addr" unless(defined($msgconf{$msgid}));
|
||||
if (defined($msgconf{$msgid})) {
|
||||
print " <!-- showinaddr(\"$msgid\") -->\n";
|
||||
for (@{$msgconf{$msgid}}) {
|
||||
my @config = split(/:/);
|
||||
my $type = shift(@config);
|
||||
if ($type eq "msg") {
|
||||
msg($config[0],$config[1]);
|
||||
} elsif ($type eq "tab") {
|
||||
table(shift(@config),shift(@config),@config);
|
||||
} elsif ($type eq "alternatives") {
|
||||
print " <TABLE BORDER=0 ALIGN=CENTER>\n";
|
||||
for (@names) {
|
||||
print " <TR>\n <TH ALIGN=LEFT>\n <FONT SIZE=+1>";
|
||||
href("$protocol://$_$port$path");
|
||||
print "\n </FONT>\n </TH>\n </TR>\n";
|
||||
}
|
||||
print " </TABLE>\n\n";
|
||||
if (defined($ENV{"HTTP_REFERER"}) && $ENV{"HTTP_REFERER"} =~ /:\/\/([^\/:]+)/) {
|
||||
$refererhost = $1;
|
||||
$referer = $ENV{"HTTP_REFERER"};
|
||||
msg("H4","referermaster");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
########################################################################################
|
||||
#
|
||||
# MAIN PROGRAM
|
||||
#
|
||||
# To change the messages in the blocked page please refer to the corresponding babel file.
|
||||
#
|
||||
$lang = getpreferedlang(@supported);
|
||||
|
||||
open (BABEL, "../lang/babel.$lang") || warn "Unable to open language file: $!\n";
|
||||
flock (BABEL, 2);
|
||||
while (<BABEL>) {
|
||||
chomp $_ ;
|
||||
($links, $rechts) = split (/=/, $_);
|
||||
$Babel{$links} = $rechts;
|
||||
}
|
||||
flock (BABEL, 8);
|
||||
close (BABEL);
|
||||
|
||||
($clientaddr,$clientname,$clientuser,$clientgroup,$targetgroup,$url) = parsequery($ENV{"QUERY_STRING"});
|
||||
($protocol,$address,$port,$path) = spliturl($url);
|
||||
|
||||
if ($url =~ /\.(gif|jpg|jpeg|png|mp3|mpg|mpeg|avi|mov)$/i) {
|
||||
status("403 Forbidden");
|
||||
showimage("gif",$conf{image},$conf{redirect});
|
||||
exit 0;
|
||||
}
|
||||
if ($targetgroup eq "in-addr") {
|
||||
showinaddr($targetgroup,$protocol,$address,$port,$path);
|
||||
}
|
||||
|
||||
status("403 Forbidden");
|
||||
expires(0);
|
||||
print "Content-type: text/html\n\n";
|
||||
print "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n";
|
||||
print "<html><head>\n";
|
||||
print "<title>$Babel{Title}</title>\n";
|
||||
print "</head>\n";
|
||||
print "<body bgcolor=#E6E6FA> \n";
|
||||
|
||||
print "\n";
|
||||
print "<a href=$conf{company}>\n";
|
||||
print "<img align=left border=0 alt=\"\" src=$conf{companylogo}></a>\n";
|
||||
print "<a href=$conf{squidguard}>\n";
|
||||
print "<img align=right border=0 alt=\"\" src=$conf{squidguardlogo}></a><br><br>\n";
|
||||
print "<center>\n";
|
||||
print "<table border=0 width=80%>\n";
|
||||
print "<tr><td align=center>\n";
|
||||
|
||||
print "<h2>$Babel{Msg}</h2>\n";
|
||||
print "<br><br>\n";
|
||||
|
||||
print "<b>$Babel{Tabcaption}</b><br><br>\n";
|
||||
|
||||
print "<table border=4>\n";
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{TabIP}</td><td> $clientaddr</td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{Tabclientname}</td><td> $clientname</td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{Tabclientuser}</td><td> $clientuser</td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{Tabclientgroup}</td><td> $clientgroup</td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{Taburl}</td><td> $url</td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print "<td>$Babel{Tabtargetgroup}</td><td> $targetgroup</td>\n";
|
||||
print "</tr>\n";
|
||||
print "</table>\n";
|
||||
print "<br><br>\n";
|
||||
|
||||
print "</td></tr>\n";
|
||||
print "<tr><td>\n";
|
||||
if ($targetgroup eq "in-addr") {
|
||||
print "$Babel{msginaddr}<br><br>\n";
|
||||
print "$Babel{msgnoalternatives} <U>",$address,"</U>.<br>\n";
|
||||
print "$Babel{msgwebmaster}\n";
|
||||
}
|
||||
print "<br><br>\n";
|
||||
print "$Babel{msgproxymaster} <A HREF=mailto:$conf{proxymaster}>$conf{proxymaster}</A>.<br>\n";
|
||||
print "$Babel{msgrefresh}\n";
|
||||
|
||||
print "</td></tr></table>\n";
|
||||
|
||||
# bottom of page
|
||||
print "</center>\n";
|
||||
print "</body></html>\n";
|
||||
|
||||
|
||||
|
||||
exit 0;
|
BIN
root/usr/share/squidGuard/images/blocked.gif
Normal file
BIN
root/usr/share/squidGuard/images/blocked.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
BIN
root/usr/share/squidGuard/images/empty.gif
Normal file
BIN
root/usr/share/squidGuard/images/empty.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 B |
20
root/usr/share/squidGuard/lang/babel.de
Normal file
20
root/usr/share/squidGuard/lang/babel.de
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=unbekannt
|
||||
Title=403 Verboten
|
||||
Msg=Der Zugriff auf die Seite ist nicht erlaubt.
|
||||
Tabclientname=Rechnername
|
||||
Tabcaption=Zusatzinformationen:
|
||||
TabIP=IP-Adresse
|
||||
Tabclientuser=Benutzer
|
||||
Tabclientgroup=Gruppe
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Kategorie
|
||||
msgproxymaster=Falls ein Fehler vorliegt schicken Sie die Adresse <U>dieser Seite</U> bitte an
|
||||
msgrefresh=Nach einer Änderung der Zugriffsrechte müssen Sie evtl. die Seite mit dem <Aktualisieren> bzw. <Neu laden> Button des Browsers oder mit <Strg>+<F5> erneut laden lassen.
|
||||
msgtimerefresh=Nach dem Wechsel in eine erlaubte Zeitperiode müssen Sie evtl. die Seite mit dem <Aktualisieren> bzw. <Neu laden> Button des Browsers oder sogar mit <Strg>+<F5> erneut laden lassen.
|
||||
msgunknown=Zugriff verweigert, da Ihr Rechner bei $proxy unbekannt ist.
|
||||
msginaddr=Die direkte Verwendung von <U>IP-Adressen</U> ist von diesem Rechner aufgrund der geltenden Netzwerk Zugriffregelungen nicht erlaubt.
|
||||
msgalternatives=Die folgenden Alternativen wurden gefunden:
|
||||
msgnoalternatives=Für diesen Server konnte kein alternativer Domainname gefunden werden:
|
||||
msgreferermaster=Bitte erfragen Sie den korrekten Domainnamen von dem Webmaster dieses Servers.
|
||||
msgwebmaster=Bitte fragen Sie den <U>Webmaster</U> von dieses Servers nach einem <EM>Domainnamen</EM> für den Server.
|
||||
msgdeflang=Dieser Text erscheint in Deutsch, da Ihr Browser dies als bevorzugte (erste) Sprache einstellt hat, die unterstützt werden. Unterstützte Sprachen:
|
20
root/usr/share/squidGuard/lang/babel.en
Normal file
20
root/usr/share/squidGuard/lang/babel.en
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=unknown
|
||||
Title=403 Forbidden
|
||||
Msg=The access to this site is blocked.
|
||||
Tabclientname=Client name
|
||||
Tabcaption=Additional information:
|
||||
TabIP=Client address
|
||||
Tabclientuser=Client user
|
||||
Tabclientgroup=Client group
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Target group
|
||||
msgproxymaster=If you think this is an error, send <U>this page</U> to
|
||||
msgrefresh=You may need to use the browser's <Reload> button or <Keyboard Shift>+<Browser Reload> to get rid of this page after an access rule change.
|
||||
msgtimerefresh=You may need to use the browser's <Reload> button or even <Keyboard Shift>+<Browser Reload> to get rid of this page after transition from a time zone with access restrictions.
|
||||
msgunknown=Access denied because your clienten is unknown to $proxy.
|
||||
msginaddr=Surfing on plain <U>IP-addresses</U> is denied from this client due to network access policies.
|
||||
msgalternatives=The following possible alternatives were found:
|
||||
msgnoalternatives=No alternative domainname were found for the server
|
||||
msgreferermaster=Send complaints to the webmaster of referer and ask him to correct the link(s) that points to $url in referer with the supposedly correct alternative above.
|
||||
msgwebmaster=Please ask the <U>webmaster</U> of that server for the correct <EM>domainname</EM>.
|
||||
msgdeflang=This message is in English because either your browser has "en" listed first in your prefered language list for those languages supported by this program or the chosen language is not supported by this program. Supported languages are:
|
20
root/usr/share/squidGuard/lang/babel.es
Normal file
20
root/usr/share/squidGuard/lang/babel.es
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=desconocido
|
||||
Title=403 Restringido
|
||||
Msg=Acceso a este sitio restringido
|
||||
Tabclientname=Nombre del cliente
|
||||
Tabcaption=Información adicional:
|
||||
TabIP=Dirección IP del cliente
|
||||
Tabclientuser=Usuario del cliente
|
||||
Tabclientgroup=Grupo del cliente
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Clasificación del destino
|
||||
msgproxymaster=Si piensa que esto es incorrecto, manda <U>esta página</U> a
|
||||
msgrefresh=Puede que necesitas usar el botón <Refrescar> o <CONTROL>+<F5> para refrescar el contenido de esta página.
|
||||
msgtimerefresh=Puede que necesitas usar el botón <Refrescar> o <CONTROL>+<F5> para refrescar el contenido de esta página si el bloqueo es debido a una restricción basada en la hora de acceso.
|
||||
msgunknown=Acceso denegado porque cliente es desconocido para proxy.
|
||||
msginaddr=La navegación usando <U>direcciones IP</U> está restringida para este cliente por motivos de seguridad.
|
||||
msgalternatives=Las siguientes posibles alternativas han sido encontradas:
|
||||
msgnoalternatives=No han sido encontradas alternativas para el acceso a
|
||||
msgreferermaster=Envíe sus sugerencias al webmaster de referer y pregúntele cómo corregir los lings que apuntan a url en referer con las anteriores alternativas supuestamente correctas.
|
||||
msgwebmaster=Envíe sus sugerencias al <U>webmaster</U> para url y pregunte por un <EM>nombre de dominio</EM> para el servidor.
|
||||
msgdeflang=Este mensaje está en español porque es el primero de los lenguajes soportados que están configurados en tu servidor para ser usado en la navegación. Los lenguajes soportados son:
|
20
root/usr/share/squidGuard/lang/babel.fr
Normal file
20
root/usr/share/squidGuard/lang/babel.fr
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=inconnu
|
||||
Title=403 Interdit
|
||||
Msg=L'accés à ce site est bloqué.
|
||||
Tabclientname=Nom de la machine
|
||||
Tabcaption=Information complémentaire:
|
||||
TabIP=Adresse de la machine
|
||||
Tabclientuser=Utilisateur
|
||||
Tabclientgroup=Groupe
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Groupe cible
|
||||
msgproxymaster=Si vous pensez qu'il s'agit d'une erreur, contactez votre administrateur
|
||||
msgrefresh=Vous avez peut-être besoin d'utiliser le bouton <Recharger> ou même <Shift>+<Recharger> après un changement de règles.
|
||||
msgtimerefresh=Vous avez peut-être besoin d'utiliser le bouton <Recharger> ou même <Shift>+<Recharger> après un changement de zone temporelle d\'interdiction.
|
||||
msgunknown=Accès interdit car votre client est inconnu de proxy.
|
||||
msginaddr=Naviguer sur des <U>adresses IP</U> est refusé à cette machine pour des raisons de sécurité.
|
||||
msgalternatives=Les alternatives suivantes sont possibles:
|
||||
msgnoalternatives=Aucun nom de domaine alternatif n'a été trouvé pour le serveur
|
||||
msgreferermaster=Envoyez les demandes au webmaster de le serveur et demandez lui corriger les liens qui pointent sur url dans referer avec l'alternative (supposée correcte) suivante.
|
||||
msgwebmaster=Envoyez les demandes au <U>webmaster</U> pour url et demandez un <EM>nom de domaine</EM> pour le serveur.
|
||||
msgdeflang=Ce message est en français car "fr" est la première langue supportée parmi celles que votre navigateur signale comme préférée. Les langues supportées sont:
|
20
root/usr/share/squidGuard/lang/babel.nl
Normal file
20
root/usr/share/squidGuard/lang/babel.nl
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=onbekend
|
||||
Title=403 Verboden
|
||||
Msg=De toegang is geblokkeerd.
|
||||
Tabclientname=Computernaam
|
||||
Tabcaption=Extra informatie:
|
||||
TabIP=Computeradres
|
||||
Tabclientuser=Gebruiker
|
||||
Tabclientgroup=Groep
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Doelgroep
|
||||
msgproxymaster=Als u denkt dat dit onjuist is, zend <U>deze bladzijde</U> aan
|
||||
msgrefresh=U moet waarschijnlijk de browser's <Reload> knop gebruiken of zelfs <Shift>+<Reload> na een verandering in de squidGuard regels.
|
||||
msgtimerefresh=U moet waarschijnlijk de browser's <Reload> knop gebruiken of zelfs <Shift>+<Reload> na beeindiging van een periode met beperkingen.
|
||||
msgunknown=Toegand geweigerd omdat uw client niet bekend is bij proxy.
|
||||
msginaddr=Surfen naar harde <U>IP adressen</U> wordt op deze client geweigerd om veiligheidsredenen.
|
||||
msgalternatives=De volgende alternatieven zijn mogelijk:
|
||||
msgnoalternatives=Geen alternatieve domeinnaam gevonden voor de server.
|
||||
msgreferermaster=Zend klachten aan webmaster de referer en vraag deze de link te verbeteren die verwijst naar url op referer met het waarschijnlijk correcte alternatief.
|
||||
msgwebmaster=Stuur klachten aan de <U>webmaster</U> voor de <U>address</U> en vraag om een <EM>domeinnaam</EM> voor de server.
|
||||
msgdeflang=Deze melding is in het Nederlands want "nl" is de eerst ondersteunde taal van de talen die uw browser ondersteunt. De ondersteunde talen zijn:
|
20
root/usr/share/squidGuard/lang/babel.no
Normal file
20
root/usr/share/squidGuard/lang/babel.no
Normal file
@@ -0,0 +1,20 @@
|
||||
Unknown=ukjent
|
||||
Title=403 Sperret
|
||||
Msg=Siden er sperret.
|
||||
Tabclientname=Klientnavn
|
||||
Tabcaption=Tilleggsinformasjon:
|
||||
TabIP=Klientadresse
|
||||
Tabclientuser=Brukerident
|
||||
Tabclientgroup=Klientgruppe
|
||||
Taburl=URL
|
||||
Tabtargetgroup=Målkategori
|
||||
msgproxymaster=Om du mener dette er feil, så send <U>denne siden</U> til
|
||||
msgrefresh=Du kan trenge å bruke browserens <Reload> knapp eller til og med <Tastatur Shift>+<Browser Reload> for å bli kvitt denne siden etter endring i adgangskontrollen.
|
||||
msgtimerefresh=Du kan trenge å bruke browserens <Reload> knapp eller til og med <Tastatur Shift>+<Browser Reload> for å bli kvitt denne siden ved overgang fra et tidsrom med sperring.
|
||||
msgunknown=Adgang nektes fordi denne klienten ikke er definert på proxy.
|
||||
msginaddr=Av sikkerhetsgrunner er surfing på <U>IP-adressen</U> ikke tillatt fra denne klienten.
|
||||
msgalternatives=Følgende mulige alternativer ble funnet:
|
||||
msgnoalternatives=Finner ingen alternative domenenavn for serveren
|
||||
msgreferermaster=Send evt. klager til webmaster for referer og be ham rette linken(e) som peker til url i referer med det antatt korrekte alternativet over.
|
||||
msgwebmaster=Send evt. klager til <U>webmaster</U> for address og anmod om å få knyttet serveren til et <EM>domenenavn</EM>.
|
||||
msgdeflang=Denne meldingen er på norsk ford "no" er det første støttede sproget av de din nettleser er satt opp til å rapportere som foretrukket. Støttede sprog er:
|
7
root/var/service/squid-db-logd/log/run
Normal file
7
root/var/service/squid-db-logd/log/run
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
exec \
|
||||
/usr/local/bin/setuidgid smelog \
|
||||
/usr/local/bin/multilog t s5000000 \
|
||||
/var/log/squid-db-logd
|
||||
|
34
root/var/service/squid-db-logd/run
Normal file
34
root/var/service/squid-db-logd/run
Normal file
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use esmith::ConfigDB;
|
||||
my $c = esmith::ConfigDB->open_ro or die "Couldn't open ConfigDB\n";
|
||||
my $rec = $c->get('squid-db-logd');
|
||||
my $dbname = $rec->prop('DbName') || 'squid_log';
|
||||
my $dbuser = $rec->prop('DbUser') || 'squid';
|
||||
my $dbpass = $rec->prop('DbPassword') || 'squid';
|
||||
my $dbhost = $rec->prop('DbHost') || 'localhost';
|
||||
|
||||
open(STDERR, ">&STDOUT");
|
||||
|
||||
my @args = ("--debug=1", "--dbname=$dbname", "--dbuser=$dbuser", "--dbpass=$dbpass");
|
||||
push @args, "--dbhost=$dbhost" if ($dbhost ne 'localhost');
|
||||
|
||||
my $squid = $c->get('squid');
|
||||
my $squidstatus = $squid->prop('status') || 'disabled';
|
||||
|
||||
if ($squidstatus ne 'enabled'){
|
||||
exec("sv", "d", "/service/squid-db-logd");
|
||||
exit(0);
|
||||
}
|
||||
|
||||
my $squidguard = $c->get('squidguard');
|
||||
my $squidguardstatus = $squidguard->prop('status') || 'disabled';
|
||||
|
||||
if ($squidguardstatus eq 'enabled'){
|
||||
push @args, "--squidguard";
|
||||
}
|
||||
|
||||
exec("/usr/local/bin/setuidgid", "squid", "/usr/bin/squid-db-logd", @args)
|
||||
or die "Cannot run the Squid Database Loggind Daemon";
|
||||
|
||||
exit(1);
|
Reference in New Issue
Block a user