Main > Free Download Search >

Free stunnix advanced web server software for linux

stunnix advanced web server

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7412
Run a web server inside LAN

Run a web server inside LAN


Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.

Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.

Sample:

#external and internal interfaces
EXT=eth0
INT=eth1

# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin

# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0

# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request

# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346

# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53

# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED

# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139

# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960

# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53

# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535

# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535

# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023

iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP

# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
X personal web server 0.1

X personal web server 0.1


X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon). more>>
X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon).

X personal web server is a (much) simpler cousin of KPF, but doesnt require kicker and uses the GTK 2 library for its minimal user interface.

<<less
Download (0.059MB)
Added: 2006-09-05 License: GPL (GNU General Public License) Price:
1148 downloads
LiteSpeed Web Server 3.1.1

LiteSpeed Web Server 3.1.1


LiteSpeed Web Server is an secure, high-performance, user-friendly Apache interchangeable Web server. more>>
LiteSpeed web server is an Apache interchangeable, full-featured high performance, secure HTTP server specifically engineered from the ground up with security and scalability in mind.
LiteSpeed Web Server is engineered to be Apache interchangeable, which means LiteSpeed has all the flexibilities that Apache has, but in much faster manner, such as distributed configuration .htaccess support.
The most commonly used Apache modules have been implemented in LiteSpeed with similar functionality and configuration, but completely different design and implementation.
Currently, LiteSpeed uses Apache compatible configuration for .htaccess and URL rewriting and eventually LiteSpeed will be able to use Apaches configuration file directly. This makes your switching between Apache and LiteSpeed very easy and risk free.
LiteSpeed Web Server has superb performance. Our measurements shows that it is more than 6 times faster than Apache, beating other lightweight content accelerators, such as thttpd, boa and TUX when serving static content, plus up to 50% increase in PHP performance than that of Apaches mod_php and more than doubled CGI/Fast CGI performance.
When you compare LiteSpeed Web Server to highly regarded and highly priced Zeus Web Server, you will find a lot of things in common: similar architecture and similar feature set, including some of the advanced features like web administration interface, MS FrontPage support, URL Rewriting, .htaccess and LDAP authentication. The biggest difference is that LiteSpeed is much more affordable, actually, it could cost you nothing.
LiteSpeed Web Server is also a real-world proven high performance content accelerator, compression proxy, and application security gateway leveraged by its highly scalable, low latency proxy engine.
With the combination of ease of use, tight security, outstanding performance, scalability, and reliability, LiteSpeed Web Server is the ultimate web server you ever need!
Main features:
- Backward compatible with HTTP/1.0
- Chunked Transfer Encoding
- Basic Authentication (htpasswd and LDAP backend)
- Entity Tag
- Range/Multi-range Request
- Static and dynamic content compression(gzip)
- CGI/1.1
- Fast CGI
- PHP (through Fast CGI interface), compatible with third party PHP Accelerators.
- JSP/Servlet (interface to back-end Servlet engine)
- Transparent reverse proxy (interface to back-end web server, application server)
- URL Rewriting is fully compatible with Apaches configuration
- Supports content publishing with MS Frontpage client.
- Supports IP based and name based virtual hosting
- Apache compatible distributed per-directory Access Control and Authentication configuration
- High performance Secure HTTP (HTTPS): supports SSLv2, SSLv3 and TLSv1
- Access Control at server, virtual host and directory (context) level
- File system protection
- HTTP Authentication
- IP level throttling (Bandwidth and Request Rate)
- Comprehensive IP level connection accounting
- Hotlink protection
- Strict HTTP request checking
- Comprehensive protection for static files
- External application firewall for dynamic content
- CGI resources consumption limit
- CGI suEXEC excution and chroot
- Chroot whole server process[Professional Edition only]
- Watch dog and Instant recovery maximizes up-time
- Graceful shutdown, all requests in process will be completed.
- Runs completely in the user space, OS reliability is not affected
- CGI, Fast CGI and servlet engine run in standalone processes, the reliability of the web server is not affected by third party software.
<<less
Download (5.3MB)
Added: 2007-05-16 License: Freeware Price:
896 downloads
Sws Web Server 0.1.7

Sws Web Server 0.1.7


Sws Web Server is a fast, secure, and simple Web server. more>>
Sws Web Server is a fast, secure, and simple Web server.
Installation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
<<less
Download (0.005MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
1569 downloads
Cheyenne Secure Web Server 1.0

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
Abyss Web Server X1 2.6

Abyss Web Server X1 2.6


Abyss Web Server X1 is a free and compact Web server. It supports SSL, compression, CGI/FastCGI, ISAPI, XSSI, URL rewriting,bandwidth throttling, anti-leeching, anti-hacking, and features a remote web management interface. more>> <<less
Download (0.64MB)
Added: 2009-04-04 License: Freeware Price: $0
73043 downloads
 
Other version of Abyss Web Server X1
Abyss Web Server X1 2.0.6Abyss Web Server is a compact web server available for Windows, MacOS X ... Abyss Web Server is a compact web server available for Windows, MacOS X, Linux, and FreeBSD
License:GPL (GNU General Public License)
Download (0.25MB)
1512 downloads
Added: 2005-09-07
Virtual Appliances Cacti Server Build 75

Virtual Appliances Cacti Server Build 75


Virtual Appliances are nano-sized virtual machines with Web user interfaces for deploying instant infrastructure. more>>
Virtual Appliances are nano-sized virtual machines with Web user interfaces for deploying instant infrastructure and applications. They are Gentoo Linux based and optimized for use in VMware and Xen.
Virtual Appliances are free to download and use, and you can choose from a simple Web server, an Apache Tomcat server, a MySQL server, and a PostgreSQL server.
Enhancements:
- This Virtual Appliance server runs Cacti, which is a network graphing solution based on RDDTool.
- It is used to provide real-time and historical visualization of network activities.
- The Cacti Server includes onboard MySQL and PHPmyAdmin in a 40MB download package to run under any VMWare product or VirtualPC.
- As with other Virtual Appliances, this Cacti Server can use Virtual Hard drives automatically, which allows for a database of any practical size.
<<less
Download (MB)
Added: 2006-12-07 License: Free To Use But Restricted Price:
624 downloads
GNOME Personal Web Server 1.99.5

GNOME Personal Web Server 1.99.5


GNOME Personal Web Server is a user friendly web server with GUI included in GNOME-Network. more>>
GNOME Personal Web Server is a user friendly web server with GUI included in GNOME-Network.

<<less
Download (1.0MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1548 downloads
DeniX Server OS 0.3

DeniX Server OS 0.3


DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. more>>
DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. They aim to offer a user-friendly full-featured server operating system, pre-configured, well structured and easy to work with, and filled with the latest stable versions of Linux apps.
Its easy to install and configure. Every package is downloaded from the authors source and compiled when installed.
Main features:
- Domain Controller
- ADSL/CABLE Router (PPPoE)
- Network Firewall
- Anti Virus Gateway
- Anti Spam Gateway
- Mail Server (local & external) + Web Mail
- Calendar Sharing Support
- Network File Server
- DHCP Server
- TFTP BOOT Server
- WINS Server
- FTP Server
- VPN Server
- DNS Server
- DDNS Server
- MySQL Server
- HTTP Apache Server
- Remote Backup Solutions
- Remote control and administration
- Print Queue Server
- Proxy Server
<<less
Download (MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1275 downloads
The Ming Server 0.7.5

The Ming Server 0.7.5


The Ming Server generates Web pages statically or dynamically. more>>
The Ming Server generates Web pages statically or dynamically. As a local executable, it generates a static site from a directory tree of simple text files.
Installed in cgi-bin, it creates those same pages on demand in response to browser requests. Parsing of different source types, the creation, and the writing of pages are separated, making it easy to extend The Ming Server to new data types or delivery methods.
Enhancements:
- A bug in Logger was fixed along with a problem in ming.cgi.
<<less
Download (0.029MB)
Added: 2005-11-12 License: GPL (GNU General Public License) Price:
1441 downloads
iConnect Portal Server 1.1

iConnect Portal Server 1.1


iConnect Portal Server is a PHP 5 portal engine for IxAS. more>>
iConnect Portal Server is a data presentation and delivery system for building enteprise portals over the iConnect Web Application Server.
Users of the platform have a customized single point of access to the companys information system and resources.
Main features:
- Grid / slots / blocks logic
- Modular structure
- Encapsulation of pages, blocks and classes inside modules
- Separation between view and model
- PHP as template engine
- Localized templates
- Grid themes
- Sessions
<<less
Download (0.12MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1637 downloads
Apache HTTP Server for Linux 2.0.52

Apache HTTP Server for Linux 2.0.52


Generation 2.x of the most popular HTTP server on the net. more>>
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
Apache has been the most popular web server on the Internet since April of 1996. The May 2003 Netcraft Web Server Survey found that 62% of the web sites on the Internet are using Apache, thus making it more widely used than all other web servers combined.
The Apache HTTP Server is a project of the Apache Software Foundation.
<<less
Download (6.6MB)
Added: 2009-04-01 License: Freeware Price:
219 downloads
 
Other version of Apache HTTP Server for Linux
Apache HTTP Server for Linux 1.3.37The May 2003 Netcraft Web Server Survey found that 62% of the web sites on the Internet are using ... , thus making it more widely used than all other web servers combined. The Apache HTTP Server is a
Price: FREE
License:Freeware
Download (2.3MB)
10 downloads
Added: 2004-11-26
License:Freeware
Download (2.35MB)
213 downloads
Added: 2009-04-03
Caravan Business Server for Linux 3.15-03D

Caravan Business Server for Linux 3.15-03D


Web App Development and Deployment Environment, Cross Platform, Tiny Footprint more>>
Caravan Business Server is an extremely easy to use comprehensive development and deployment framework which has been used to build Enterprise wide, mission critical Web-based applications.
It includes, as a seamless integrated package, an easy to use Scripting Language, Search Engine, Database Engine, a Web Server and a Communication Server, which makes it a 1-Tier Architecture.
Caravan Business Server is currently available on Linux. Once an application is developed on any OS, the same can be simply redeployed on any other OS without making any changes.
<<less
Download (1.9MB)
Added: 2009-04-21 License: Freeware Price:
188 downloads
k12admin-server 0.3.6-1

k12admin-server 0.3.6-1


k12admin-server project is a web-based server administration tool for K-12 school systems (server package). more>>
k12admin-server project is a web-based server administration tool for K-12 school systems (server package).
K12Admin is a Wide Area Network administration program geared specifically to K-12 school systems.
It allows teachers in individual schools to administer the accounts in that school. K12Admin will administer the account information on client Linux servers in each school from a central server.
All administration is done through a Web browser interface. The system also includes inappropriate Web use scanning and security auditing. The k12admin-server package is the server part of the K12Admin system.
It will typically be run on only one computer in a district. In order to be fully functional, the k12admin-client package needs to be installed on at least one server, possibly even the k12admin-server machine.
Enhancements:
- Added storyboard database - students and teachers can enter original stories, with pictures.
- Added title field to users table (ie Mr. Mrs. Miss) I use this for the StoryBoard so that a teachers first name is not displayed.
- No usable passwords for default users on new installs
- Passwords for default domain admins (demoteacher, swedishteacher, frenchteacher) are set to the password supplied on install for the mysql database.
<<less
Download (0.38MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
SystemSearcher 1.0

SystemSearcher 1.0


SystemSearcher project is yet another Linux security scanner. more>>
SystemSearcher project is yet another Linux security scanner.
SystemSearcher is a Linux security scanner written in Perl. It scans single hosts or subnets for anonymous FTP servers, TFTP servers, SMTP servers which allow relaying, SSH servers, Telnet servers, NFS servers with exported directories, mail servers, Web servers (HTTP/HTTPS), well- known trojan ports, and exploitable CGIs.
You can also scan a list of specific servers and specific ports. It uses non-blocking socket communication with a 3-second socket timeout.
It can also scan for proxy servers which are open to the world (on port 80,8080,1080, or 3128), and SMB servers or Windows boxes sharing directories.
Main features:
- Scan a network segment
- Scan for anonymous ftp
- Scan for TFTP server
- Scan for SMTP server which allows relaying
- Scan for SSH server
- Scan for Telnet server
- Scan for Web server (HTTP and HTTPS)
- Scan for proxy server open to the world (Ports 80.8080.1080,3128)
- Scan for NFS server and exported directories
- Scan for Mailservers belonging to your target
- Scan for SMB server or windoze boxes and shared directories
- Scan for exploitable CGIs using whisker (programmed by Rain Forest Puppy)
- Scan for well known Trojan ports
- Scan for one or more open ports
<<less
Download (0.18MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5