software analyzes
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 387
xor-analyze 0.5
xor-analyze provides a program for cryptanalyzing xor encryption with variable key length. more>>
xor-analyze provides a program for cryptanalyzing xor "encryption" with variable key length.
Main features:
- Could possibly crack bad implementations of one-time pads
- Check ftp://ftp.habets.pp.se/pub/synscan/ for windows binaries
To find out what length the password is the ciphertext is XOR-ed against itself with different shifts (see XOR_analyze::coincidence() in analyze.cc) and the number of zeroes (equal bytes) are counted. This is called counting coincidences. When the number of zeroes is high the shift value is potentially a multiple of the key length. The one that stands out most is checked with statistics (with a frequency table) to get the key. To check with statistics on all key-lengths in key-length interval (-m and -M) use the -a switch (with -v for one key per keylength)
Compiling
Type make. Mail me if it doesnt compile and dont forget to tell me what kind of system you have.
Encryption
$ ./xor-enc secret file.txt file.xor
<<lessMain features:
- Could possibly crack bad implementations of one-time pads
- Check ftp://ftp.habets.pp.se/pub/synscan/ for windows binaries
To find out what length the password is the ciphertext is XOR-ed against itself with different shifts (see XOR_analyze::coincidence() in analyze.cc) and the number of zeroes (equal bytes) are counted. This is called counting coincidences. When the number of zeroes is high the shift value is potentially a multiple of the key length. The one that stands out most is checked with statistics (with a frequency table) to get the key. To check with statistics on all key-lengths in key-length interval (-m and -M) use the -a switch (with -v for one key per keylength)
Compiling
Type make. Mail me if it doesnt compile and dont forget to tell me what kind of system you have.
Encryption
$ ./xor-enc secret file.txt file.xor
Download (0.026MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
924 downloads
Software::Packager 0.09
Software::Packager is a common software packaging interface. more>>
Software::Packager is a common software packaging interface.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
Download (0.021MB)
Added: 2007-01-08 License: Perl Artistic License Price:
1023 downloads
Software::Packager::Svr4 1.2
Software::Packager::Svr4 is the Software::Packager extension for System VR4 packages. more>>
Software::Packager::Svr4 is the Software::Packager extension for System VR4 packages.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(svr4);
This module is used to create software packages in a format suitable for installation with pkgadd.
FUNCTIONS
new()
This method creates and returns a new Software::Packager::SVR4 object.
add_item()
$packager->add_item(%object_data);
Adds a new object (file, link, etc) to the package.
package()
$packager->package();
Create the package.
info
This method returns a hash that is filled with the necessary information for a pkginfo file that conforms to the SYSV format.
package_name()
Define the package name.
program_name()
This is used to specify the full package name.
The program name must be less that 256 charaters.
For more details see the pkginfo(4) man page.
architecture()
The architecture must be a comma seperated list of alphanumeric tokens that indicate the architecture associated with the package.
The maximum length of a token is 16 charaters.
A token should be in the format "instruction set"."platform group" where:
instruction set is in the format of `uname -p`
platform group is in the format of `uname -m`
If the architecture is not set then the current instruction set is used.
For more details see the pkginfo(4) man page.
version()
This method is used to check the format of the version and return it in the format required for SVR4.
The version must be 256 charaters or less.
The first charater cannot be a left parenthesis.
The recommended format is an arbitrary string of numbers in Dewey-decimal format. For more datails see the pkginfo(4) man page.
install_dir()
$packager->install_dir(/usr/local);
my $base_dir = $packager->install_dir;
This method sets the base directory for the software to be installed. The installation directory must start with a "/".
compatible_version()
$packager->compatible_version(/some/path/file);
or
$packager->compatible_version($compver_stored_in_string);
my $compatible_version = $packager->compatible_version();
This method sets the compatible versions file for the software to be installed.
space()
$packager->space(/some/path/file);
or
$packager->space($space_data_stored_in_string);
my $space = $packager->space();
This method sets the space file for the software to be installed.
request_script()
$packager->request_script(/some/path/file);
or
$packager->request_script($request_script_stored_in_string);
my $request_script = $packager->request_script();
This method sets the space file for the software to be installed.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(svr4);
This module is used to create software packages in a format suitable for installation with pkgadd.
FUNCTIONS
new()
This method creates and returns a new Software::Packager::SVR4 object.
add_item()
$packager->add_item(%object_data);
Adds a new object (file, link, etc) to the package.
package()
$packager->package();
Create the package.
info
This method returns a hash that is filled with the necessary information for a pkginfo file that conforms to the SYSV format.
package_name()
Define the package name.
program_name()
This is used to specify the full package name.
The program name must be less that 256 charaters.
For more details see the pkginfo(4) man page.
architecture()
The architecture must be a comma seperated list of alphanumeric tokens that indicate the architecture associated with the package.
The maximum length of a token is 16 charaters.
A token should be in the format "instruction set"."platform group" where:
instruction set is in the format of `uname -p`
platform group is in the format of `uname -m`
If the architecture is not set then the current instruction set is used.
For more details see the pkginfo(4) man page.
version()
This method is used to check the format of the version and return it in the format required for SVR4.
The version must be 256 charaters or less.
The first charater cannot be a left parenthesis.
The recommended format is an arbitrary string of numbers in Dewey-decimal format. For more datails see the pkginfo(4) man page.
install_dir()
$packager->install_dir(/usr/local);
my $base_dir = $packager->install_dir;
This method sets the base directory for the software to be installed. The installation directory must start with a "/".
compatible_version()
$packager->compatible_version(/some/path/file);
or
$packager->compatible_version($compver_stored_in_string);
my $compatible_version = $packager->compatible_version();
This method sets the compatible versions file for the software to be installed.
space()
$packager->space(/some/path/file);
or
$packager->space($space_data_stored_in_string);
my $space = $packager->space();
This method sets the space file for the software to be installed.
request_script()
$packager->request_script(/some/path/file);
or
$packager->request_script($request_script_stored_in_string);
my $request_script = $packager->request_script();
This method sets the space file for the software to be installed.
Download (0.014MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1021 downloads
Network Traffic Analyzer 1.0
Network Traffic Analyzer analyzes the network traffic on multiple network devices and creates HTML statistics. more>>
Network Traffic Analyzer analyzes the network traffic on multiple network devices and creates HTML statistics with some network usage graphs. Sometimes it is good to know, how the network is used, how many bytes were received and how many bytes were sent.Therefore, here is Network Traffic Analyzer, which creates simple network usage statistics.
Such statistics can tell you, how good your network connection really is (who cares about what Internet provider say, when was the network down, which time is the best time for downloading large packages of data etc. etc. Or with this software you can just better imagine, how many traffic can your home computer generate.
<<lessSuch statistics can tell you, how good your network connection really is (who cares about what Internet provider say, when was the network down, which time is the best time for downloading large packages of data etc. etc. Or with this software you can just better imagine, how many traffic can your home computer generate.
Download (0.026MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1233 downloads
Software::Packager::Rpm 0.06
Software::Packager::Rpm provides a common interface for the creation of platform specific software installation packagers. more>>
Software::Packager::Rpm is a suite of Perl modules providing a common interface for
the creation of platform specific software installation packagers.
add_item()
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
KIND => doc,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
This method overrides the add_item method in Software::Packager. It adds the ability to add extra features used by RPM for each object in the package.
For more details see the documentation in: Software::Packager Software::Packager::Object::Rpm
program_name()
$packager->program_name(SoftwarePackager);
my $program_name = $packager->program_name();
This method is used to set the name of the program that the package is installing. This may in should be the same as the package name but that is not required. It must not contain spaces or a dash "-" and must be all on one line.
version()
$packager->version(1.2.3.4.5.6);
my $version = $packager->version();
This method sets the version for the package to the passed value. The version passed cannot contain a dash "-" or spaces and must be on one line.
release()
This method sets the release version for the package. The release is the number of times the package has been recreated. If the release is not set then a default of 1 is used. It cannot contain spaces, a dash or new lines.
copyright()
This method sets the copyright type for the package. This should be the name of the copyright
source()
This method sets the source location for the package. This should be the URL for the source package used to create this package.
architecture()
$packager->architecture("sparc");
my $arch = $packager->architecture();
This method sets the architecture for the package to the passed value. If no argument is passed then the current architecture is returned. This is the output "from uname -p"
package_name()
my $name = $packager->package_name();
This method returns the name of the package that will be created.
short_description()
$packager->short_description("This is a short description.");
my $description = $packager->short_description();
The short description is just that a short description of the program. It must be all on one line.
description()
$packager->description("This is the description.");
my $description = $packager->description();
The description method sets the package description to the passed value. If no arguments are passed the package description is returned.
The discription can be of any length. It will be formatted by RPM in the following way:
If a line starts with a space it will be printed verbatim.
A blank line signifies a new paragraph.
All other lines will be assumed to be part of a paragraph and will be formatted by RPM.
package()
This method creates the package and returns true if it is successful else it returns undef
<<lessthe creation of platform specific software installation packagers.
add_item()
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
KIND => doc,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
This method overrides the add_item method in Software::Packager. It adds the ability to add extra features used by RPM for each object in the package.
For more details see the documentation in: Software::Packager Software::Packager::Object::Rpm
program_name()
$packager->program_name(SoftwarePackager);
my $program_name = $packager->program_name();
This method is used to set the name of the program that the package is installing. This may in should be the same as the package name but that is not required. It must not contain spaces or a dash "-" and must be all on one line.
version()
$packager->version(1.2.3.4.5.6);
my $version = $packager->version();
This method sets the version for the package to the passed value. The version passed cannot contain a dash "-" or spaces and must be on one line.
release()
This method sets the release version for the package. The release is the number of times the package has been recreated. If the release is not set then a default of 1 is used. It cannot contain spaces, a dash or new lines.
copyright()
This method sets the copyright type for the package. This should be the name of the copyright
source()
This method sets the source location for the package. This should be the URL for the source package used to create this package.
architecture()
$packager->architecture("sparc");
my $arch = $packager->architecture();
This method sets the architecture for the package to the passed value. If no argument is passed then the current architecture is returned. This is the output "from uname -p"
package_name()
my $name = $packager->package_name();
This method returns the name of the package that will be created.
short_description()
$packager->short_description("This is a short description.");
my $description = $packager->short_description();
The short description is just that a short description of the program. It must be all on one line.
description()
$packager->description("This is the description.");
my $description = $packager->description();
The description method sets the package description to the passed value. If no arguments are passed the package description is returned.
The discription can be of any length. It will be formatted by RPM in the following way:
If a line starts with a space it will be printed verbatim.
A blank line signifies a new paragraph.
All other lines will be assumed to be part of a paragraph and will be formatted by RPM.
package()
This method creates the package and returns true if it is successful else it returns undef
Download (0.013MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1016 downloads
Software::Packager::Aix 0.10
Software::Packager::Aix is the Software::Packager extension for AIX 4.1 and above. more>>
Software::Packager::Aix is the Software::Packager extension for AIX 4.1 and above.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(aix);
This module is used to create software packages in a Backup-format file (bff) suitable for installation with installp.
This module creates packages for AIX 4.1 and higher only. Due to the compatability requirements of Software::Packager multiple components in the same package are not supported. This may be changed at some point in the future.
This module is in part a baised on the workings of the lppbuild scripts. Where possible Ive worked from the standards, where I had no idea what they were talking about I refered to the lppbuild scripts for an understanding.
As such Id like to thank the writers of lppbuild version 2.1. I believe these scripts to be written by Jim Abbey. Who ever it was thanks for your work. It has proven envaluable. lppbuild is available from http://aixpdslib.seas.ucla.edu/
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(aix);
This module is used to create software packages in a Backup-format file (bff) suitable for installation with installp.
This module creates packages for AIX 4.1 and higher only. Due to the compatability requirements of Software::Packager multiple components in the same package are not supported. This may be changed at some point in the future.
This module is in part a baised on the workings of the lppbuild scripts. Where possible Ive worked from the standards, where I had no idea what they were talking about I refered to the lppbuild scripts for an understanding.
As such Id like to thank the writers of lppbuild version 2.1. I believe these scripts to be written by Jim Abbey. Who ever it was thanks for your work. It has proven envaluable. lppbuild is available from http://aixpdslib.seas.ucla.edu/
Download (0.020MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1019 downloads
Software::Packager::Tar 0.09
Software::Packager::Tar is used to create tar files with the required structure. more>>
Software::Packager::Tar is used to create tar files with the required structure as specified by the list of object added to the packager.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(tar);
FUNCTIONS
new()
This method creates and returns a new class object.
package_name()
This method is used to format the package name and return it in the format required for tar packages. This method overrides the package_name method of Software::Packager.
package()
This method overrides the base API and implements the required functionality to create Tar software packages.
It calls teh following method in order setup, create_package and cleanup.
setup()
This function sets up the temporary structure for the package.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(tar);
FUNCTIONS
new()
This method creates and returns a new class object.
package_name()
This method is used to format the package name and return it in the format required for tar packages. This method overrides the package_name method of Software::Packager.
package()
This method overrides the base API and implements the required functionality to create Tar software packages.
It calls teh following method in order setup, create_package and cleanup.
setup()
This function sets up the temporary structure for the package.
Download (0.021MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1022 downloads
Software::Packager::Perl 0.05
Software::Packager::Perl is used to package perl modules ready for installation and or distribution. more>>
Software::Packager::Perl is used to package perl modules ready for installation and or distribution.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(perl);
It creates packages in the same format used to install all Perl modules.
FUNCTIONS
new()
This method creates and returns a new class object.
package()
This method overrides the base API and implements the required functionality to create Perl software packages.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(perl);
It creates packages in the same format used to install all Perl modules.
FUNCTIONS
new()
This method creates and returns a new class object.
package()
This method overrides the base API and implements the required functionality to create Perl software packages.
Download (0.019MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1018 downloads
songanalysis 0.4.0
songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format. more>>
songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format and produces an output consisting of the volume differential, the relative strength in each frequency band, and the tempo.
This is useful if you want to build something that lets you find out whether you have duplicate files, if you need to find out the tempo of your songs, or if you need to find similar songs according to how they sound.
<<lessThis is useful if you want to build something that lets you find out whether you have duplicate files, if you need to find out the tempo of your songs, or if you need to find similar songs according to how they sound.
Download (0.027MB)
Added: 2006-01-15 License: GPL (GNU General Public License) Price:
1379 downloads
Billing Software 1.04d
Billing Software allows your business to track invoicing and allows your customers to view their invoices online. more>>
Billing Software project allows your business to track invoicing and allows your customers to view their invoices online and easily export them to Excel for saving or printing.
Invoices can also be emailed to customers right from the online application for convenience and efficiency.
Enhancements:
- This release fixes some minor bugs in the XML portions of the library files.
<<lessInvoices can also be emailed to customers right from the online application for convenience and efficiency.
Enhancements:
- This release fixes some minor bugs in the XML portions of the library files.
Download (0.11MB)
Added: 2006-04-05 License: Other/Proprietary License with Source Price:
1343 downloads
Software::Packager::Object 0.09
Software::Packager::Object is a generic object data storage. more>>
Software::Packager::Object is a generic object data storage.
SYNOPSIS
use Software::Packager::Object;
This module is used by Software::Packager for holding data for a each item added to the a software package. It provides an easy way of accessing the data for each object to be installed. This module is designed to be easly sub classed and / or extended.
SUB-CLASSING
To extend or sub-class this module create a new module along the lines of
package Foo;
use Software::Packager::Object;
use vars qw(@ISA);
@ISA = qw( Software::Packager::Object );
########################
# _check_data we dont care about anything other that DESTINATION and FOO_DATA;
sub _check_data
{
my $self = shift;
my %data = @_;
return undef unless $self->{DESTINATION};
return undef unless $self->{FOO_DATA};
# now set the data for the object
foreach my $key (keys %data)
{
my $function = lc $key;
return undef unless $self->$function($data{$key});
}
}
########################
# foo_data returns the foo value fo this object.
sub foo_data
{
my $self = shift;
return $self->{FOO_DATA};
}
1;
__END__
Of course I would have created the module with a package of Software::Packager::Object::Foo but thats you choice.
<<lessSYNOPSIS
use Software::Packager::Object;
This module is used by Software::Packager for holding data for a each item added to the a software package. It provides an easy way of accessing the data for each object to be installed. This module is designed to be easly sub classed and / or extended.
SUB-CLASSING
To extend or sub-class this module create a new module along the lines of
package Foo;
use Software::Packager::Object;
use vars qw(@ISA);
@ISA = qw( Software::Packager::Object );
########################
# _check_data we dont care about anything other that DESTINATION and FOO_DATA;
sub _check_data
{
my $self = shift;
my %data = @_;
return undef unless $self->{DESTINATION};
return undef unless $self->{FOO_DATA};
# now set the data for the object
foreach my $key (keys %data)
{
my $function = lc $key;
return undef unless $self->$function($data{$key});
}
}
########################
# foo_data returns the foo value fo this object.
sub foo_data
{
my $self = shift;
return $self->{FOO_DATA};
}
1;
__END__
Of course I would have created the module with a package of Software::Packager::Object::Foo but thats you choice.
Download (0.021MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1018 downloads
Dispatch Software 1.12b
Dispatch Software is a Web-based dispatch system. more>>
Dispatch Software is a software that saves time, money and increase your customer satisfaction. 100% free online, web-based dispatch software makes it easy to keep track of your vehicles.
Easily view what each vehicle will be doing each day. Export the daily schedule to a printable spreadsheet file for your driver to take on the road. View all units on one page for faster scheduling.
Dispatch drivers can view schedules ahead of time for better planning and time management.
Installation:
-copy all files to your web host
-use phpmyadmin or your mysql interface to run site.sql against your database.
-open site.xml and edit the database section with your database details.
-go to index.php and login with username of admin with a password of test.
-be sure to change the passwords for the admin and regular user.
Setup the site.xml file with your database settings as follows.
< database type="mysql" >
< server >database server address< /server >
< login >database login< /login >
< password >database password< /password >
< default >mysql database name< /default >
< /database >
Add this to your .htaccess file to prevent viewing of the xml config file.
< Files ~ ".xml" >
Order allow,deny
Deny from all
Satisfy All
< /Files >
Enhancements:
- A bug in the main library file for the dispatching system was fixed.
<<lessEasily view what each vehicle will be doing each day. Export the daily schedule to a printable spreadsheet file for your driver to take on the road. View all units on one page for faster scheduling.
Dispatch drivers can view schedules ahead of time for better planning and time management.
Installation:
-copy all files to your web host
-use phpmyadmin or your mysql interface to run site.sql against your database.
-open site.xml and edit the database section with your database details.
-go to index.php and login with username of admin with a password of test.
-be sure to change the passwords for the admin and regular user.
Setup the site.xml file with your database settings as follows.
< database type="mysql" >
< server >database server address< /server >
< login >database login< /login >
< password >database password< /password >
< default >mysql database name< /default >
< /database >
Add this to your .htaccess file to prevent viewing of the xml config file.
< Files ~ ".xml" >
Order allow,deny
Deny from all
Satisfy All
< /Files >
Enhancements:
- A bug in the main library file for the dispatching system was fixed.
Download (0.095MB)
Added: 2006-08-21 License: Free for non-commercial use Price:
1166 downloads
Contractor Software 0.8
Contractor Software allows contractors to manage their projects and interact with customers online. more>>
Contractor Software allows contractors to manage their projects and interact with customers online. A contractor can post each task of a project. Each task has a start date and estimated completion date.
The client can then always know where the project is and leave comments for the contractor on each task. The contractor can also reply to the client with a follow up comment. This enhances communication and also leaves a record for reference later.
<<lessThe client can then always know where the project is and leave comments for the contractor on each task. The contractor can also reply to the client with a follow up comment. This enhances communication and also leaves a record for reference later.
Download (0.026MB)
Added: 2006-09-18 License: GPL (GNU General Public License) Price:
1132 downloads
timeclock software 0.92
timeclock software is an application for employees to use as a timeclock. more>>
timeclock software is an application for employees to use as a timeclock. An employee time and attendance system keeps track of when your employees sign in and out of work.
This information can then be compiled to produce the total hours worked and the amount that the employees should be paid.
Timeclock-software.nets free software product will be a simple solution to allow your employees to record their time in one central location for easy access.
<<lessThis information can then be compiled to produce the total hours worked and the amount that the employees should be paid.
Timeclock-software.nets free software product will be a simple solution to allow your employees to record their time in one central location for easy access.
Download (0.025MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1200 downloads
Job Costing Software 1.11
Job Costing Software is a Web-based job costing product makes it easy to view or update job costs quickly. more>>
Job Costing Software project is the first step to improving profitablity on your projects. A web-based job costing product makes it easy to view or update your job costs quickly.
View your project cost status in real time to make more accurate decisions. Export your costs to an excel spreadsheet for reporting or printing.
Two user levels allow your suppliers to enter costs directly without the ability to edit other costs. Improve your project decision making with free job costing software.
Everybody knows how important it is to create an accurate estimate of a jobs total costs. Unfortunately, most project managers are so busy they dont have time to gather the information needed to accurately calculate costs as the job progresses.
Job costing software makes the cost projections for you, freeing up your time to better manage the project.
Enhancements:
- This release fixed a few bugs in the database library files.
<<lessView your project cost status in real time to make more accurate decisions. Export your costs to an excel spreadsheet for reporting or printing.
Two user levels allow your suppliers to enter costs directly without the ability to edit other costs. Improve your project decision making with free job costing software.
Everybody knows how important it is to create an accurate estimate of a jobs total costs. Unfortunately, most project managers are so busy they dont have time to gather the information needed to accurately calculate costs as the job progresses.
Job costing software makes the cost projections for you, freeing up your time to better manage the project.
Enhancements:
- This release fixed a few bugs in the database library files.
Download (0.092MB)
Added: 2006-02-16 License: Other/Proprietary License with Source Price:
1350 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 software analyzes 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