Main > Free Download Search >

Free client based software for linux

client based

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8612
Oww Client 0.5.4

Oww Client 0.5.4


Oww Client is a graphical client program for One-Wire Weather (Oww) servers. more>>
Oww Client is a graphical client program for One-Wire Weather (Oww) servers. Oww Client is based on GTK+, displaying lists of collected weather data from one or more servers.
Enhancements:
- Owwl was enhanced to include new sensor types (mainly for cryogenic readout).
- A status window was added.
- Reconnexion is now automatic, after the remote server drops it.
<<less
Download (0.038MB)
Added: 2006-06-09 License: Artistic License Price:
1233 downloads
PHP Client Sniffer 2.1.3

PHP Client Sniffer 2.1.3


PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser. more>>
PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser and system information based on the HTTP_USER_AGENT string. The class can be used to generate browser specific html marks and other client side scripting.
Enhancements:
- add k-meleon support
- add camino support
- add mozilla firebird support
- add amiga support
- fixed issues with netscape and gecko browsers
<<less
Download (0.020MB)
Added: 2006-06-29 License: LGPL (GNU Lesser General Public License) Price:
1217 downloads
nhtsclient 0.5.9

nhtsclient 0.5.9


nhtsclient is a ncurses-based client for the multiplayer trading game Holsham Traders. more>>
nhtsclient project is a ncurses-based client for the multiplayer trading game Holsham Traders.

nhtsclient is a ncurses-based client for Holsham Traders. In the game you are a trader and send your transporters around and try to make as much money as possible by buying and selling goods.

<<less
Download (0.20MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1017 downloads
Oracle client 1.00

Oracle client 1.00


Oracle client is a simplistic Perl-based Oracle client. more>>
Oracle client is a simplistic Perl-based Oracle client that tries to mimic some of the functionality of PostgreSQL and MySQLs text-based SQL clients.

It is relatively simplistic, but much more useful than dbishell or sqlplus.

The project supports readline, history, desc, and various shorthand commands like d, , c, etc.

<<less
Download (0.013MB)
Added: 2007-04-12 License: Perl Artistic License Price:
938 downloads
Perl MUD Client 2.7

Perl MUD Client 2.7


Perl MUD Client is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP. more>>
Perl MUD Client project is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP.

PMC is a text based mudclient written in Perl 5. It utilizes GNU readline, supports SSL, local editing support through MCP (MudClientProtocol), full telnet negotiation support and of course ANSI support if your terminal supports it.

Unlike other mudclients with input line editors/history, it also supports the telnet character mode, which enables it to use e.g. fullscreen applications within a mud (like the xeditor found on some LP Muds).

<<less
Download (0.023MB)
Added: 2006-12-18 License: Artistic License Price:
1043 downloads
RPC::pClient 0.1005

RPC::pClient 0.1005


RPC::pClient is a Perl extension for writing pRPC clients. more>>
RPC::pClient is a Perl extension for writing pRPC clients.

SYNOPSIS

use RPC::pClient;

$sock = IO::Socket::INET->new(PeerAddr => joes.host.de,
PeerPort => 2570,
Proto => tcp);

$connection = new RPC::pClient(sock => $sock,
application => My App,
version => 1.0,
user => joe,
password => hello!);

pRPC (Perl RPC) is a package that simplifies the writing of Perl based client/server applications. RPC::pServer is the package used on the server side, and you guess what RPC::pClient is for. See RPC::pClient(3) for this part.
pRPC works by defining a set of of functions that may be executed by the client. For example, the server might offer a function "multiply" to the client. Now a function call

@result = $con->Call(multiply, $a, $b);

on the client will be mapped to a corresponding call

multiply($con, $data, $a, $b);

on the server. (See the funcTable description below for $data.) The function calls result will be returned to the client and stored in the array @result. Simple, eh?

Client methods

new

The client constructor. Returns a client object or an error string, thus you typically use it like this:

$client = RPC::pClient->new ( ... );
if (!ref($client)) {
print STDERR "Error while creating client object: $clientn";
} else {
# Do real stuff
...
}

Call

calls a function on the server; the arguments are a function name, followed by function arguments. It returns the function results, if successfull. After executing Call() you should always check the error attribute: An empty string indicates success. Thus the equivalent to

$c = Add($a, $b)
# Use $c
...

is

$c = $client->Call("Add", $a, $b);
if ($client->error) {
# Do something in case of error
...
} else {
# Use $c
...
}

CallInt

Similar to and internally used by Call. Receives the same arguments, but the result is prepended by a status value: If this status value is TRUE, then all went fine and the following result array is valid. Otherwise an error occurred and the error message follows immediately after the status code. Example:

my($status, @result) = $client->CallInt("Add", $a, $b);
if (!$status) {
# Do something in case of error
my $errmsg = shift @result || "Unknown error";
...
} else {
...
}

Encrypt

This method can be used to get or set the cipher attribute, thus the encryption mode. If the method is passed an argument, the argument will be used as the new encryption mode. (undef for no encryption.) In either case the current encryption mode will be returned. Example:

# Get the current encryption mode
$mode = $server->Encrypt();

# Currently disable encryption
$server->Encrypt(undef);

# Switch back to the old mode
$server->Encrypt($mode);

<<less
Download (0.019MB)
Added: 2007-07-24 License: Perl Artistic License Price:
823 downloads
TeleAuth Client Tools 0.6

TeleAuth Client Tools 0.6


TeleAuth Client Tools are a set of Unix tools for the TeleAuth two-factor/two-channel authentication system. more>>
TeleAuth Client Tools are a set of Unix tools for the TeleAuth two-factor/two-channel authentication system.

This includes a commandline client and a set of PAM modules. It also enables out-of-the-box two-factor authentication on Linux, Mac OS X, and Windows machines.

These tools can be used to integrate Web sites, VPNs, and other network services with TeleAuth. They are primarily written for the free Public TeleAuth Server.

This package contains a set of optional (but convenient) client tools for TeleAuth.

Index:

commandline/ - TeleAuth Commandline Client
pam_teleauth/ - PAM modules. Source and some binaries.
demo/ - A CGI-based TeleAuth example for a fictional financial company.
drupal/ - A TeleAuth authentication module for Drupal (http://drupal.org).
ruby/ - The Ruby-TeleAuth module.
<<less
Download (0.035MB)
Added: 2006-03-17 License: GPL (GNU General Public License) Price:
1318 downloads
Ghoti IRC Client 0.86

Ghoti IRC Client 0.86


Ghoti is a GUI-based IRC Client for unix/linux. more>>
Ghoti is a GUI-based IRC Client for unix/linux, written in Perl, and distributed under the GPL. Ghoti IRC Client has an uncanny similarity to mIRC.
Main features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
<<less
Download (0.15MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1190 downloads
FlashUnity Client 0.3

FlashUnity Client 0.3


FlashUnity is a channel-based approach to an XML flash communications server and chat room. more>>
FlashUnity is a channel-based approach to an XML flash communications server and chat room.
Using the concept of channels and filters the FlashUnity server becomes extremely flexible and very easy to extend. Also, by using channels it is possible to run multiple modular functions within the same server.
Filters allow you to prefilter input for all channels or provide other functionality to all channels. This is a total rewrite of CyberSS, and the APIs and XML have multiple major changes. Each module, filter, and the chat client are in their own seperate PEAR package.
Enhancements:
- Room changes now work properly, and there are Uselist updates.
- This is the final release before 1.0.
<<less
Download (0.47MB)
Added: 2006-02-28 License: GPL (GNU General Public License) Price:
1335 downloads
SOAP::XML::Client 1.9

SOAP::XML::Client 1.9


SOAP::XML::Client is a simple frame work for talking with web services. more>>
SOAP::XML::Client is a simple frame work for talking with web services.

This package is the base class for talking with web services, there are specific modules to use depending on the type of service you are calling, e.g. SOAP::XML::Client::DotNet or SOAP::XML::Client::Generic

This package helps in talking with web services, it just needs a bit of XML thrown at it and you get some XML back. Its designed to be REALLY simple to use.

<<less
Download (0.009MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1138 downloads
SMM++ Mud Client 6.1.1

SMM++ Mud Client 6.1.1


SMM++ Mud Client project is a client with mapping functionality and lots of other features. more>>
SMM++ Mud Client project is a client with mapping functionality and lots of other features.
SMM++ Mud Client is a mud client with extended and unique features.
Aside from all standard mud client functionality like ANSI color support, aliases, action triggers, and tab-completion, SMM++ features a highly-customizable user interface (labels, buttons, and menus) and unique and powerful mapping capabilities, and SMM++ is the only mapping crossplatform (Tcl/Tk based) mud client available.
Enhancements:
- ::smm::action replaced with ::smm::reaction (pretty stable)
Added:
- ::smm::pasteok hook (not tested extensively, yet)
<<less
Download (0.24MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1082 downloads
k12admin-client 0.3.6-1

k12admin-client 0.3.6-1


k12admin-client project is a web-based server administration tool for K-12 school systems (client package). more>>
k12admin-client project is a web-based server administration tool for K-12 school systems (client 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-client package is the client part of K12Admin. It is installed on school servers that get updated using information from the k12admin-server computer.
Enhancements:
- k12.updateclient cron job was sending an error message to root if another instance of k12.updateclient was already running.
<<less
Download (0.012MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
Mail::Client::Yahoo 1.0

Mail::Client::Yahoo 1.0


Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email. more>>
Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email.

SYNOPSIS

use Mail::Client::Yahoo;

$y = Mail::Client::Yahoo->login(
username => bob,
password => secret,
secure => 1, # for the paranoid and patient
);

$y->select_folder(Inbox);

$m = $y->message(0); # is equivalent to...
@ids = $y->message_list();
$y->message($id[0]);

$y->delete_message(0);

$y->logout();

This module allows you to access your web-based Yahoo Mail account programatically. Similar in function to Mail::Webmail::Yahoo, this module is more geared towards manipulation of individual messages, rather than simple bulk download. This module is also probably more reliable than Mail::Webmail::Yahoo, as well.

<<less
Download (0.006MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
Crystal Mud Client 0.2.2

Crystal Mud Client 0.2.2


Crystal Mud Client project is a terminal-based MUD client with good protocol support. more>>
Crystal Mud Client project is a terminal-based MUD client with good protocol support.
Crystal is an adequate MUD client.
At first glance it looks like telnet, but has full line editing and scrollback, character set conversion support, Unicode support, prompt grabbing, xterm titlebar setting, and windowsize negotiation.
It even supports MCCP (compression) and telnet-over-SSL.
Its got support for a decent subset of ANSI, and properly ignores things it doesnt recognize.
Main features:
- line editor with full history
- split-screen scrollback
- window size and terminal type negotiation
- ansi colour support and xterm-256-colour support (also, underline, italic, fraktur) where applicable
- MCCP (compression) support
- logging/dumping
- tinyfugue-style prompt grabbing for LP muds
- simple scripting support using lua. for this you will need lua 4.0 installed.
- full ipv6 support
- telnet over SSL support (if you have the openssl library)
- xterm titlebar setting
- unicode support in unicode terminals
- full character set conversion support
- DEC linedrawing characters
- support for the telnet Multiplex protocol
Enhancements:
- compile fix if zlib not present.
<<less
Download (0.094MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
610 downloads
Net::Nessus::Client 0.09

Net::Nessus::Client 0.09


Net::Nessus::Client is a Nessus client module. more>>
Net::Nessus::Client is a Nessus client module.

SYNOPSIS

# Connect to the Nessus Server
require Net::Nessus::Client;
my $client = Net::Nessus::Client->new(host => localhost,
port => 1241,
user => joe,
password => my_password);

The Nessus program is a Client/Server application offering a framework for lots of security related scanners, so-called plugins. The idea is not to create a separate scanner for any possible security hole, but to reimplement only the most important parts and let the Nessus Server (nessusd) do the most part of the work.
Clients are typically available as GUI applications, for example based on the GTK (nessus), Java or Win32 applications. This module is another Nessus client written in Perl, but without GUI.

You start using the module by opening a connection to a Nessus Server: This will create a Nessus client object for you. This object offers methods that you can later use, for example retrieving the list of available plugins, start a scan, set preferences and so on.

<<less
Download (0.016MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1199 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5