apache users 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9634
Apache Users 1.0
Apache Users project is an Apache username enumerator, via /~username requests. more>>
Apache Users project is an Apache username enumerator, via /~username requests. This script uses a list of common system names like root, admin etc ...
You should manually check the issue to establish the http return code, ie: 403 as this is needed for the command line. No native SSL support.
USAGE apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)
Sample script:
use IO::Socket;
use Getopt::Std;
getopt ("h: l: p: e: ");
use vars qw( $opt_h $opt_l $opt_p $opt_e );
if ((! $opt_h) || (! $opt_l ) || (! $opt_p ) || (! $opt_e)) {
print "nUSAGE: apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)nn ";
exit 1;
};
$host = $opt_h;
$list = $opt_l;
$port = $opt_p;
$num = $opt_e;
open (LIST, "$list") or die "Unable to open $list ....$!";
&connect;
exit 0;
sub connect {
foreach $name (< LIST >) {
$connection = IO::Socket::INET->new (
Proto => "tcp",
PeerAddr => "$host",
PeerPort => "$port",
) or die "Cant CONNECT to $host on the Port specified.n";
$connection -> autoflush;
chomp $name;
print $connection "GET /~$name HTTP/1.0rnrn";
$results = < $connection >;
if ( $results =~/($num)/g ) {
print "$name exists on $hostn";
};
}
close ($connection);
sleep 1;
};
close LIST;
<<lessYou should manually check the issue to establish the http return code, ie: 403 as this is needed for the command line. No native SSL support.
USAGE apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)
Sample script:
use IO::Socket;
use Getopt::Std;
getopt ("h: l: p: e: ");
use vars qw( $opt_h $opt_l $opt_p $opt_e );
if ((! $opt_h) || (! $opt_l ) || (! $opt_p ) || (! $opt_e)) {
print "nUSAGE: apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)nn ";
exit 1;
};
$host = $opt_h;
$list = $opt_l;
$port = $opt_p;
$num = $opt_e;
open (LIST, "$list") or die "Unable to open $list ....$!";
&connect;
exit 0;
sub connect {
foreach $name (< LIST >) {
$connection = IO::Socket::INET->new (
Proto => "tcp",
PeerAddr => "$host",
PeerPort => "$port",
) or die "Cant CONNECT to $host on the Port specified.n";
$connection -> autoflush;
chomp $name;
print $connection "GET /~$name HTTP/1.0rnrn";
$results = < $connection >;
if ( $results =~/($num)/g ) {
print "$name exists on $hostn";
};
}
close ($connection);
sleep 1;
};
close LIST;
Download (0.023MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
Apache AntUnit 1.0
AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. more>>
AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. Apache AntUnit makes it easy to turn an existing build file that exhibits an error into an AntUnit test.
Tests are written as targets in a build file using assertion tasks provided by AntUnit. The antunit task executes targets in a collection of build files and supports custom listeners in a manner similar to the junit tasks formatters.
<<lessTests are written as targets in a build file using assertion tasks provided by AntUnit. The antunit task executes targets in a collection of build files and supports custom listeners in a manner similar to the junit tasks formatters.
Download (MB)
Added: 2007-01-08 License: The Apache License 2.0 Price:
1020 downloads
Apache-Storage 1.00
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process. more>>
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process.
<<less Download (0.004MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1521 downloads
Apache Graffito 1.0
Apache Graffito provides a framework used to build content-based applications. more>>
Apache Graffito provides a framework used to build content-based applications.
Graffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.
It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.
<<lessGraffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.
It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.
Download (MB)
Added: 2007-02-13 License: The Apache License Price:
983 downloads
apache-top 1.0
apache-top provides real-time display of the active processes from a remote apache server. more>>
apache-top provides real-time display of the active processes from a remote apache server.
With apache-top you can get:
- The active apache processes with their associated PID, the status, the seconds being active, the CPU usage, the asociated VirtualHost, the accessing ip and the request (POST or GET, the file being accessed and the used protocol)
- The server uptime and the last time it was restarted
- The CPU usage
- Requests by second, Kb by second and the average Kb by request
- Number of active and inactive processes
- A graph with the inactive and active processes and their status
<<lessWith apache-top you can get:
- The active apache processes with their associated PID, the status, the seconds being active, the CPU usage, the asociated VirtualHost, the accessing ip and the request (POST or GET, the file being accessed and the used protocol)
- The server uptime and the last time it was restarted
- The CPU usage
- Requests by second, Kb by second and the average Kb by request
- Number of active and inactive processes
- A graph with the inactive and active processes and their status
Download (0.012MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1149 downloads
mod-apache-snmp 1.03
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP. more>>
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP.
Enhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
<<lessEnhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
Download (0.032MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1533 downloads
Apache::TestRun 1.28
Apache::TestRun is a Perl module to run the test suite. more>>
Apache::TestRun is a Perl module to run the test suite.
SYNOPSIS
The Apache::TestRun package controls the configuration and running of the test suite.
METHODS
Several methods are sub-classable, if the default behavior should be changed.
bug_report
The bug_report() method is executed when t/TEST was executed with the -bugreport option, and make test (or t/TEST) fail. Normally this is callback which you can use to tell the user how to deal with the problem, e.g. suggesting to read some document or email some details to someone who can take care of it. By default nothing is executed.
The -bugreport option is needed so this feature wont become annoying to developers themselves. Its automatically added to the run_tests target in Makefile. So if you repeateadly have to test your code, just dont use make test but run t/TEST directly. Here is an example of a custom t/TEST
My::TestRun->new->run(@ARGV);
package My::TestRun;
use base Apache::TestRun;
sub bug_report {
my $self = shift;
print<<less
SYNOPSIS
The Apache::TestRun package controls the configuration and running of the test suite.
METHODS
Several methods are sub-classable, if the default behavior should be changed.
bug_report
The bug_report() method is executed when t/TEST was executed with the -bugreport option, and make test (or t/TEST) fail. Normally this is callback which you can use to tell the user how to deal with the problem, e.g. suggesting to read some document or email some details to someone who can take care of it. By default nothing is executed.
The -bugreport option is needed so this feature wont become annoying to developers themselves. Its automatically added to the run_tests target in Makefile. So if you repeateadly have to test your code, just dont use make test but run t/TEST directly. Here is an example of a custom t/TEST
My::TestRun->new->run(@ARGV);
package My::TestRun;
use base Apache::TestRun;
sub bug_report {
my $self = shift;
print<<less
Download (0.14MB)
Added: 2006-10-11 License: Perl Artistic License Price:
1108 downloads
Apache Cocoon 2.1.10
Apache Cocoon is a web development framework. more>>
Apache Cocoon is a web development framework built around the concepts of separation of concerns and component-based web development.
Apache Cocoon implements these concepts around the notion of component pipelines, each component on the pipeline specializing on a particular operation.
This makes it possible to use a Lego(tm)-like approach in building web solutions, hooking together components into pipelines without any required programming.
Apache Cocoon is "web glue for your web application development needs". It is a glue that keeps concerns separate and allows parallel evolution of all aspects of a web application, improving development pace and reducing the chance of conflicts.
<<lessApache Cocoon implements these concepts around the notion of component pipelines, each component on the pipeline specializing on a particular operation.
This makes it possible to use a Lego(tm)-like approach in building web solutions, hooking together components into pipelines without any required programming.
Apache Cocoon is "web glue for your web application development needs". It is a glue that keeps concerns separate and allows parallel evolution of all aspects of a web application, improving development pace and reducing the chance of conflicts.
Download (42.8MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1041 downloads
Apache MINA 0.9.0
Apache MINA is a network application framework. more>>
Apache MINA comes from Multipurpose Infrastructure for Network Applications and is a network application framework which helps users develop high performance and high scalability network applications easily.
Main features:
- Unified API for various transport types:
- TCP/IP
- UDP/IP
- In-VM pipe communication
- You can implement your own!
- Low-level and high-level API:
- Low-level: uses ByteBuffers
- High-level: uses user-defined message objects and codecs
- Stream-based I/O support via StreamIoHandler
- Filter interface as an extension point; similar to Servlet filters
- SSL support via SSLFilter thanks to Java 5 SSLEngine
- Thread pools are implemented as filters so that users can customize thread model.
- Unit testability using mock objects,
- JMX managability, (coming soon)
- Traffic throttling, (coming soon)
- Overload shielding, (coming soon)
- Integration with well known containers such as Spring and OSGi, (coming soon)
- Smooth migration from Netty, a popular NIO framework. (See Netty Tutorial)
Enhancements:
- This release introduces a new API with an integrated I/O layer and protocol layer.
- New features include traffic control, StartTLS, out-of-the-box protocol codecs, and Spring framework integration.
<<lessMain features:
- Unified API for various transport types:
- TCP/IP
- UDP/IP
- In-VM pipe communication
- You can implement your own!
- Low-level and high-level API:
- Low-level: uses ByteBuffers
- High-level: uses user-defined message objects and codecs
- Stream-based I/O support via StreamIoHandler
- Filter interface as an extension point; similar to Servlet filters
- SSL support via SSLFilter thanks to Java 5 SSLEngine
- Thread pools are implemented as filters so that users can customize thread model.
- Unit testability using mock objects,
- JMX managability, (coming soon)
- Traffic throttling, (coming soon)
- Overload shielding, (coming soon)
- Integration with well known containers such as Spring and OSGi, (coming soon)
- Smooth migration from Netty, a popular NIO framework. (See Netty Tutorial)
Enhancements:
- This release introduces a new API with an integrated I/O layer and protocol layer.
- New features include traffic control, StartTLS, out-of-the-box protocol codecs, and Spring framework integration.
Download (0.29MB)
Added: 2005-12-23 License: The Apache License 2.0 Price:
1401 downloads
Apache XMLRPC 3.0 RC1
Apache XML-RPC is a Java implementation of XML- RPC. more>>
Apache XML-RPC is a Java implementation of XML-RPC, a popular protocol that uses XML over HTTP to implement remote procedure calls.
Apache XML-RPC was previously known as Helma XML-RPC.
If you have code using the Helma library, all you should have to do is change the import statements in your code from helma.xmlrpc.* to org.apache.xmlrpc.*.
Apache XML-RPC provides two client classes.
1. org.apache.xmlrpc.XmlRpcClient uses java.net.URLConnection, the HTTP client that comes with the standard Java API
2. org.apache.xmlrpc.XmlRpcClientLite provides its own lightweight HTTP client implementation.
If you need full HTTP support (e.g. Proxies, Redirect etc), you should use XmlRpcClient. If you dont need full HTTP support and are concerned about performance, you should experiment with both XmlRpcClient and XmlRpcClientLite.
On some platforms XmlRpcClient may be faster, while on others XmlRpcClientLite may be faster. Both client classes provide the same interface, which includes methods for synchronous and asynchronous calls.
Enhancements:
- Version 3 is a complete rewrite of version 2.
- It introduces the concept of vendor extensions: by default, client and server are completely compliant to the XML-RPC specification.
- However, the user may enable certain non-standard features: streaming mode, support for all primitive Java types, nulls, DOM elements, JAXB objects, Serializable instances, and so on.
- Even more, the user may specify custom datatypes.
<<lessApache XML-RPC was previously known as Helma XML-RPC.
If you have code using the Helma library, all you should have to do is change the import statements in your code from helma.xmlrpc.* to org.apache.xmlrpc.*.
Apache XML-RPC provides two client classes.
1. org.apache.xmlrpc.XmlRpcClient uses java.net.URLConnection, the HTTP client that comes with the standard Java API
2. org.apache.xmlrpc.XmlRpcClientLite provides its own lightweight HTTP client implementation.
If you need full HTTP support (e.g. Proxies, Redirect etc), you should use XmlRpcClient. If you dont need full HTTP support and are concerned about performance, you should experiment with both XmlRpcClient and XmlRpcClientLite.
On some platforms XmlRpcClient may be faster, while on others XmlRpcClientLite may be faster. Both client classes provide the same interface, which includes methods for synchronous and asynchronous calls.
Enhancements:
- Version 3 is a complete rewrite of version 2.
- It introduces the concept of vendor extensions: by default, client and server are completely compliant to the XML-RPC specification.
- However, the user may enable certain non-standard features: streaming mode, support for all primitive Java types, nulls, DOM elements, JAXB objects, Serializable instances, and so on.
- Even more, the user may specify custom datatypes.
Download (0.47MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1189 downloads
Apache LDAP vhost driver 1.1
Apache LDAP vhost driver lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x. more>>
Apache LDAP vhost driver project lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x.
Bug report system
With the new maintainence, there is now also a bug report system at the URL http://bugs.bayour.com/ (project mod_ldap_cfg).
Schemas
A schema called mod_ldap_cfg is used.
Apache config
To setup Apache to use this module, the httpd.conf is used.
<<lessBug report system
With the new maintainence, there is now also a bug report system at the URL http://bugs.bayour.com/ (project mod_ldap_cfg).
Schemas
A schema called mod_ldap_cfg is used.
Apache config
To setup Apache to use this module, the httpd.conf is used.
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
834 downloads
SVNAccess 1.0.4
SVNAccess is a small Web application which lets one manage the access to SVN repositories through a simple interface. more>>
SVNAccess is a small Web application which lets one manage the access to SVN repositories through a simple interface.
SVNAccess uses existing Apache password files/users and stores information in a MySQL database in order to generate an AuthzSVNAccessFile formatted access file.
One can also delegate admin rights to a group and repository access to users so that repository owners can manage their own access.
<<lessSVNAccess uses existing Apache password files/users and stores information in a MySQL database in order to generate an AuthzSVNAccessFile formatted access file.
One can also delegate admin rights to a group and repository access to users so that repository owners can manage their own access.
Download (0.010MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
857 downloads
Apache mod_suid 2.1
Apache mod_suid allows per-vhost execution of scripts under their own UIDs. more>>
Apache mod_suid allows per-vhost execution of scripts under their own UIDs. It functions in a way similar to Apaches perchild MPM, but differs in a number of ways.
Apache mod_suid does per child user/group switching; the Apache MPM makes switches based on vhosts. All processing is done under a specific UID/GID, including PHP and mod_perl scripts.
<<lessApache mod_suid does per child user/group switching; the Apache MPM makes switches based on vhosts. All processing is done under a specific UID/GID, including PHP and mod_perl scripts.
Download (0.038MB)
Added: 2006-05-30 License: BSD License Price:
1249 downloads
Apache::AuthPerLDAP 0.5
Apache::AuthPerLDAP is a mod_perl PerLDAP Authentication Module. more>>
Apache::AuthPerLDAP is a mod_perl PerLDAP Authentication Module.
SYNOPSIS
< Directory /foo/bar >
# Authentication Realm and Type (only Basic supported)
AuthName "Foo Bar Authentication"
AuthType Basic
# Any of the following variables can be set.
# Defaults are listed to the right.
PerlSetVar BaseDN o=Foo,c=Bar # Default: "" (empty String)
PerlSetVar LDAPServer ldap.foo.com # Default: localhost
PerlSetVar LDAPPort 389 # Default: 389 (standard LDAP port)
PerlSetVar UIDAttr uid # Default: uid
require valid-user
PerlAuthenHandler Apache::AuthPerLDAP
< /Directory >
These directives can also be used in a .htaccess file.
AuthPerLDAP provides Basic Authentication, with username/password lookups against an LDAP server, using Netscapes PerLDAP kit.
It is heavily based on Clayton Donleys Apache::AuthLDAP module, but uses the newer Netscape PerLDAP (Mozilla::LDAP), which in turn uses the Netscape Directory SDK for C. Thus Donleys original Net::LDAPapi module and library is no longer required.
It requires mod_perl and PerLDAP (v1.2 or later). Building mod_perl with:
perl Makefile.PL PERL_AUTHEN=1 PERL_STACKED_HANDLERS=1 PERL_GET_SET_HANDLERS
works for me. If this module is the only Apache/Perl module you are going to use, you probably dont need anything but the PERL_AUTHEN hook enabled.
Unlike Donleys Apache::AuthLDAP module, AuthPerLDAP is only used for authentication, and thus only supports the require-user directive. If a user enters the correct username and password, the authentication is considered to be OK.
<<lessSYNOPSIS
< Directory /foo/bar >
# Authentication Realm and Type (only Basic supported)
AuthName "Foo Bar Authentication"
AuthType Basic
# Any of the following variables can be set.
# Defaults are listed to the right.
PerlSetVar BaseDN o=Foo,c=Bar # Default: "" (empty String)
PerlSetVar LDAPServer ldap.foo.com # Default: localhost
PerlSetVar LDAPPort 389 # Default: 389 (standard LDAP port)
PerlSetVar UIDAttr uid # Default: uid
require valid-user
PerlAuthenHandler Apache::AuthPerLDAP
< /Directory >
These directives can also be used in a .htaccess file.
AuthPerLDAP provides Basic Authentication, with username/password lookups against an LDAP server, using Netscapes PerLDAP kit.
It is heavily based on Clayton Donleys Apache::AuthLDAP module, but uses the newer Netscape PerLDAP (Mozilla::LDAP), which in turn uses the Netscape Directory SDK for C. Thus Donleys original Net::LDAPapi module and library is no longer required.
It requires mod_perl and PerLDAP (v1.2 or later). Building mod_perl with:
perl Makefile.PL PERL_AUTHEN=1 PERL_STACKED_HANDLERS=1 PERL_GET_SET_HANDLERS
works for me. If this module is the only Apache/Perl module you are going to use, you probably dont need anything but the PERL_AUTHEN hook enabled.
Unlike Donleys Apache::AuthLDAP module, AuthPerLDAP is only used for authentication, and thus only supports the require-user directive. If a user enters the correct username and password, the authentication is considered to be OK.
Download (0.003MB)
Added: 2006-10-12 License: Perl Artistic License Price:
1107 downloads
Apache Incubator
Apache Incubator project ensure all donations are in accordance with the ASF legal standards. more>>
Apache Incubator project is the entry path into The Apache Software Foundation (ASF) for projects and codebases wishing to become part of the Foundations efforts.
All code donations from external organisations and existing external projects wishing to join Apache enter through the Incubator.
The Apache Incubator has two primary goals:
- Ensure all donations are in accordance with the ASF legal standards
- Develop new communities that adhere to our guiding principles
<<lessAll code donations from external organisations and existing external projects wishing to join Apache enter through the Incubator.
The Apache Incubator has two primary goals:
- Ensure all donations are in accordance with the ASF legal standards
- Develop new communities that adhere to our guiding principles
Download (MB)
Added: 2007-01-10 License: The Apache License 2.0 Price:
1018 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 apache users 1.0 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