secured
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 698
secured WebGine 0.1.05
secured WebGine is a mix between a content management system and an application framework. more>>
secured WebGine is a mix between a content management system and an application framework.
secured WebGines focus is security and a logical API.
The sWG has currently reached stage alpha. This means that functions and files can be changed without an announcement. Furthermore it is possible that they will be added or deleted.
Please download the latest release of the secured WebGine and uncompress the content.
Now you should have a "sWG_core" (or "sWG_core_dev") directory as well as an "extras" directory where you will find this installation guide.
You need an web server running on an operation system of our choise and PHP. We recommend the latest PHP 4.x release. A support for PHP 5.x has already been included but not tested or activated.
Corresponding to the planned usage you will additionally need an MySQL database connection.
<<lesssecured WebGines focus is security and a logical API.
The sWG has currently reached stage alpha. This means that functions and files can be changed without an announcement. Furthermore it is possible that they will be added or deleted.
Please download the latest release of the secured WebGine and uncompress the content.
Now you should have a "sWG_core" (or "sWG_core_dev") directory as well as an "extras" directory where you will find this installation guide.
You need an web server running on an operation system of our choise and PHP. We recommend the latest PHP 4.x release. A support for PHP 5.x has already been included but not tested or activated.
Corresponding to the planned usage you will additionally need an MySQL database connection.
Download (0.078MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
818 downloads
Tightly secured firewall for general use
Tightly secured firewall for general use is an iptables firewall script. more>>
Tightly secured firewall for general use is an iptables firewall script.
Sample:
#!/bin/sh
echo "Initializing modules..."
cd /lib/modules/2.4.1/kernel/net/ipv4/netfilter
insmod ip_tables
insmod ip_conntrack
insmod ipt_state
insmod ipt_limit
#insmod iptable_mangle
#insmod ipt_PERS
echo "Flushing rules.."
#iptables -F PREROUTING
#iptables -t mangle -F OUTPUT
iptables -F INPUT
iptables -F FORWARD
iptables -F OUTPUT
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
if [ "$1" == "start" ]; then
echo "Setting up spoof protection..."
for blah in /proc/sys/net/ipv4/conf/*/rp_filter; do
echo "1" > $blah
done
echo "Setting default routes..."
iptables -P INPUT DROP
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "Configuring external interface rulesets..."
#iptables -t mangle -A PREROUTING -j PERS --local --tweak dst --conf /etc/win9x.conf
#iptables -t mangle -A OUTPUT -j PERS --local --tweak src --conf /etc/win9x.conf
iptables -A INPUT -i eth0 -s 127.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 10.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 255.255.255.255/32 -j DROP
iptables -A INPUT -i eth0 -s 0.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 169.254.0.0/16 -j DROP
iptables -A INPUT -i eth0 -s 172.16.0.0/12 -j DROP
iptables -A INPUT -i eth0 -s 192.0.2.0/24 -j DROP
iptables -A INPUT -i eth0 -s 192.168.0.0/16 -j DROP
iptables -A INPUT -i eth0 -s 224.0.0.0/4 -j DROP
iptables -A INPUT -i eth0 -s 240.0.0.0/5 -j DROP
iptables -A INPUT -i eth0 -s 248.0.0.0/5 -j DROP
iptables -A INPUT -i eth0 -f -j DROP
iptables -A INPUT -i eth0 -p TCP -m state --state INVALID -j DROP
iptables -A INPUT -i eth0 -p TCP --syn -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 20 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 21 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 23 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 113 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP -s 0/0 --sport 1024:5000 -d 0/0 --dport 1998 -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP -s 0/0 --sport 1024:5000 -d 0/0 --dport 1999 -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --dport 32768:61000 -m state --state ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 20 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 21 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 23 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 113 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 1998 -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 1999 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -j DENY
iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport 53 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -s 0/0 --dport 53 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport 161 -j ACCEPT
iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport ntp -j ACCEPT
iptables -A INPUT -i eth0 -p UDP -s 0/0 --dport ntp -j ACCEPT
iptables -A INPUT -i eth0 -p ICMP --icmp-type echo-reply -j ACCEPT
echo "Configuring routing rulesets..."
iptables -A FORWARD -i eth0 -d 205.188.153.139/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.140/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.141/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.168/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.164/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.178/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.172/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.176/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.5.208/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.4.159/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.3.160/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.3.176/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.5.204/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.139/32 -j DROP
iptables -A FORWARD -i eth0 -d 209.185.128.132/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.241.128/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.242.24/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.242.28/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.241.120/32 -j DROP
iptables -A FORWARD -i eth0 -p TCP --sport 1024: --dport 9898 -j DROP
iptables -A FORWARD -i eth0 -d 10.0.0.0/8 -j DROP
iptables -A FORWARD -i eth0 -d 127.0.0.0/8 -j DROP
iptables -A FORWARD -i eth0 -p igmp -j DROP
iptables -A FORWARD -i eth0 -p TCP --syn -m limit --limit 10/s -j ACCEPT
iptables -A FORWARD -i eth0 -p TCP --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 10/s -j ACCEPT
echo "Configuring internal interface rulesets..."
iptables -A INPUT -i lo -j ACCEPT
echo "IPtables firewall configuration completed."
fi
<<lessSample:
#!/bin/sh
echo "Initializing modules..."
cd /lib/modules/2.4.1/kernel/net/ipv4/netfilter
insmod ip_tables
insmod ip_conntrack
insmod ipt_state
insmod ipt_limit
#insmod iptable_mangle
#insmod ipt_PERS
echo "Flushing rules.."
#iptables -F PREROUTING
#iptables -t mangle -F OUTPUT
iptables -F INPUT
iptables -F FORWARD
iptables -F OUTPUT
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
if [ "$1" == "start" ]; then
echo "Setting up spoof protection..."
for blah in /proc/sys/net/ipv4/conf/*/rp_filter; do
echo "1" > $blah
done
echo "Setting default routes..."
iptables -P INPUT DROP
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "Configuring external interface rulesets..."
#iptables -t mangle -A PREROUTING -j PERS --local --tweak dst --conf /etc/win9x.conf
#iptables -t mangle -A OUTPUT -j PERS --local --tweak src --conf /etc/win9x.conf
iptables -A INPUT -i eth0 -s 127.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 10.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 255.255.255.255/32 -j DROP
iptables -A INPUT -i eth0 -s 0.0.0.0/8 -j DROP
iptables -A INPUT -i eth0 -s 169.254.0.0/16 -j DROP
iptables -A INPUT -i eth0 -s 172.16.0.0/12 -j DROP
iptables -A INPUT -i eth0 -s 192.0.2.0/24 -j DROP
iptables -A INPUT -i eth0 -s 192.168.0.0/16 -j DROP
iptables -A INPUT -i eth0 -s 224.0.0.0/4 -j DROP
iptables -A INPUT -i eth0 -s 240.0.0.0/5 -j DROP
iptables -A INPUT -i eth0 -s 248.0.0.0/5 -j DROP
iptables -A INPUT -i eth0 -f -j DROP
iptables -A INPUT -i eth0 -p TCP -m state --state INVALID -j DROP
iptables -A INPUT -i eth0 -p TCP --syn -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 20 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 21 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 23 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 113 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 1024:5000 --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP -s 0/0 --sport 1024:5000 -d 0/0 --dport 1998 -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP -s 0/0 --sport 1024:5000 -d 0/0 --dport 1999 -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --dport 32768:61000 -m state --state ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 20 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 21 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 23 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 113 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 1998 -j ACCEPT
#iptables -A INPUT -i eth0 -p TCP --sport 32768:61000 --dport 1999 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -j DENY
iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport 53 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -s 0/0 --dport 53 -j ACCEPT
#iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport 161 -j ACCEPT
iptables -A INPUT -i eth0 -p UDP -s 0/0 --sport ntp -j ACCEPT
iptables -A INPUT -i eth0 -p UDP -s 0/0 --dport ntp -j ACCEPT
iptables -A INPUT -i eth0 -p ICMP --icmp-type echo-reply -j ACCEPT
echo "Configuring routing rulesets..."
iptables -A FORWARD -i eth0 -d 205.188.153.139/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.140/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.141/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.168/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.164/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.178/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.172/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.7.176/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.5.208/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.4.159/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.3.160/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.3.176/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.5.204/32 -j DROP
iptables -A FORWARD -i eth0 -d 205.188.153.139/32 -j DROP
iptables -A FORWARD -i eth0 -d 209.185.128.132/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.241.128/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.242.24/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.242.28/32 -j DROP
iptables -A FORWARD -i eth0 -d 152.163.241.120/32 -j DROP
iptables -A FORWARD -i eth0 -p TCP --sport 1024: --dport 9898 -j DROP
iptables -A FORWARD -i eth0 -d 10.0.0.0/8 -j DROP
iptables -A FORWARD -i eth0 -d 127.0.0.0/8 -j DROP
iptables -A FORWARD -i eth0 -p igmp -j DROP
iptables -A FORWARD -i eth0 -p TCP --syn -m limit --limit 10/s -j ACCEPT
iptables -A FORWARD -i eth0 -p TCP --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 10/s -j ACCEPT
echo "Configuring internal interface rulesets..."
iptables -A INPUT -i lo -j ACCEPT
echo "IPtables firewall configuration completed."
fi
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
983 downloads
Secure back door 0.5
Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer. more>>
Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer, which allows you to run a single command based on a one time key. It is good if you dont want to have an SSH server running all the time, and only want to start it when needed. Because it has only a few lines of code, it is hoped that it will be less susceptible to security exploits than a program like SSH.
The protocol is detailed to an extent in the text file PROTOCOL, I will update it with more details as I have time, but the most important details are included already.
If you are a crypt analysis, or just like a challenge, I appreciate anyone who is willing to look through the protocol and/or code and point out possible security implications and flaws in design!
Enhancements:
- Fixed a few minor compiler warnings
- Updated license year to 2005
- Uncommented execution code in sbdd, so now sbdd will execute incoming commands
- Updated README documentation for compilation
<<lessThe protocol is detailed to an extent in the text file PROTOCOL, I will update it with more details as I have time, but the most important details are included already.
If you are a crypt analysis, or just like a challenge, I appreciate anyone who is willing to look through the protocol and/or code and point out possible security implications and flaws in design!
Enhancements:
- Fixed a few minor compiler warnings
- Updated license year to 2005
- Uncommented execution code in sbdd, so now sbdd will execute incoming commands
- Updated README documentation for compilation
Download (0.025MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1200 downloads
Secure Login 0.7.2
Secure Login provides a login extension similar to Operas Wand login. more>>
Secure Login provides a login extension similar to Operas Wand login.
It uses the built-in password manager, but deactivates the prefilling of login forms.
Instead, you are now able to login with one click or a keyboard shortcut (ALT+N).
Just add the Secure Login toolbar button to your toolbar, or use the provided statusbar icon.
If you hover over one of the icons, a tooltip is shown, displaying the login url and the number of available logins (users).
For more than one user or login forms on the current page a selection prompt is displayed on login.
You have the option to play sound notifications (*.wav) for found login data on the current page or when logging in.
All the options can be changed using the Secure Login settings menu or the statusbar icon context menu.
Secure Login provides you with a number of Security enhancements and helps protecting you from phishing:
Disabling the prefilling of login forms prevents malicious JavaScript code to automatically steal your login data.
This is due to the fact that no login data is inserted in form fields before the user clicks on the login button or logs in using the keyboard shortcut.
To make sure you login to the right website, the second level domain of the login url is compared to the second level domain of the current page.
If they do not match a dialog prompt is displayed before login.
SecureLogin provides you with an optional setting to protect you from all JavaScript code during login.
This can prevent cross-site scripting (XSS) attacks without having to deactivate JavaScript completely.
If you enable this option, your login data will never be inserted in any form fields nor will the login form be submitted.
Instead your credentials will be sent to the login page using internal Firefox methods.
Not all login forms will work this way, e.g. not those using JavaScript routines.
Therefore, you can add such websites to an exception list.
<<lessIt uses the built-in password manager, but deactivates the prefilling of login forms.
Instead, you are now able to login with one click or a keyboard shortcut (ALT+N).
Just add the Secure Login toolbar button to your toolbar, or use the provided statusbar icon.
If you hover over one of the icons, a tooltip is shown, displaying the login url and the number of available logins (users).
For more than one user or login forms on the current page a selection prompt is displayed on login.
You have the option to play sound notifications (*.wav) for found login data on the current page or when logging in.
All the options can be changed using the Secure Login settings menu or the statusbar icon context menu.
Secure Login provides you with a number of Security enhancements and helps protecting you from phishing:
Disabling the prefilling of login forms prevents malicious JavaScript code to automatically steal your login data.
This is due to the fact that no login data is inserted in form fields before the user clicks on the login button or logs in using the keyboard shortcut.
To make sure you login to the right website, the second level domain of the login url is compared to the second level domain of the current page.
If they do not match a dialog prompt is displayed before login.
SecureLogin provides you with an optional setting to protect you from all JavaScript code during login.
This can prevent cross-site scripting (XSS) attacks without having to deactivate JavaScript completely.
If you enable this option, your login data will never be inserted in any form fields nor will the login form be submitted.
Instead your credentials will be sent to the login page using internal Firefox methods.
Not all login forms will work this way, e.g. not those using JavaScript routines.
Therefore, you can add such websites to an exception list.
Download (0.059MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
947 downloads
Secure Java Diary 0.3.0a
Secure Java Diary is a Java Diary with Strong Encryption. more>>
Secure Diary is a Java application that uses the Bouncy Castle JCE to provide strong encryption for your diary.
It stores the entries using blowfish and triple DES. It allows you to enter/view/export diary enteries in multiple diaries.
<<lessIt stores the entries using blowfish and triple DES. It allows you to enter/view/export diary enteries in multiple diaries.
Download (0.82MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1649 downloads
Secure Messaging 1.0
Secure Messaging is a Web-based, alternative mail system for sending and receiving messages. more>>
Secure Messaging is a Web-based, alternative mail system for sending and receiving messages.
Use secure messaging to send and receive messages from a alternative web-based mail system. Using the secure messaging system no actual mail is transmitted through any 3rd party servers.
Only an optional message notice is sent to the recepient, the user needs to visit the site in order to read the message.
Normal SMTP mail can hit multiple servers and can possibly be read, stored, or changed anywhere within the process.
Setup secure messaging on an SSL enabled website to enhance the privacy even more.
<<lessUse secure messaging to send and receive messages from a alternative web-based mail system. Using the secure messaging system no actual mail is transmitted through any 3rd party servers.
Only an optional message notice is sent to the recepient, the user needs to visit the site in order to read the message.
Normal SMTP mail can hit multiple servers and can possibly be read, stored, or changed anywhere within the process.
Setup secure messaging on an SSL enabled website to enhance the privacy even more.
Download (0.15MB)
Added: 2005-10-20 License: GPL (GNU General Public License) Price:
1466 downloads
Secure Data Manager 2.1.0
Secure Data Manager is a manager for passwords and other private data. more>>
Secure Data Manager project is a manager for passwords and other private data.
Secure Data Manager (SDM) is a full-featured password manager application written entirely in Java (so it can run on Unix or Windows). It encrypts logins and other private information for Web sites, computers, credit cards, etc.
Main features:
- Many great features and more coming each month based on user feedback!
- No limit to how you use the product or how often!
- Trusted since you and everyone else can see the code that protects your passwords -- keeping the application clear of any trojans or bad business practices.
- Open source -- so if you know how to write code, you can add any feature you want!
- Free.
<<lessSecure Data Manager (SDM) is a full-featured password manager application written entirely in Java (so it can run on Unix or Windows). It encrypts logins and other private information for Web sites, computers, credit cards, etc.
Main features:
- Many great features and more coming each month based on user feedback!
- No limit to how you use the product or how often!
- Trusted since you and everyone else can see the code that protects your passwords -- keeping the application clear of any trojans or bad business practices.
- Open source -- so if you know how to write code, you can add any feature you want!
- Free.
Download (1.9MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1012 downloads
Secure-SLinux 1.0.0pre2
Secure-SLinux provides a secure, stable, and slim OS for professional enterprise servers. more>>
Secure-SLinux provides a secure, stable, and slim OS for professional enterprise servers. Secure-SLinux is based on the Linux kernel and GNU glibc, and builds on HLFS/BLFS.
It is quick to install (5-10 minutes), hardened (GRsecurity, PAX, RBAC, SSP, frandom, etc.), and easy to administrate. There are precompiled binary releases for console only and XOrg-based systems.
Main features:
- open source
- secure - hardened OS
- robust
- easy to administrate - comes out of the box with everything you need for your everyday administrative tasks
- easy to update - simply move a single link and keep your old versions
- suitable for all professional enterprise servers
- cost effective
... and it is installed in just 5 minutes!
Enhancements:
- SSLX-Desktop is the desktop environment for Secure-SLinux. It is based on programs such as XFCE, Firefox, Thunderbird, Filezilla, GIMP, OpenOffice.org, Eclipse, Bluefish, and Xfe.
<<lessIt is quick to install (5-10 minutes), hardened (GRsecurity, PAX, RBAC, SSP, frandom, etc.), and easy to administrate. There are precompiled binary releases for console only and XOrg-based systems.
Main features:
- open source
- secure - hardened OS
- robust
- easy to administrate - comes out of the box with everything you need for your everyday administrative tasks
- easy to update - simply move a single link and keep your old versions
- suitable for all professional enterprise servers
- cost effective
... and it is installed in just 5 minutes!
Enhancements:
- SSLX-Desktop is the desktop environment for Secure-SLinux. It is based on programs such as XFCE, Firefox, Thunderbird, Filezilla, GIMP, OpenOffice.org, Eclipse, Bluefish, and Xfe.
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
829 downloads
Trustix Secure Linux 3.0.5
Trustix Secure Linux is a Linux distribution aimed towards the server market. more>>
Trustix Secure Linux is a Linux distribution for servers with focus on security and stability.
Trustix Secure Linux was specifically designed for the server market. With a focus on security and stability, the whole system benefits from a fully automatic update agent known as SWUP, eliminating the most critical issue of server security - Patch management.
Enhancements:
- The Comodo Trustix team is proud to announce the release of Trustix Secure Linux 3.0.5, an update to the previous Tikka Masala. The new release is named Mirch Masala to describe the new interesting changes associated. This release has its major change from the previous release of 3.0 with the re-introduction of Anaconda as the preferred choice of installer. In addition, most packages have been upgraded to their latest versions upon customer requests. The core updates available are: kernel 2.6.19.7, PostgreSQL 8.2.3, MySQL 5.0.27, CP+ 3.3, Samba 3.0.24.
<<lessTrustix Secure Linux was specifically designed for the server market. With a focus on security and stability, the whole system benefits from a fully automatic update agent known as SWUP, eliminating the most critical issue of server security - Patch management.
Enhancements:
- The Comodo Trustix team is proud to announce the release of Trustix Secure Linux 3.0.5, an update to the previous Tikka Masala. The new release is named Mirch Masala to describe the new interesting changes associated. This release has its major change from the previous release of 3.0 with the re-introduction of Anaconda as the preferred choice of installer. In addition, most packages have been upgraded to their latest versions upon customer requests. The core updates available are: kernel 2.6.19.7, PostgreSQL 8.2.3, MySQL 5.0.27, CP+ 3.3, Samba 3.0.24.
Download (629MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
1023 downloads
Remote Secure Command System 1.0
Remote Secure Command System is a remote asynchronous and secure command system based on a file configuration. more>>
Remote Secure Command System project is a remote asynchronous and secure command system based on a file configuration.
A standalone server sends and receives commands through files, and a batch system launch ssh and scp commands.
<<lessA standalone server sends and receives commands through files, and a batch system launch ssh and scp commands.
Download (0.040MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1146 downloads
Glub Tech Secure FTP 2.5.13
Glub Tech Secure FTP is a utility that allows FTP connections to be made using SSL. more>>
Secure FTP is a client application that allows for a 128-bit encrypted secure connection to be made to a server that supports FTP over SSL (or FTPS).
The application can be run via its graphical user interface (GUI) or from the command-line interface (CLI), allowing for headless (scriptable) operation. This makes Secure FTP a great option for both novice and advanced users.
The client is fully RFC 2228 compliant and offers both types of SSL connection options: explicit and implicit, which means more server compatibility.
Secure FTP is free to use for noncommercial use. Those wishing to use the client for commercial purposes are granted a license free of charge for 30 days.
The client is supported on Windows, Mac OS X, and any Unix platform where a Java 2 runtime environment (version 1.4+) is present. It was written in 100% pure Java.
Enhancements:
- The software was translated into French.
- Minor bug fixes and library updates were done.
<<lessThe application can be run via its graphical user interface (GUI) or from the command-line interface (CLI), allowing for headless (scriptable) operation. This makes Secure FTP a great option for both novice and advanced users.
The client is fully RFC 2228 compliant and offers both types of SSL connection options: explicit and implicit, which means more server compatibility.
Secure FTP is free to use for noncommercial use. Those wishing to use the client for commercial purposes are granted a license free of charge for 30 days.
The client is supported on Windows, Mac OS X, and any Unix platform where a Java 2 runtime environment (version 1.4+) is present. It was written in 100% pure Java.
Enhancements:
- The software was translated into French.
- Minor bug fixes and library updates were done.
Download (MB)
Added: 2007-05-28 License: Free for non-commercial use Price:
1876 downloads
Quinti Secure Contact Form 1
Quinti Secure Contact Form is a contact form for Web pages that is not vulnerable to robots. more>>
Quinti Secure Contact Form is a contact form for Web pages that is not vulnerable to robots who would abuse such forms for sending spam.
It uses both JavaScript field validators and CAPTCHA for verifying the validity of the sender. Quinti Secure Contact Form is easy to install and configure, and uses valid XHTML 1.1.
I have been attacked thousand times by spammers from my contact form, they use robots and take advantage of certain vulnerabilities of the mail forms to send their spam, and fill up my mailbox up to such an extent that they make your mail practically useless.
There are two ways of tackling this problem: Introducing a CAPTCHA validated through JavaScript, as i explain later.
And introducing certain functions in PHP that prevent these attacks, as you will see in the examples below
At the moment, go to the problem.
Main features:
- Invulnerable secure antispam contact form,
- JavaScript field validator in php (to insert multi-language variables and other variables, if you wish)
- Prevent spammers from using your form to send garbage, guaranteed.
- CAPTCHA to avoid Javascript validated Spam
- Easy to install and configure
- Valid XHTML 1.1
<<lessIt uses both JavaScript field validators and CAPTCHA for verifying the validity of the sender. Quinti Secure Contact Form is easy to install and configure, and uses valid XHTML 1.1.
I have been attacked thousand times by spammers from my contact form, they use robots and take advantage of certain vulnerabilities of the mail forms to send their spam, and fill up my mailbox up to such an extent that they make your mail practically useless.
There are two ways of tackling this problem: Introducing a CAPTCHA validated through JavaScript, as i explain later.
And introducing certain functions in PHP that prevent these attacks, as you will see in the examples below
At the moment, go to the problem.
Main features:
- Invulnerable secure antispam contact form,
- JavaScript field validator in php (to insert multi-language variables and other variables, if you wish)
- Prevent spammers from using your form to send garbage, guaranteed.
- CAPTCHA to avoid Javascript validated Spam
- Easy to install and configure
- Valid XHTML 1.1
Download (3.5MB)
Added: 2006-03-02 License: Free for non-commercial use Price:
1335 downloads
Userlinux Live CD 0.2
The UserLinux Project is developing an effective, streamlined, freely available Linux distribution for businesses of all sizes. more>>
The UserLinux Project is developing an effective, streamlined, freely available Linux distribution for businesses of all sizes. The project is not-for-profit with associated services available from a network of commercial service providers.
UserLinux organization will be a not-for-profit organization. The UserLinux product is a GNU/Linux distribution based from Debian GNU/Linux, but streamlined to a smaller set of default applications.
UserLinux will be freely available in both source and ISO formats. UserLinux will be complemented by a worldwide network of (generally for-profit) service providers offering certification, support, and professional services.
UserLinux will offer businesses unrivaled value by providing a strong base of intelligently selected software accompanied by vendor neutral support and certification options.
Security, training, and worker portability issues are greatly reduced through the selection of the prime application for a specific need. There are no licensing fees for software or development tools. Support services are available from a variety of professional service providers, but are never mandatory.
The UserLinux product is a Linux Operating System distribution streamlined to a smaller set of default applications for business use. The UserLinux variants, currently in beta testing, are freely available in both source and CD installation image formats.
UserLinux has four primary configurations:
Enterprise Server:A solid production server featuring Apache, Samba, and Postfix. Great as a web or file server.
Enterprise Desktop:GNOME desktop featuring OpenOffice.
GUI Server:Features a thin Graphical User Interface environment for more convenient local administration. Same core functionality as Enterprise Server.
SOHO Desktop (Small Office/Home Office):A desktop and server in one. A wider range of capabilities to meet the needs of small businesses.
UserLinux will be driven by the not-for-profit UserLinux Organization and backed by a network of for-profit professional service providers. The distribution will be accompanined by available certifications for people, software, and hardware.
Key UserLinux Advantages:
Streamlined:UserLinux is a streamlined distribution with one key application in mind for a given piece of functionality. One web browser, one word processor, one mail client, one web server. This reduces support overhead both for users and for maintaining security.
Standards compliant:UserLinux encourages cooperation with other open source organizations, and values compliance with open standards.
Designed for business:The UserLinux distribution is specially tailored towards the needs of business.
Professional Services:The third party network of UserLinux affiliated commercial Independent Software Vendors (ISVs) allow for choice in professional services and custom application design options. The separation between the UserLinux organization and the ISVs is a win-win proposition allowing both the support advantages of a service provider network and the neutrality advantages of an operating system not tied to a single company.
Flexible:While each UserLinux configuration is designed to support common functionality as shipped, the systems are also open for expansion beyond the standard UserLinux set.
Disclosure:As a not-for-profit organization working with software developed in the open, the UserLinux organization as well as the development process for the UserLinux distribution are in the open. Critical system updates are clearly and promptly announced so systems remain properly secured.
Lack of lock-in:There are no licensing fees for the UserLinux distribution or related development tools. Service is available from your choice of service providers, but is never mandatory.
Free to obtain:ISO images and the source code are freely available.
Inexpensive to maintain:The streamlined nature of the UserLinux distribution assures less software to update. There are no per seat charges or OS licenses to be tracked and audited.
Secure:Leveraging from the power of open source, the code used in the UserLinux distribution not only has thousands of hours of development but thousands of hours of peer review.
Certifications:Hardware, software, support and professional certifications will be available. The standards and corresponding tests will be created by UserLinux with third parties performing the testing activities.
Mature Software:UserLinux is directly based from Debian GNU/Linux, a general focus, free Linux distribution in existence for over a decade. Key components of UserLinux, including the highly popular Linux Kernel and Apache web server, are very mature with millions of critical-use installations.
<<lessUserLinux organization will be a not-for-profit organization. The UserLinux product is a GNU/Linux distribution based from Debian GNU/Linux, but streamlined to a smaller set of default applications.
UserLinux will be freely available in both source and ISO formats. UserLinux will be complemented by a worldwide network of (generally for-profit) service providers offering certification, support, and professional services.
UserLinux will offer businesses unrivaled value by providing a strong base of intelligently selected software accompanied by vendor neutral support and certification options.
Security, training, and worker portability issues are greatly reduced through the selection of the prime application for a specific need. There are no licensing fees for software or development tools. Support services are available from a variety of professional service providers, but are never mandatory.
The UserLinux product is a Linux Operating System distribution streamlined to a smaller set of default applications for business use. The UserLinux variants, currently in beta testing, are freely available in both source and CD installation image formats.
UserLinux has four primary configurations:
Enterprise Server:A solid production server featuring Apache, Samba, and Postfix. Great as a web or file server.
Enterprise Desktop:GNOME desktop featuring OpenOffice.
GUI Server:Features a thin Graphical User Interface environment for more convenient local administration. Same core functionality as Enterprise Server.
SOHO Desktop (Small Office/Home Office):A desktop and server in one. A wider range of capabilities to meet the needs of small businesses.
UserLinux will be driven by the not-for-profit UserLinux Organization and backed by a network of for-profit professional service providers. The distribution will be accompanined by available certifications for people, software, and hardware.
Key UserLinux Advantages:
Streamlined:UserLinux is a streamlined distribution with one key application in mind for a given piece of functionality. One web browser, one word processor, one mail client, one web server. This reduces support overhead both for users and for maintaining security.
Standards compliant:UserLinux encourages cooperation with other open source organizations, and values compliance with open standards.
Designed for business:The UserLinux distribution is specially tailored towards the needs of business.
Professional Services:The third party network of UserLinux affiliated commercial Independent Software Vendors (ISVs) allow for choice in professional services and custom application design options. The separation between the UserLinux organization and the ISVs is a win-win proposition allowing both the support advantages of a service provider network and the neutrality advantages of an operating system not tied to a single company.
Flexible:While each UserLinux configuration is designed to support common functionality as shipped, the systems are also open for expansion beyond the standard UserLinux set.
Disclosure:As a not-for-profit organization working with software developed in the open, the UserLinux organization as well as the development process for the UserLinux distribution are in the open. Critical system updates are clearly and promptly announced so systems remain properly secured.
Lack of lock-in:There are no licensing fees for the UserLinux distribution or related development tools. Service is available from your choice of service providers, but is never mandatory.
Free to obtain:ISO images and the source code are freely available.
Inexpensive to maintain:The streamlined nature of the UserLinux distribution assures less software to update. There are no per seat charges or OS licenses to be tracked and audited.
Secure:Leveraging from the power of open source, the code used in the UserLinux distribution not only has thousands of hours of development but thousands of hours of peer review.
Certifications:Hardware, software, support and professional certifications will be available. The standards and corresponding tests will be created by UserLinux with third parties performing the testing activities.
Mature Software:UserLinux is directly based from Debian GNU/Linux, a general focus, free Linux distribution in existence for over a decade. Key components of UserLinux, including the highly popular Linux Kernel and Apache web server, are very mature with millions of critical-use installations.
Download (4.0MB)
Added: 2005-08-04 License: GPL (GNU General Public License) Price:
1542 downloads

F-Secure Rescue CD 3.0 Build 12506
F-Secure Rescue CD offers you a Linux-based rescue CD to scan the computer and rename all files which contains malware. more>>
F-Secure Rescue CD 3.0 Build 12506 offers you a Linux-based rescue CD to scan the computer and rename all files which contains malware.
Major Features:
- Rescue CD scans the computer and renames all files containing malware to .virus file extension.
- Rescue CD will by default scan:
- all hard drives in the computer
- all USB drives attached to the computer
- Windows FAT and NTFS drives
- Virus definition databases are updated automatically if the computer has an internet connection
- Virus definition databases can be updated manually by using a USB drive
- The Rescue CD Guide (pdf) has step by step instructions how to use the CD
- Rescue CD will by default scan:
- Rescue CD is localized to English only.
Enhancements:
- Enhanced hardware support: Knoppix updated to version 5.3.1
- Enhanced NTFS support: NTFS-3G driver updated to version 1.2506
Requirements:
- Be x86 compatible
- Have at least 256MB of RAM
- Be able to boot from a CD
- Be able to connect to the Internet or be able to use a USB drive
Added: 2008-07-02 License: Freeware Price: FREE
1 downloads
Cheyenne Secure Web Server 1.0
Cheyenne Secure Web Server (SWS) is a comprehensive enterprise solution for Apache server. more>>
Cheyenne Secure Web Server (SWS) is a comprehensive enterprise solution for Apache server. Cheyenne Secure Web Server combines http firewall, JAVA, PHP, PERL and a domain control system with Apache HTTPD platform.
<<less Download (192.9MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
873 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above secured search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed