| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Filtering Data Islands |
script | XML | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | ASP.NET 2.0: GridView Filtering |
script | ASP NET | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Cyclope Internet Filtering Proxy 2.9 |
windows | Network Internet->Other | $49.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | Cyclope Internet Filtering Proxy 2.9 |
windows | Network Tools->Network Monitoring Info | $49.95 |
View Detail
|
|||||||||
Cyclope Internet Filtering Proxy description Cyclope Internet Filtering Proxy - an Internet Filtering Software Cyclope Internet Filtering Proxy will monitor the entire Internet traffic and blocks the access to webpages and files according to the chosen filter. The requested web pages are displayed only if they comply with the specified filters. The Internet Filter allows to specify URL, keywords and file types (application, archive, Shockwave and Flash, audio and video) rules. Cyclope Internet Filtering Proxy is an Internet Filtering Software designed to optimize Internet usage and bandwidth consumption, reduce web browsing for personal use during working hours, eliminate explicit content websites form being accessed Cyclope Internet Filtering Proxy is also an Internet Sharing Software, capable of providing Internet access to multiple computers via a single Internet connection. It allows the entire network to connect to Internet simultaneously through one proxy providing secured web browsing, download and transfer files, chat and email. Here are some key features of "Cyclope Internet Filtering Proxy": · Effective and Customized Internet Filtering · Ban access to explicit/offensive content materials · Daily logging and reporting · Breaking rules attempts reporting · Restricted access to file download · Increase Employee Productivity · Enforce Acceptable Internet Use Policy · Protect network from online threats · Improve internet bandwidth management · Effective Internet Sharing Solution Requirements: · 256 MB RAM · 4 MB on Hard Disk for application files · 50MB additional storage space for log files. Limitations: · 15 days trial |
||||||||||||||
| 5 | Cyclope Internet Filtering Proxy 2.7 |
windows | Network Internet->Network Management Tools | $49.95 |
View Detail
|
|||||||||
Cyclope Internet Filtering Proxy monitors the entire Internet traffic and blocks the access to websites and files according to the chosen filter. The requested web pages are displayed only if they comply with the specified filters. The Internet Filter allows to specify URL, keywords and file types (application, archive, Shockwave and Flash, audio and video) rules. Cyclope Internet Filtering Proxy is an Internet Filtering Software designed to optimize Internet usage and bandwidth consumption, reduce web browsing for personal use during working hours, eliminate explicit content websites form being accessed, protect the network against online threats, and discourage the download of unlicensed software and other copyrighted materials. Features: Effective and Customized Internet Filtering Ban access to explicit/offensive content materials Detailed Statistics and Reporting Breaking rules attempts reporting Restricted access to file download Increase Employee Productivity Enforce Acceptable Internet Use Policy Protect network from online threats Improve internet bandwidth management Cyclope Internet Filtering Proxy is also an Internet Sharing Software, capable of providing cost effective Internet access to multiple computers via a single Internet connection. |
||||||||||||||
| 6 | Maxiimus - SPAM Filtering 2.1 |
windows | Email Tools->Misc Mail Tools | $9.95 |
View Detail
|
|||||||||
Maxiimus - SPAM Filtering Reporting Services is a powerful email filtering utility that can help you win the war against SPAM and junk email. Maxiimus can monitor multiple POP3 email accounts automatically (or upon request) and remove potential SPAM messages from you accounts. Detained mail can be read, deleted, released back to your email account inbox, or reported to the responsible Internet Service Provider (ISP) as a possible abuse of service. When Maxiimus detains a message it notifies the sender and provides them the opportunity to override the filter and release their email (via an email reply) back to your email account inbox. Once blocked senders have performed thisritual they will be automatically added to your exceptions list and their future mail will not be detained. Additional features include a blacklist database of 10,000+ known spammers, a scheduler for automatic filtering, and a user populated exceptions list. |
||||||||||||||
| 7 | ALLESTA FIREWALL & HTTP FILTERING 1.3 |
windows | Security Privacy->Firewalls | $100.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 8 | ALLESTA FIREWALL HTTP FILTERING 1.3 |
windows | Security Privacy->Firewalls | $100 |
View Detail
|
|||||||||
Allesta protects your web applications against entire classes of attacks. Allesta provides proactive detection and prevention of all known and unknown application level attacks. Allesta includes 3 key modules to protect your server: Allesta Firewall Module, Allesta HTTP Filtering Module, Allesta Connection Limiting Module, ALLESTA FIREWALL Allesta is a software firewall, featuring stateful packet filtering. Detailed rule definition to perform stateful inspection and protocol inspection of all outgoing and incoming Internet traffic. Rules can be defined between interfaces and/or IP addresses. ALLESTA HTTP FILTERING Allestas complete filtering methods identify legitimate and illegitimate requests and to distinguish between them. Filtering methods used in Allesta includes: HTTP method, HTTP version, URL length, Header length, Header size, Presence or absence of particular header, Header contents, File type, General POST size, General POST contents, POST & GET payloads and query parameters, Parameter type, Parameter value, Parameter length, Parameter case, Parameter in message body, Character set (negative regular expressions), RFC compliance (header, request, and cookie), Invalid path traversal (../), Restricted methods (PUT, DELETE), and much more. ALLESTA CONNECTION LIMITING Allesta connection limiting module is an application level connection limiting service. It counts connections from remote address to local addresses and blocks unwanted traffic by using predefined connection limiting rules. Its possible to stop DDOS attacks by using connection limiting module. Allestas Connection Limiting Module provide clean Web traffic, improved management of network traffic loads. Allestas Connection Limiting Module lowers cost by optimizing speed and performance of your public site while providing protection against DDoS, virus, and other malignant traffic. |
||||||||||||||
| 9 | Packet filtering setup script |
linux | System->Networking | Free |
View Detail
|
|||||||||
Packet filtering setup script by Anthony C. Zboralski. Adapted by Didi Damian for iptables version 1.0.0 Sample: PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # Set up variables EXT_IF="eth0" INT_IF="eth1" EXT_IP=24.x.x.x/32 INT_IP=192.168.0.1/32 EXT_NET=24.x.x.0/24 INT_NET=192.168.0.0/24 MASQ_NETS="192.168.0.0/24" LOCAL_ADDRS="127.0.0.0/8 192.168.0.1/32 24.x.x.x/32" MAIL_RELAY=24.x.x.x/32 SMB_ACCESS="192.168.0.2/32" SMB_BCAST="192.168.0.255/32" # Turn on IP forwarding echo Turning on IP forwarding. echo 1 > /proc/sys/net/ipv4/ip_forward # Load the ip_tables module echo Loading ip_tables module. /sbin/modprobe ip_tables || exit 1 # I let the kernel dynamically load the other modules echo Flush standard tables. iptables --flush INPUT iptables --flush OUTPUT iptables --flush FORWARD echo Deny everything until firewall setup is completed. iptables --policy INPUT DROP iptables --policy OUTPUT DROP iptables --policy FORWARD DROP CHAINS=`iptables -n -L |perl -n -e /Chains+(S+)/ && !($1 =~ /^(INPUT|FORWARD|OUTPUT)$/) && print "$1 "` echo Remove remaining chains: echo $CHAINS for chain in $CHAINS; do iptables --flush $chain done # 2nd step cause of dependencies for chain in $CHAINS; do iptables --delete-chain $chain done for net in $MASQ_NETS; do # I delete all the rules so you can rerun the scripts without bloating # your nat entries. iptables -D POSTROUTING -t nat -s $MASQ_NETS -j MASQUERADE 2>/dev/null iptables -A POSTROUTING -t nat -s $MASQ_NETS -j MASQUERADE || exit 1 done iptables --policy FORWARD ACCEPT # Create a target for logging and dropping packets iptables --new LDROP 2>/dev/null iptables -A LDROP --proto tcp -j LOG --log-level info --log-prefix "TCP Drop " iptables -A LDROP --proto udp -j LOG --log-level info --log-prefix "UDP Drop " iptables -A LDROP --proto icmp -j LOG --log-level info --log-prefix "ICMP Drop " iptables -A LDROP --proto gre -j LOG --log-level info --log-prefix "GRE Drop " iptables -A LDROP -f -j LOG --log-level emerg --log-prefix "FRAG Drop " iptables -A LDROP -j DROP # Create a table for watching some accepting rules iptables --new WATCH 2>/dev/null iptables -A WATCH -m limit -j LOG --log-level warn --log-prefix "ACCEPT " iptables -A WATCH -j ACCEPT echo Special target for local addresses: iptables --new LOCAL 2>/dev/null echo $LOCAL_ADDRS for ip in $LOCAL_ADDRS; do iptables -A INPUT --dst $ip -j LOCAL # iptables -A INPUT --src $ip -i ! lo -j LDROP # lame spoof protect done echo Authorize mail from mail relay. iptables -A LOCAL --proto tcp --syn --src $MAIL_RELAY --dst $EXT_IP --dport 25 -j ACCEPT echo Authorizing samba access to: echo $SMB_ACCESS iptables --new SMB 2>/dev/null for ip in $SMB_ACCESS; do iptables -A SMB -s $ip -j ACCEPT done iptables -A LOCAL --proto udp -i ! $EXT_IF --dport 135:139 -j SMB iptables -A LOCAL --proto tcp -i ! $EXT_IF --dport 135:139 -j SMB iptables -A LOCAL --proto tcp -i ! $EXT_IF --dport 445 -j SMB iptables -A INPUT -i ! $EXT_IF --dst $SMB_BCAST -j ACCEPT #lame samba broadcast echo Drop and log every other incoming tcp connection attempts. iptables -A LOCAL -i ! lo --proto tcp --syn --j LDROP echo Authorize dns access for local nets. for net in $MASQ_NETS 127.0.0.0/8; do iptables -A INPUT --proto udp --src $net --dport 53 -j ACCEPT done echo Enforcing up ICMP policies, use iptables -L ICMP to check. # If you deny all ICMP messages you head for trouble since it would # break lots of tcp/ip algorythm (acz) iptables --new ICMP 2>/dev/null iptables -A INPUT --proto icmp -j ICMP iptables -A ICMP -p icmp --icmp-type echo-reply -j ACCEPT iptables -A ICMP -p icmp --icmp-type destination-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type network-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type host-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type protocol-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type port-unreachable -j ACCEPT iptables -A ICMP -p icmp --icmp-type fragmentation-needed -j LDROP iptables -A ICMP -p icmp --icmp-type source-route-failed -j WATCH iptables -A ICMP -p icmp --icmp-type network-unknown -j WATCH iptables -A ICMP -p icmp --icmp-type host-unknown -j WATCH iptables -A ICMP -p icmp --icmp-type network-prohibited -j WATCH iptables -A ICMP -p icmp --icmp-type host-prohibited -j WATCH iptables -A ICMP -p icmp --icmp-type TOS-network-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type TOS-host-unreachable -j WATCH iptables -A ICMP -p icmp --icmp-type communication-prohibited -j WATCH iptables -A ICMP -p icmp --icmp-type host-precedence-violation -j LDROP iptables -A ICMP -p icmp --icmp-type precedence-cutoff -j LDROP iptables -A ICMP -p icmp --icmp-type source-quench -j LDROP iptables -A ICMP -p icmp --icmp-type redirect -j LDROP iptables -A ICMP -p icmp --icmp-type network-redirect -j LDROP iptables -A ICMP -p icmp --icmp-type host-redirect -j LDROP iptables -A ICMP -p icmp --icmp-type TOS-network-redirect -j LDROP iptables -A ICMP -p icmp --icmp-type TOS-host-redirect -j LDROP iptables -A ICMP -p icmp --icmp-type echo-request -j WATCH iptables -A ICMP -p icmp --icmp-type router-advertisement -j LDROP iptables -A ICMP -p icmp --icmp-type router-solicitation -j LDROP iptables -A ICMP -p icmp --icmp-type time-exceeded -j WATCH iptables -A ICMP -p icmp --icmp-type ttl-zero-during-transit -j WATCH iptables -A ICMP -p icmp --icmp-type ttl-zero-during-reassembly -j WATCH iptables -A ICMP -p icmp --icmp-type parameter-problem -j WATCH iptables -A ICMP -p icmp --icmp-type ip-header-bad -j WATCH iptables -A ICMP -p icmp --icmp-type required-option-missing -j WATCH iptables -A ICMP -p icmp --icmp-type timestamp-request -j LDROP iptables -A ICMP -p icmp --icmp-type timestamp-reply -j LDROP iptables -A ICMP -p icmp --icmp-type address-mask-request -j LDROP iptables -A ICMP -p icmp --icmp-type address-mask-reply -j LDROP iptables -A ICMP -p icmp -j LDROP echo Authorize tcp traffic. iptables -A INPUT --proto tcp -j ACCEPT echo Authorize packet output. iptables --policy OUTPUT ACCEPT #echo reject ident if you drop em you gotta wait for timeout #iptables -I LOCAL --proto tcp --syn --dst $EXT_IP --dport 113 -j REJECT echo Drop and log all udp below 1024. iptables -A INPUT -i ! lo --proto udp --dport :1023 -j LDROP echo Drop rpc dynamic udp port: RPC_UDP=`rpcinfo -p localhost|perl -n -e /.*udps+(d+)s+/ && print $1,"n"|sort -u` echo $RPC_UDP for port in $RPC_UDP; do iptables -A LOCAL -i ! lo --proto udp --dport $port -j LDROP done echo Authorize udp above 1024. iptables -A INPUT --proto udp --dport 1024: -j ACCEPT |
||||||||||||||
| 10 | ASP.NET 2.0 Tutorials : GridView Filtering |
script | ASP NET | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | Content Filtering Proxy SafeSquid 4.2.2.RC8.2 |
windows | Network Internet->Browsers | $n |
View Detail
|
|||||||||
|
||||||||||||||
| 12 | Safesquid Content Filtering Proxy 4.2.2.RC7 |
windows | Network Internet->Server Tools | Free |
View Detail
|
|||||||||
Safesquid is an antivirus and content filtering proxy server. It has many advanced features like URL blacklists, bandwidth management, regular expression substitution on Website content and requested URLs, ICP and CARP support to interoperate with other proxy servers, configuration synchronization to ease management of proxy servers in a cluster, ICAP support to use third-party content adaptation software, image and link prefetching, HTTP and FTP content caching, NTLM and Basic authentication, and an intutive Web interface to configure the proxy server. |
||||||||||||||
| 13 | IP Address Filtering and Restriction System |
script | ASP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 14 | Foxy: Filtering HTTP Proxy 1.3.9 |
windows | Network Internet->Proxy Server Tools | $17.99 |
View Detail
|
|||||||||
Foxy is a content filtering HTTP proxy. It can rewrite web pages on the fly using its internal filters and external user-written scripts. * Hides IP address and browser/OS information by spoofing sensitive HTTP request headers (X-Forwarded-For, User-Agent, Referer, or any other header). * Allows to surf anonymously using public proxies. Any number of proxies can be used; different proxies may be used for different sites. * Disables Google, Yahoo, and MSN click tracking mechanisms, speeds up your search, deletes commercial noise (like "sponsored links") from your search results. * Kills popups, banners, cookies, "web beacons", blocks server-side spyware. * Blocks access to porn or other inappropriate content using dictionaries (parental control). Content is analysed on the fly, so all known and yet unknown sources are blocked. * Tracks users online activity and generates traffic reports. And much, much more... |
||||||||||||||
| 15 | Responsible Surfing Parental Control and Internet Filtering Software 1.3 |
windows | Security Privacy->Analysis | $39.99 |
View Detail
|
|||||||||
|
||||||||||||||
| 16 | Filtering and Sorting of Records in a Database |
script | ASP | Free |
View Detail
|
|||||||||
| 17 | EA Internet Filter V2.9 |
windows | Network Internet->Other | $39.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 18 | filter.plx |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 19 | Imager::Filters 0.54 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Imager::Filters is an entire image filtering operations. SYNOPSIS use Imager; $img = ...; $img->filter(type=>autolevels); $img->filter(type=>autolevels, lsat=>0.2); $img->filter(type=>turbnoise) # and lots of others load_plugin("dynfilt/dyntest.so") or die "unable to load pluginn"; $img->filter(type=>lin_stretch, a=>35, b=>200); unload_plugin("dynfilt/dyntest.so") or die "unable to load pluginn"; $out = $img->difference(other=>$other_img); Filters are operations that have similar calling interface. filter Parameters: type - the type of filter, see "Types of Filters". many other possible parameters, see "Types of Filters" below. |
||||||||||||||
| 20 | EA Internet Filter 2.9 |
windows | Network Internet->Other | $39.95 |
View Detail
|
|||||||||
EA Internet Filter allows you to easily filter out pornography web sites on the Internet. EA Internet Filter is based on content filtering technology, also it support url filtering, with an advanced internet filter algorithm, that helps you to filter all pornography contents on the internet. EA Internet Filter works automatically after you installed it. EA Internet Filter was password protected, you can set a password for this internet filter, so only the one who has the password can shutdown internet filtering. After you installed EA Internet Filter, it will work automatically in the background when anyones surfing on the computer. And it works quitely so none will know there was internet filter software on the computer, but none will be able to visit those pornography web sites, or some other web sites you dont want to let others view. With this advanced Internet Filter, you can completely rely on EA Internet filter to keep your family safe on the internet.You can test to visit any other pornography sites after you installed EA Internet filter. EA Internet Filter was Developed By Filter-Internet.org . Filter-Internet.org provides the best internet content filtering solutions for Families, Libraries, Schools, Companies... |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
