users only
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6916
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
Fast Icon Users for Linux -
User icons with functions like: add, chat, edit, offline, remove, send, upload more>> Description:
11 icons of users.
Content:
User icons with functions like: add, chat, edit, offline, remove, send, upload, user, user group, video chat, voice chat<<less
Download (313KB)
Added: 2009-04-04 License: Freeware Price:
211 downloads
HelloUsers 12.2006
HelloUsers is a Web application for communication between network administrators and users. more>>
HelloUsers is a Web application for communication between network administrators and users. It is like a notice board.
It contains an extended administrative panel and assures that a news item from an administrator will be viewed by network users.
It uses iptables to redirect Web traffic to a local HTTP server located on the network router.
<<lessIt contains an extended administrative panel and assures that a news item from an administrator will be viewed by network users.
It uses iptables to redirect Web traffic to a local HTTP server located on the network router.
Download (0.025MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1025 downloads
User::Utmp 1.8
User::Utmp is a Perl access to utmp- and utmpx-style databases. more>>
User::Utmp is a Perl access to utmp- and utmpx-style databases.
SYNOPSIS
use User::Utmp qw(:constants :utmpx);
@utmp = getutx();
or, using utmp:
use User::Utmp qw(:constants :utmp);
@utmp = getut();
UNIX systems record information about current and past logins in a user accounting database. This database is realized by two files: File utmpx contains a record of all users currently logged onto the system, while file wtmpx contains a record of all logins and logouts. Some systems (such as HP-UX and AIX) also maintain a third file containing failed login attempts. The information in these files is used by commands such as who(1), last(1), write(1), or login(1).
The exact location of these files in the file system varies between operating systems, but they are typically stored in directories like /var/adm, /var/run, or /var/log. The Single UNIX Specification specifies an API for reading from and writing to these files.
The utmpx file format and functions were derived from the older utmp file format and functions. For compatibility reasons, many systems still support the utmp functions and maintain utmp database files. It is recommended, however, to use the utmpx functions instead of the obsolete utmp functions.
The User::Utmp module provides functions for reading and writing utmpx and utmp files by providing a Perl interface to the system functions.
Utmpx and utmp records are represented in Perl by hash references. The hash keys are the names of the elements of the utmpx structure. For details consult utmpx(4) (utmpx(5) on some systems). The hash values are (mostly) the same as in C.
As an example, here is a typical record as it may be returned by the getutxent(), getutxid(), getutxline() or the corresponding utmp functions:
{ut_tv => {tv_sec => 1141256698, tv_usec => 0},
ut_line => "ttyp0",
ut_time => 1141256698,
ut_id => "p0",
ut_host => ":0.0",
ut_exit => {e_termination => 0, e_exit => 2},
ut_pid => 4577,
ut_user => "mxp",
ut_type => USER_PROCESS,}
The array returned by the getutx() and getut() functions is composed of hash references like this.
<<lessSYNOPSIS
use User::Utmp qw(:constants :utmpx);
@utmp = getutx();
or, using utmp:
use User::Utmp qw(:constants :utmp);
@utmp = getut();
UNIX systems record information about current and past logins in a user accounting database. This database is realized by two files: File utmpx contains a record of all users currently logged onto the system, while file wtmpx contains a record of all logins and logouts. Some systems (such as HP-UX and AIX) also maintain a third file containing failed login attempts. The information in these files is used by commands such as who(1), last(1), write(1), or login(1).
The exact location of these files in the file system varies between operating systems, but they are typically stored in directories like /var/adm, /var/run, or /var/log. The Single UNIX Specification specifies an API for reading from and writing to these files.
The utmpx file format and functions were derived from the older utmp file format and functions. For compatibility reasons, many systems still support the utmp functions and maintain utmp database files. It is recommended, however, to use the utmpx functions instead of the obsolete utmp functions.
The User::Utmp module provides functions for reading and writing utmpx and utmp files by providing a Perl interface to the system functions.
Utmpx and utmp records are represented in Perl by hash references. The hash keys are the names of the elements of the utmpx structure. For details consult utmpx(4) (utmpx(5) on some systems). The hash values are (mostly) the same as in C.
As an example, here is a typical record as it may be returned by the getutxent(), getutxid(), getutxline() or the corresponding utmp functions:
{ut_tv => {tv_sec => 1141256698, tv_usec => 0},
ut_line => "ttyp0",
ut_time => 1141256698,
ut_id => "p0",
ut_host => ":0.0",
ut_exit => {e_termination => 0, e_exit => 2},
ut_pid => 4577,
ut_user => "mxp",
ut_type => USER_PROCESS,}
The array returned by the getutx() and getut() functions is composed of hash references like this.
Download (0.011MB)
Added: 2007-04-10 License: Perl Artistic License Price:
929 downloads
Group User Folder 3.54.2
Group User Folder provides a Zope Product that manages Groups of Users. more>>
Group User Folder provides a Zope Product that manages Groups of Users.
GroupUserFolder is a kind of user folder that provides a special kind of user management. Some users are "flagged" as GROUP and then normal users will be able to belong to one or serveral groups.
Enhancements:
- Fix _getMemberIds for LDAPUserFolder 2.7 when groups are stored in LDAPUF [encolpe]
- Got rid of zLOG in favor of logging. [stefan]
<<lessGroupUserFolder is a kind of user folder that provides a special kind of user management. Some users are "flagged" as GROUP and then normal users will be able to belong to one or serveral groups.
Enhancements:
- Fix _getMemberIds for LDAPUserFolder 2.7 when groups are stored in LDAPUF [encolpe]
- Got rid of zLOG in favor of logging. [stefan]
Download (0.50MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
Squid Users Manager 1.2.0
Squid Users Manager is a web-enabled and intuitive user interface that manager Squid Proxy NCSA auth users. more>>
Squid Users Manager is a web-enabled and intuitive user interface written upon Ruby on Rails web development framework that manager Squid Proxy NCSA auth users across MD5 digest files.
The project is Open Source and distributed under the terms of the GPL licence.
Enhancements:
- Application Web 2.0 compliant
- New design with css and light layout.
- Ajax enabled app.
- More intuitive and elegant application.
<<lessThe project is Open Source and distributed under the terms of the GPL licence.
Enhancements:
- Application Web 2.0 compliant
- New design with css and light layout.
- Ajax enabled app.
- More intuitive and elegant application.
Download (1.4MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1125 downloads
You Only Live Once 005
You Only Live Once is a Seven Day Roguelike game. more>>
You Only Live Once is a Seven Day Roguelike game.
Main features:
- Extremely tactical combat. There is no randomness in combat. You always hit and always do full damage. This means that careful placement is the difference between success and failure.
- Heavy on plot and characterization. A story is told. It is not just kill things for no reason. (If you want to just kill things for no reason, POWDER is recommended)
- Quick to complete. You can likely fully explore and enjoy the game in an hour or two. You are then free to get on with your life.
Enhancements:
- Version 005 sees the mac-curses build not be distributed. Instead, youll have to content yourself by compiling it by hand out of the macport directory.
<<lessMain features:
- Extremely tactical combat. There is no randomness in combat. You always hit and always do full damage. This means that careful placement is the difference between success and failure.
- Heavy on plot and characterization. A story is told. It is not just kill things for no reason. (If you want to just kill things for no reason, POWDER is recommended)
- Quick to complete. You can likely fully explore and enjoy the game in an hour or two. You are then free to get on with your life.
Enhancements:
- Version 005 sees the mac-curses build not be distributed. Instead, youll have to content yourself by compiling it by hand out of the macport directory.
Download (1.1MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1093 downloads
Authenticated User Community 0.7.4
Authenticated User Community project is a CGI-based intranet system for K-12 settings. more>>
Authenticated User Community project is a CGI-based intranet system for K-12 settings.
AUC (Authenticated User Community) is an intranet system designed for use in an educational organization but is also useful in many other settings.
It offers the ability for users to have a uniform web-based interface to discussion forums, e-mail (similar to hotmail, etc.), file management, and a searchable user database.
Also, "Interactive Classrooms" provide a means for students and teachers to have a web-based extension to their in-class interaction.
The system runs from a C-based monolithic CGI script. MySQL is used for database storage. Also, the web-based mail client supports MIME parts/attachments, IMAP, mbox, and multiple mail folders.
<<lessAUC (Authenticated User Community) is an intranet system designed for use in an educational organization but is also useful in many other settings.
It offers the ability for users to have a uniform web-based interface to discussion forums, e-mail (similar to hotmail, etc.), file management, and a searchable user database.
Also, "Interactive Classrooms" provide a means for students and teachers to have a web-based extension to their in-class interaction.
The system runs from a C-based monolithic CGI script. MySQL is used for database storage. Also, the web-based mail client supports MIME parts/attachments, IMAP, mbox, and multiple mail folders.
Download (3.3MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1089 downloads
dtRdr::User 0.0.11
dtRdr::User.pm is a user class as a Perl module. more>>
dtRdr::User.pm is a user class as a Perl module.
Constructor
new
$user = dtRdr::User->new($username);
Methods
init_config
$user->init_config($filename);
<<lessConstructor
new
$user = dtRdr::User->new($username);
Methods
init_config
$user->init_config($filename);
Download (2.8MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
954 downloads
NetCARD Config 1.05
NetCARD Config project helps linux users to configure network cards for two ip one for DSL network one for Local Network. more>>
NetCARD Config project helps linux users to configure network cards for two ip one for DSL network one for Local Network.
<<less Download (0.030MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1315 downloads
easys GNU/Linux 3.0
easys GNU/Linux 2.1 is a Slackware-based distribution with KDE Light and formerly known as more>>
easys GNU/Linux was formerly known as "pocketlinux".
easys GNU/Linux main aims are to be small, fast and easy to use. If you think your live isnt slacked, yet, give this one a try.
easys GNU/Linux is a Slackware-based distribution developed by former developers of the now-discontinued Bonzai Linux.
easys GNU/Linux has a different approach then most other distributions. We want to build up a version of linux you can count on, and you can do your daily work with.
In the past 10 years in computer business I have noticed that most users only need a few applications (f.e. a texteditor, a spreadsheet, a browser or an email client). Current Desktop Environemnts like KDE offer a lot more. But can you tell me WHO really needs 3 different texteditors? So we slimmed it all down a bit. And thats what pocketlinux is about. We do not offer any administration frontends for deep system tweeks, as we think a "normal" user should not touch these things. Experienced Users can use the on board administration tools that come with the Slackware core. (Of course, if you really want to change any hardware specific settings like your monitor resolution, feel free to ask someone in the forum).
We only offer 1 application per task, so there is only one texteditor visible for the end user. (Please note that the kde-light environment is based on a complete KDE version, so most of the KDE application are onboard, too. But they are not visible to the end user per default.)
So we took a look at other installers and noticed the "shell script" based Slackware installer. The only thing we do not like about it is that its not i18n-able. So we took some time to customize the installer to be able to write back a complete tar archive on nearly any harddrive. We added i18n support (English and German right now. We are still looking for translators) and modified the kernel installation.
Enhancements:
- We are proud to present the next generation of the easys GNU/Linux operating system. The OS is now based on Slackware Linux 11.0 which comes with full kernel 2.6 support, including udev for device initialization. Kernel 2.6.17.13 is the default for a fresh installation. Besides current versions of glibc (2.3.6), GCC (3.4.6) and X.Org 6.9.0, we have included a full version of KDE 3.5.4 instead of KDE light. It has been optimized for easier usage including one application per task and a fresh enterprise GUI design called waveline. Kiosktool and KDE Kiosk Mode can be used to create user and group policies which allows you to easily setup internet kiosks or locked down workstations.
<<lesseasys GNU/Linux main aims are to be small, fast and easy to use. If you think your live isnt slacked, yet, give this one a try.
easys GNU/Linux is a Slackware-based distribution developed by former developers of the now-discontinued Bonzai Linux.
easys GNU/Linux has a different approach then most other distributions. We want to build up a version of linux you can count on, and you can do your daily work with.
In the past 10 years in computer business I have noticed that most users only need a few applications (f.e. a texteditor, a spreadsheet, a browser or an email client). Current Desktop Environemnts like KDE offer a lot more. But can you tell me WHO really needs 3 different texteditors? So we slimmed it all down a bit. And thats what pocketlinux is about. We do not offer any administration frontends for deep system tweeks, as we think a "normal" user should not touch these things. Experienced Users can use the on board administration tools that come with the Slackware core. (Of course, if you really want to change any hardware specific settings like your monitor resolution, feel free to ask someone in the forum).
We only offer 1 application per task, so there is only one texteditor visible for the end user. (Please note that the kde-light environment is based on a complete KDE version, so most of the KDE application are onboard, too. But they are not visible to the end user per default.)
So we took a look at other installers and noticed the "shell script" based Slackware installer. The only thing we do not like about it is that its not i18n-able. So we took some time to customize the installer to be able to write back a complete tar archive on nearly any harddrive. We added i18n support (English and German right now. We are still looking for translators) and modified the kernel installation.
Enhancements:
- We are proud to present the next generation of the easys GNU/Linux operating system. The OS is now based on Slackware Linux 11.0 which comes with full kernel 2.6 support, including udev for device initialization. Kernel 2.6.17.13 is the default for a fresh installation. Besides current versions of glibc (2.3.6), GCC (3.4.6) and X.Org 6.9.0, we have included a full version of KDE 3.5.4 instead of KDE light. It has been optimized for easier usage including one application per task and a fresh enterprise GUI design called waveline. Kiosktool and KDE Kiosk Mode can be used to create user and group policies which allows you to easily setup internet kiosks or locked down workstations.
Download (622.9MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1115 downloads
RADIUS::UserFile 1.01
RADIUS::UserFile is a Perl extension for manipulating a RADIUS users file. more>>
RADIUS::UserFile is a Perl extension for manipulating a RADIUS users file.
SYNOPSIS
use RADIUS::UserFile;
my $users = new RADIUS::UserFile
File => /etc/raddb/users,
Check_Items => [ qw(Password Calling-Station-Id) ];
$users->load(/usr/local/etc/radius/users);
$users->add(Who => joeuser,
Attributes => { key1 => val1, key2 => val2 },
Comment => Created on . scalar localtime);
$users->update(File => /etc/raddb/users,
Who => qw(joeuser janeuser));
print $users->format(joeuser);
<<lessSYNOPSIS
use RADIUS::UserFile;
my $users = new RADIUS::UserFile
File => /etc/raddb/users,
Check_Items => [ qw(Password Calling-Station-Id) ];
$users->load(/usr/local/etc/radius/users);
$users->add(Who => joeuser,
Attributes => { key1 => val1, key2 => val2 },
Comment => Created on . scalar localtime);
$users->update(File => /etc/raddb/users,
Who => qw(joeuser janeuser));
print $users->format(joeuser);
Download (0.015MB)
Added: 2007-04-11 License: Perl Artistic License Price:
933 downloads
qmail-masq-user 0.2.1
qmail-masq-user provides a program to change From: field of emails to any combinations of user/domain. more>>
qmail-masq-user provides a program to change From: field of emails to any combinations of user/domain.
Originally based off the program qmail-masq, qmail-masq-user uses qmail and qmail-qfilter to change the From: address of outgoing emails to almost any combination of username, domain, or both.
The configuration allows you to specify domain catch-alls, user catch-alls, email catch-alls, specific combinations of users and/or domains, and much more.
INSTALLATON:
1) install and configure qmail
2) install qmail-qfilter
3) copy qmail-masq-user.conf.example to /etc/qmail-masq.conf and modify it for your
needs (follow the instructions in the file)
# cp qmail-masq-user.conf.example /etc/qmail-masq-user.conf
# chmod 644 /etc/qmail-masq-user.conf
# vi /etc/qmail-masq-user.conf
4) run the install.pl included installer which will set up the files exactly
to be able to run them
# perl install.pl
4) all is done, you dont have to restart qmail, try it sending some email
and enjoy it!
Note: make sure you are root when you install everything!
<<lessOriginally based off the program qmail-masq, qmail-masq-user uses qmail and qmail-qfilter to change the From: address of outgoing emails to almost any combination of username, domain, or both.
The configuration allows you to specify domain catch-alls, user catch-alls, email catch-alls, specific combinations of users and/or domains, and much more.
INSTALLATON:
1) install and configure qmail
2) install qmail-qfilter
3) copy qmail-masq-user.conf.example to /etc/qmail-masq.conf and modify it for your
needs (follow the instructions in the file)
# cp qmail-masq-user.conf.example /etc/qmail-masq-user.conf
# chmod 644 /etc/qmail-masq-user.conf
# vi /etc/qmail-masq-user.conf
4) run the install.pl included installer which will set up the files exactly
to be able to run them
# perl install.pl
4) all is done, you dont have to restart qmail, try it sending some email
and enjoy it!
Note: make sure you are root when you install everything!
Download (0.011MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
959 downloads
Danselfduty 1.2
Danselfduty allows users to authorize Web browsing by themselves. more>>
Danselfduty allows users to authorize Web browsing by themselves.
Danselfduty project first shows a disclaimer GUI, and when the user presses the "accept" button, it saves the domain name into a configuration file and redirects the users browser to the initially requested URL.
Enhancements:
- This release adds site blocking and sites that should be always parsed by DG. It correcteds a small CSS bug.
<<lessDanselfduty project first shows a disclaimer GUI, and when the user presses the "accept" button, it saves the domain name into a configuration file and redirects the users browser to the initially requested URL.
Enhancements:
- This release adds site blocking and sites that should be always parsed by DG. It correcteds a small CSS bug.
Download (0.017MB)
Added: 2007-02-17 License: LGPL (GNU Lesser General Public License) Price:
979 downloads
Resolver User Layer Interface 0.36
RULI stands for Resolver User Layer Interface. more>>
RULI stands for Resolver User Layer Interface. Its a library built on top of an asynchronous DNS stub resolver. RULI provides an easy-to-use interface for querying DNS SRV resource records. The goal is to promote wide deployment of SRV-cognizant software. RULI aims to fully support SRV-related standards. There are bindings for PHP, Perl, Guile/Scheme, Java, and Lua. IPv6 is supported.
Now you can understand the benefits of SRV records and please see how RULI can help you.
SRV records are more complex than A records
Handling DNS SRV is not as simple as to deal with ordinary address records. When one performs a query for A records by calling gethostbyname(), he gets a list of addresses which should be contacted in the same order as they were received. For SRV records, there is an additional logic that must be applied to the records, based on their weight and priority, to discover the correct sequence for contacting them.
RULI can handle SRV records for you
The SRV logic is described in RFC 2782. Those who intend to use SRV benefits in their application are expected to implement that exact behavior. RULI can help here: it automatically performs all the SRV logic for you.
Keep focus on your application logic
Application developers probably want to spend time on their business logic; not dealing with the details of the DNS protocol or implementing the SRV specification.
RULI is a tested framework designed to properly fetch SRV records. It saves you time and head aches.
RULI is free as in free beer and in free speech
<<lessNow you can understand the benefits of SRV records and please see how RULI can help you.
SRV records are more complex than A records
Handling DNS SRV is not as simple as to deal with ordinary address records. When one performs a query for A records by calling gethostbyname(), he gets a list of addresses which should be contacted in the same order as they were received. For SRV records, there is an additional logic that must be applied to the records, based on their weight and priority, to discover the correct sequence for contacting them.
RULI can handle SRV records for you
The SRV logic is described in RFC 2782. Those who intend to use SRV benefits in their application are expected to implement that exact behavior. RULI can help here: it automatically performs all the SRV logic for you.
Keep focus on your application logic
Application developers probably want to spend time on their business logic; not dealing with the details of the DNS protocol or implementing the SRV specification.
RULI is a tested framework designed to properly fetch SRV records. It saves you time and head aches.
RULI is free as in free beer and in free speech
Download (0.12MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
1197 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 users only 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