0.04
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 144
VOQDM 0.04
VOQDM provides a data model for the International Virtual Observatory. more>>
VOQDM provides a data model for the International Virtual Observatory.
The Virtual Observatory Quantity Data Model (VOQDM) package is a "thing"-based data model for use with scientific and mathematical data in the International Virtual Observatory (IVO).
It is built upon the QML (Quantity Model Language) package and, in general terms, enables fast, convenient serialization/deserialization/manipulation of Quantity-based objects and documents.
An important specific application for this package is to enable the I/O of VO-catalog-based data.
<<lessThe Virtual Observatory Quantity Data Model (VOQDM) package is a "thing"-based data model for use with scientific and mathematical data in the International Virtual Observatory (IVO).
It is built upon the QML (Quantity Model Language) package and, in general terms, enables fast, convenient serialization/deserialization/manipulation of Quantity-based objects and documents.
An important specific application for this package is to enable the I/O of VO-catalog-based data.
Download (0.71MB)
Added: 2007-02-13 License: LGPL (GNU Lesser General Public License) Price:
984 downloads
Preppi 0.04
Preppi is a simple graphical EPP client for Unix and Linux systems. more>>
Preppi is a simple graphical EPP client for Unix and Linux systems. Preppi is written in Perl and makes use of the GTK+ and GNOME bindings for Perl, and our own EPP libraries.
<<less Download (0.023MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
stdnet 0.04
stdnet is a simple C++ framework for building single-threaded or multi-threaded applications which deal with I/O events. more>>
stdnet project is a simple C++ framework for building single-threaded or multi-threaded applications which deal with I/O events. The forms of I/O currently supported include TCP sockets, UDP sockets, and named pipes.
Events can also be generated through timers for handling timeout conditions. The model for the networking I/O is general and powerful such that it could be used with non-internet protocols like LAP-B etc. Also, advanced buffering and queuing classes exist but will be extended.
<<lessEvents can also be generated through timers for handling timeout conditions. The model for the networking I/O is general and powerful such that it could be used with non-internet protocols like LAP-B etc. Also, advanced buffering and queuing classes exist but will be extended.
Download (0.080MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1157 downloads
PLJava 0.04
PLJava is Perl module that will embed Perl into Java. more>>
PLJava is Perl module that will embed Perl into Java.
USAGE
import perl5.Perl ;
import perl5.SV ;
public class test {
public static void main(String argv[]) {
Perl.eval("print qq`Hello World!n` ;") ;
///////////////////
SV foo = Perl.NEW("foo") ; // $foo = new foo() ;
foo.call("subtest") ; // $foo->subtest() ;
///////////////////
String s = Perl.eval(" time: + time() ") ;
int i = Perl.eval_int(" 2**10 ") ; // 1024
int n = Perl.eval_int(" 10/3 ") ; // 3
int d = Perl.eval_double(" 10/3 ") ; // 3.33333333333333
///////////////////
SV array = Perl.eval_sv(" [ a , b , c ] ") ;
String e0 = array.elem(0) ; // a
String e1 = array.elem(1) ; // b
String e2 = array.elem(2) ; // c
///////////////////
SV hash = Perl.eval_sv(" { a => 11 , b => 22 , c => 33 } ") ;
String k_a = hash.key("a") ; // 11
String k_b = hash.key("b") ; // 22
String k_c = hash.key("c") ; // 33
}
}
<<lessUSAGE
import perl5.Perl ;
import perl5.SV ;
public class test {
public static void main(String argv[]) {
Perl.eval("print qq`Hello World!n` ;") ;
///////////////////
SV foo = Perl.NEW("foo") ; // $foo = new foo() ;
foo.call("subtest") ; // $foo->subtest() ;
///////////////////
String s = Perl.eval(" time: + time() ") ;
int i = Perl.eval_int(" 2**10 ") ; // 1024
int n = Perl.eval_int(" 10/3 ") ; // 3
int d = Perl.eval_double(" 10/3 ") ; // 3.33333333333333
///////////////////
SV array = Perl.eval_sv(" [ a , b , c ] ") ;
String e0 = array.elem(0) ; // a
String e1 = array.elem(1) ; // b
String e2 = array.elem(2) ; // c
///////////////////
SV hash = Perl.eval_sv(" { a => 11 , b => 22 , c => 33 } ") ;
String k_a = hash.key("a") ; // 11
String k_b = hash.key("b") ; // 22
String k_c = hash.key("c") ; // 33
}
}
Download (0.16MB)
Added: 2007-06-06 License: Perl Artistic License Price:
872 downloads
Stompy 0.04
Stompy provides a tool to check the security of Web session IDs and other tokens. more>>
Stompy provides a tool to check the security of Web session IDs and other tokens.
Stompy the session stomper is a penetration testing tool that performs an automated analysis and runs an array of fairly sophisticated tests on WWW session identifiers (or any other tokens) to see whether they are reasonably unpredictable or vulnerable to attacks.
Session IDs and similar secret values shared between client and server are commonly used to track authenticated users or validate certain actions in stateless environments (not limited to the Internet: prepaid mobile recharge vouchers are a good example), and as such, whenever theyre predictable or simply have a non-negligible chance of being guessed by trial and error, we do have a problem.
Some of such mechanisms, particularly in relation to the Web, are well-studied and well-documented, and believed to be cryptographically secure (for example: Apache Tomcat, PHP, ASP.NET built-in session identifiers).
This is not necessarily so for various less-researcher enterprise platforms, and almost never so for custom solutions implemented in-house for a particular application. This is no better for other types of closed-source token generation systems that need to be quickly assessed for most obvious vulnerabilities before deployment.
Enhancements:
- Added more explicit explanations of certain results,
- Added fault bitmap reporting,
- Emphasized the ability to use stompy for non-WWW applications,
- Added raw file support,
- Replaced environmental variables with command-line options,
- Dropped non-GMP compilation target.
- Added the ability to issue custom requests from file,
- Added spatial correlation detection,
- Added SSL support,
- Moved testcases to test/
- [BUG] Fixed transition checking
- [BUG] Fixed some variable token length testing bugs
- [BUG] Fixed minor reporting errors
- [BUG] Fixed a problem with SEGV on replay on some platforms
<<lessStompy the session stomper is a penetration testing tool that performs an automated analysis and runs an array of fairly sophisticated tests on WWW session identifiers (or any other tokens) to see whether they are reasonably unpredictable or vulnerable to attacks.
Session IDs and similar secret values shared between client and server are commonly used to track authenticated users or validate certain actions in stateless environments (not limited to the Internet: prepaid mobile recharge vouchers are a good example), and as such, whenever theyre predictable or simply have a non-negligible chance of being guessed by trial and error, we do have a problem.
Some of such mechanisms, particularly in relation to the Web, are well-studied and well-documented, and believed to be cryptographically secure (for example: Apache Tomcat, PHP, ASP.NET built-in session identifiers).
This is not necessarily so for various less-researcher enterprise platforms, and almost never so for custom solutions implemented in-house for a particular application. This is no better for other types of closed-source token generation systems that need to be quickly assessed for most obvious vulnerabilities before deployment.
Enhancements:
- Added more explicit explanations of certain results,
- Added fault bitmap reporting,
- Emphasized the ability to use stompy for non-WWW applications,
- Added raw file support,
- Replaced environmental variables with command-line options,
- Dropped non-GMP compilation target.
- Added the ability to issue custom requests from file,
- Added spatial correlation detection,
- Added SSL support,
- Moved testcases to test/
- [BUG] Fixed transition checking
- [BUG] Fixed some variable token length testing bugs
- [BUG] Fixed minor reporting errors
- [BUG] Fixed a problem with SEGV on replay on some platforms
Download (0.031proviMB)
Added: 2007-02-28 License: LGPL (GNU Lesser General Public License) Price:
970 downloads
imsniff 0.04
imsniff is a pcap-based instant messaging sniffer. more>>
imsniff is a pcap-based instant messaging sniffer. It captures the IM traffic in the network and is able to log conversations, contact lists, profile information, incoming email notifications, other MSN events, etc. Tested in Linux and Windows.
You can configure it via command line parameters or via a file called imsniff.conf either in the current directory or in /etc. If for some reason you rename the IMsniff
execute, you need to rename the config file as well. A sample imsniff.conf.sample file is included.
The only required parameter is the interface name to taht will be listened.
Enhancements:
- Allows to be configured via configuration file.
- Added support to non-ethernet interfaces.
- Added profile information capture.
- Added support for initial email notification.
- Added support for new email notification.
<<lessYou can configure it via command line parameters or via a file called imsniff.conf either in the current directory or in /etc. If for some reason you rename the IMsniff
execute, you need to rename the config file as well. A sample imsniff.conf.sample file is included.
The only required parameter is the interface name to taht will be listened.
Enhancements:
- Allows to be configured via configuration file.
- Added support to non-ethernet interfaces.
- Added profile information capture.
- Added support for initial email notification.
- Added support for new email notification.
Download (0.13MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1220 downloads
Kmenc15 0.04
Kmenc15 is an advanced MEncoder frontend, generally designed to be a VirtualDub replacement for Linux. more>>
Kmenc15 is an advanced Qt/KDE MEncoder frontend, generally designed to be a VirtualDub replacement for Linux. It is most useful for editing and encoding large high quality AVIs capped from TV.
It allows cutting and merging at exact frames, applying any MPlayer/MEncoder filter, with preview.
It can also create shell scripts instead of doing the encode itself, so MEncoder is not essential for it to run. MPlayer is essential though, without it the program will not even open files and cannot create shell scripts without the files.
The program is not quite complete, still a few features disabled, none of which are horribly essential. It does not support opening MPEGs. Only AVIs.
<<lessIt allows cutting and merging at exact frames, applying any MPlayer/MEncoder filter, with preview.
It can also create shell scripts instead of doing the encode itself, so MEncoder is not essential for it to run. MPlayer is essential though, without it the program will not even open files and cannot create shell scripts without the files.
The program is not quite complete, still a few features disabled, none of which are horribly essential. It does not support opening MPEGs. Only AVIs.
Download (0.23MB)
Added: 2005-06-16 License: GPL (GNU General Public License) Price:
1592 downloads
wmhdaps 0.04
wmhdaps goal is to provide a tool for configuration of the Harddisk Active Protection System (HDAPS). more>>
wmhdaps goal is to provide a tool for configuration of the Harddisk Active Protection System (HDAPS) found in some R/G/T thinkpad models.
HDAPS is realized as an acceleration sensor mounted on systemboard and a userspace tool which detects based on acceleration values from sensor shocks and freezes the harddrive(s) until the "shock" is over.
In the current version 0.02 actually is only able to visualize the movements of the notebook as a 3D model based on the acceleration values read from sensor.
Enhancements:
- In Version 0.04 redraws only occur when something changed. This helps to save power. As it doesnt redraw constantly it gives the notbook a chance to enter the power states C3/C4. Nathan Lay kindly contributed the port of wmhdaps for FreeBSD. Use Makefile.FreeBSD to compile on FreeBSD.
<<lessHDAPS is realized as an acceleration sensor mounted on systemboard and a userspace tool which detects based on acceleration values from sensor shocks and freezes the harddrive(s) until the "shock" is over.
In the current version 0.02 actually is only able to visualize the movements of the notebook as a 3D model based on the acceleration values read from sensor.
Enhancements:
- In Version 0.04 redraws only occur when something changed. This helps to save power. As it doesnt redraw constantly it gives the notbook a chance to enter the power states C3/C4. Nathan Lay kindly contributed the port of wmhdaps for FreeBSD. Use Makefile.FreeBSD to compile on FreeBSD.
Download (0.091MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1097 downloads
gpgwrap 0.04
gpgwrap is a wrapper for gpg and its --passphrase-fd option. more>>
gpgwrap project is a wrapper for gpg and its --passphrase-fd option.
SYNOPSIS
gpgwrap -V
gpgwrap -P [-v] [-i] [-a] [-p < file >]
gpgwrap -F [-v] [-i] [-a] [-c] [-p < file >] [-o < name >] [--] < file > [< file > ... ]
gpgwrap [-v] [-i] [-a] [-p < file >] [-o < name >] [--] gpg [gpg options]
Version restrictions:
- There is a size limitation: the passphrase should be not larger than some kilobytes (examine the source code for the exact limit).
- gpgwrap allows you to use all characters in a passphrase even 00, but this does not mean that gpg will accept it. gpg may reject your passphrase or may only read a part of it, if it contains characters like 12 (in C also known as n).
- If you set the environment variable GPGWRAP_PASSPHRASE you should take special care with the backslash character, because gpgwrap uses backslash to escape octal numbers, (see option -F). Therefore write backslash itself as octal number: 134.
Enhancements:
- In previous versions, the --passphrase-fd option was appended after --homedir < arg > or --options < arg >.
- Now, --homedir=< arg > and --options=< arg > should also be handled correctly.
<<lessSYNOPSIS
gpgwrap -V
gpgwrap -P [-v] [-i] [-a] [-p < file >]
gpgwrap -F [-v] [-i] [-a] [-c] [-p < file >] [-o < name >] [--] < file > [< file > ... ]
gpgwrap [-v] [-i] [-a] [-p < file >] [-o < name >] [--] gpg [gpg options]
Version restrictions:
- There is a size limitation: the passphrase should be not larger than some kilobytes (examine the source code for the exact limit).
- gpgwrap allows you to use all characters in a passphrase even 00, but this does not mean that gpg will accept it. gpg may reject your passphrase or may only read a part of it, if it contains characters like 12 (in C also known as n).
- If you set the environment variable GPGWRAP_PASSPHRASE you should take special care with the backslash character, because gpgwrap uses backslash to escape octal numbers, (see option -F). Therefore write backslash itself as octal number: 134.
Enhancements:
- In previous versions, the --passphrase-fd option was appended after --homedir < arg > or --options < arg >.
- Now, --homedir=< arg > and --options=< arg > should also be handled correctly.
Download (0.015MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1142 downloads
FuseNRG 0.04
FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. more>>
FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. On the mounted directory, there will be an ISO file, equivalent to the original NRG file. Such ISO file can be mounted with fuseiso or burned to a CD with cdrecord or even Ahead Nero itself.
Advantages over nrg2iso:
it does not require extra disk space for the ISO file
it does not require extra memory for the ISO file
you dont have to wait for the file to be converted (conversion is done on the fly)
Example:
$mkdir ../testNRG
$ls -la ../testNRG
total 8
drwxr-xr-x 2 quinho quinho 4096 May 19 00:39 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
$./fusenrg ../neroImage.nrg ../testNRG
$ls -la ../testNRG
total 4
drwxr-xr-x 2 root root 0 Dec 31 1969 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 quinho quinho 21821596 May 18 23:05 neroImage.nrg.iso
$mkdir ../testISO
$fuseiso ../testNRG/neroImage.nrg.iso ../testISO
$ls -la ../testISO
total 5234
dr-xr-xr-x 1 root root 2048 May 18 21:25 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 root root 15157180 Apr 21 15:44 DVB-T.rar
-r--r--r-- 1 root root 65989 Apr 19 23:00 PriceList MSRP April 2007.pdf
-r--r--r-- 1 root root 782 May 15 17:48 Shortcut to My Bills from December.gnumeric.lnk
-r--r--r-- 1 root root 1978 Apr 14 17:52 Users Guide.lnk
-r--r--r-- 1 root root 34354 Mar 8 07:02 MySampleDocumentation 2.txt
$fusermount -u ../testISO
$fusermount -u ../testNRG
$rmdir ../testISO ../testNRG
<<lessAdvantages over nrg2iso:
it does not require extra disk space for the ISO file
it does not require extra memory for the ISO file
you dont have to wait for the file to be converted (conversion is done on the fly)
Example:
$mkdir ../testNRG
$ls -la ../testNRG
total 8
drwxr-xr-x 2 quinho quinho 4096 May 19 00:39 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
$./fusenrg ../neroImage.nrg ../testNRG
$ls -la ../testNRG
total 4
drwxr-xr-x 2 root root 0 Dec 31 1969 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 quinho quinho 21821596 May 18 23:05 neroImage.nrg.iso
$mkdir ../testISO
$fuseiso ../testNRG/neroImage.nrg.iso ../testISO
$ls -la ../testISO
total 5234
dr-xr-xr-x 1 root root 2048 May 18 21:25 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 root root 15157180 Apr 21 15:44 DVB-T.rar
-r--r--r-- 1 root root 65989 Apr 19 23:00 PriceList MSRP April 2007.pdf
-r--r--r-- 1 root root 782 May 15 17:48 Shortcut to My Bills from December.gnumeric.lnk
-r--r--r-- 1 root root 1978 Apr 14 17:52 Users Guide.lnk
-r--r--r-- 1 root root 34354 Mar 8 07:02 MySampleDocumentation 2.txt
$fusermount -u ../testISO
$fusermount -u ../testNRG
$rmdir ../testISO ../testNRG
Download (0.019MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
543 downloads
mediadbs 0.04
mediadbs is a digital media database system. more>>
mediadbs is a project that aims to produce a flexible database system for tracking and searching for multiple forms of electronic media (eg mp3, divx, ogg) distributed on multiple servers in a local network. It currently only supports mp3 format files.
<<less Download (0.020MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1102 downloads
LDasm 0.04.53
LDasm is an x86 disassembler and GUI. more>>
LDasm (Linux Disassembler) is a Perl/Tk-based GUI for objdump/binutils that tries to imitate the looknfeel of W32Dasm.
It searchs for cross-references (e.g. strings), converts the code from GAS to a MASM-like style, traces programs and much more.
Comes along with PTrace a process-flow-logger.
Enhancements:
- Fileoffset is calculated and displayed
<<lessIt searchs for cross-references (e.g. strings), converts the code from GAS to a MASM-like style, traces programs and much more.
Comes along with PTrace a process-flow-logger.
Enhancements:
- Fileoffset is calculated and displayed
Download (0.059MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1661 downloads
HTTunnel 0.04
HTTunnel is a universal HTTP tunnel using Apache, mod_perl and Perl. more>>
HTTunnel is a universal HTTP tunnel using Apache, mod_perl and Perl.
To install this module do the following:
perl Makefile.PL
make
make test
make install
Note 1: The test suite will require the URL to an Apache::HTTunnel server to run. You will prompted for it during the installation. This server must allow tunnels to localhost:80. That Apache server must also return an HTTP 200 code for a "GET / HTTP/1.0" request.
Generally if the server has index.html file in the document root it will be ok.
<<lessTo install this module do the following:
perl Makefile.PL
make
make test
make install
Note 1: The test suite will require the URL to an Apache::HTTunnel server to run. You will prompted for it during the installation. This server must allow tunnels to localhost:80. That Apache server must also return an HTTP 200 code for a "GET / HTTP/1.0" request.
Generally if the server has index.html file in the document root it will be ok.
Download (0.011MB)
Added: 2006-07-03 License: Artistic License Price:
1209 downloads
cvsgdiff 0.04
cvsgdiff uses tkdiff or mgdiff to graphically display diffs between CVS revisions of a file in your sandbox. more>>
cvsgdiff uses tkdiff or mgdiff to graphically display diffs between CVS revisions of a file in your sandbox. cvsgdiff is basically a graphical version of "cvs diff".
If given no arguments, cvsgdiff will launch the graphical diff program once for every modified file in the current directory.
If given one or more filenames as arguments, cvsgdiff diplays the diffs of each file. If given a revision, cvsgdiff will display the diffs between the file in your sandbox and the BASE revision in CVS. If given two revisions, cvsgdiff will display the diffs between the two revisions in CVS for the given file. The files in your sandbox are not touched.
cvsgdiff works by checking out the specified (or defaults to BASE) revision of the specified file(s) into your tmp directory and then launches a graphics diff program to display the differences.
The files in your tmp directory are then removed when you exit the graphical diff program. cvsgdiff currently supports tkdiff and mgdiff. It first checks the environment variable GDIFF. If it is set, that program will be tried first. If the GDIFF environment variable specifies an absolute path but does not exist, cvsgdiff will then look for tkdiff and mgdiff.
<<lessIf given no arguments, cvsgdiff will launch the graphical diff program once for every modified file in the current directory.
If given one or more filenames as arguments, cvsgdiff diplays the diffs of each file. If given a revision, cvsgdiff will display the diffs between the file in your sandbox and the BASE revision in CVS. If given two revisions, cvsgdiff will display the diffs between the two revisions in CVS for the given file. The files in your sandbox are not touched.
cvsgdiff works by checking out the specified (or defaults to BASE) revision of the specified file(s) into your tmp directory and then launches a graphics diff program to display the differences.
The files in your tmp directory are then removed when you exit the graphical diff program. cvsgdiff currently supports tkdiff and mgdiff. It first checks the environment variable GDIFF. If it is set, that program will be tried first. If the GDIFF environment variable specifies an absolute path but does not exist, cvsgdiff will then look for tkdiff and mgdiff.
Download (0.004MB)
Added: 2006-02-10 License: BSD License Price:
1351 downloads
Net::UPS 0.04
Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.
SYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
<<lessSYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 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 0.04 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