cvss
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5
Security::CVSS 0.3
Security::CVSS is a Perl module to calculate CVSS values (Common Vulnerability Scoring System). more>>
Security::CVSS is a Perl module to calculate CVSS values (Common Vulnerability Scoring System).
SYNOPSIS
use Security::CVSS;
my $CVSS = new Security::CVSS;
$CVSS->AccessVector(Local);
$CVSS->AccessComplexity(High);
$CVSS->Authentication(Not-Required);
$CVSS->ConfidentialityImpact(Complete);
$CVSS->IntegrityImpact(Complete);
$CVSS->AvailabilityImpact(Complete);
$CVSS->ImpactBias(Normal);
my $BaseScore = $CVSS->BaseScore();
$CVSS->Exploitability(Proof-Of-Concept);
$CVSS->RemediationLevel(Official-Fix);
$CVSS->ReportConfidence(Confirmed);
my $TemporalScore = $CVSS->TemporalScore()
$CVSS->CollateralDamagePotential(None);
$CVSS->TargetDistribution(None);
my $EnvironmentalScore = $CVSS->EnvironmentalScore();
my $CVSS = new CVSS({AccessVector => Local,
AccessComplexity => High,
Authentication => Not-Required,
ConfidentialityImpact => Complete,
IntegrityImpact => Complete,
AvailabilityImpact => Complete,
ImpactBias => Normal
});
my $BaseScore = $CVSS->BaseScore();
$CVSS->UpdateFromHash({AccessVector => Remote,
AccessComplexity => Low);
my $NewBaseScore = $CVSS->BaseScore();
$CVSS->Vector((AV:L/AC:H/Au:NR/C:N/I:P/A:C/B:C));
my $BaseScore = $CVSS->BaseScore();
my $Vector = $CVSS->Vector();
CVSS allows you to calculate all three types of score described under the CVSS system: Base, Temporal and Environmental.
You can modify any parameter via its accessor and recalculate at any time.
The temporal score depends on the base score, and the environmental score depends on the temporal score. Therefore you must remember to supply all necessary parameters.
<<lessSYNOPSIS
use Security::CVSS;
my $CVSS = new Security::CVSS;
$CVSS->AccessVector(Local);
$CVSS->AccessComplexity(High);
$CVSS->Authentication(Not-Required);
$CVSS->ConfidentialityImpact(Complete);
$CVSS->IntegrityImpact(Complete);
$CVSS->AvailabilityImpact(Complete);
$CVSS->ImpactBias(Normal);
my $BaseScore = $CVSS->BaseScore();
$CVSS->Exploitability(Proof-Of-Concept);
$CVSS->RemediationLevel(Official-Fix);
$CVSS->ReportConfidence(Confirmed);
my $TemporalScore = $CVSS->TemporalScore()
$CVSS->CollateralDamagePotential(None);
$CVSS->TargetDistribution(None);
my $EnvironmentalScore = $CVSS->EnvironmentalScore();
my $CVSS = new CVSS({AccessVector => Local,
AccessComplexity => High,
Authentication => Not-Required,
ConfidentialityImpact => Complete,
IntegrityImpact => Complete,
AvailabilityImpact => Complete,
ImpactBias => Normal
});
my $BaseScore = $CVSS->BaseScore();
$CVSS->UpdateFromHash({AccessVector => Remote,
AccessComplexity => Low);
my $NewBaseScore = $CVSS->BaseScore();
$CVSS->Vector((AV:L/AC:H/Au:NR/C:N/I:P/A:C/B:C));
my $BaseScore = $CVSS->BaseScore();
my $Vector = $CVSS->Vector();
CVSS allows you to calculate all three types of score described under the CVSS system: Base, Temporal and Environmental.
You can modify any parameter via its accessor and recalculate at any time.
The temporal score depends on the base score, and the environmental score depends on the temporal score. Therefore you must remember to supply all necessary parameters.
Download (0.005MB)
Added: 2007-04-11 License: Perl Artistic License Price:
928 downloads
CVS 1.11.22
CVS is a version control system, an important component of Source Configuration Management (SCM). more>>
CVS is a version control system, an important component of Source Configuration Management (SCM). Using it, you can record the history of sources files, and documents. CVS fills a similar role to the free software RCS, PRCS, and Aegis packages.
CVS is a production quality system in wide use around the world, including many free software projects.
While CVS stores individual file history in the same format as RCS, it offers the following significant advantages over RCS:
- It can run scripts which you can supply to log CVS operations or enforce site-specific polices.
- Client/server CVS enables developers scattered by geography or slow modems to function as a single team. The version history is stored on a single central server and the client machines have a copy of all the files that the developers are working on. Therefore, the network between the client and the server must be up to perform CVS operations (such as checkins or updates) but need not be up to edit or manipulate the current versions of the files. Clients can perform all the same operations which are available locally.
- In cases where several developers or teams want to each maintain their own version of the files, because of geography and/or policy, CVSs vendor branches can import a version from another team (even if they dont use CVS), and then CVS can merge the changes from the vendor branch with the latest files if that is what is desired.
- Unreserved checkouts, allowing more than one developer to work on the same files at the same time.
- CVS provides a flexible modules database that provides a symbolic mapping of names to components of a larger software distribution. It applies names to collections of directories and files. A single command can manipulate the entire collection.
- CVS servers run on most unix variants, and clients for Windows NT/95, OS/2 and VMS are also available. CVS will also operate in what is sometimes called server mode against local repositories on Windows 95/NT.
<<lessCVS is a production quality system in wide use around the world, including many free software projects.
While CVS stores individual file history in the same format as RCS, it offers the following significant advantages over RCS:
- It can run scripts which you can supply to log CVS operations or enforce site-specific polices.
- Client/server CVS enables developers scattered by geography or slow modems to function as a single team. The version history is stored on a single central server and the client machines have a copy of all the files that the developers are working on. Therefore, the network between the client and the server must be up to perform CVS operations (such as checkins or updates) but need not be up to edit or manipulate the current versions of the files. Clients can perform all the same operations which are available locally.
- In cases where several developers or teams want to each maintain their own version of the files, because of geography and/or policy, CVSs vendor branches can import a version from another team (even if they dont use CVS), and then CVS can merge the changes from the vendor branch with the latest files if that is what is desired.
- Unreserved checkouts, allowing more than one developer to work on the same files at the same time.
- CVS provides a flexible modules database that provides a symbolic mapping of names to components of a larger software distribution. It applies names to collections of directories and files. A single command can manipulate the entire collection.
- CVS servers run on most unix variants, and clients for Windows NT/95, OS/2 and VMS are also available. CVS will also operate in what is sometimes called server mode against local repositories on Windows 95/NT.
Download (2.8MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1248 downloads
OSSP shiela 1.1.7
Shiela is an access control and logging facility for use with the Concurrent Versions System (CVS). more>>
OSSP shiela is an access control and logging facility for use with the Concurrent Versions System (CVS). OSSP shiela is intended to be hooked into CVSs processing through the $CVSROOT/CVSROOT/xxxinfo callbacks.
This way OSSP shiela provides access control on a path and branch basis to particular repository users and user groups. Additionally, repository operations are monitored, accumulated and logged.
The lookout of logging messages can be configured individually on a module path and branch basis and messages can be both saved to files and/or delivered by Email.
Enhancements:
- This release fixes an "arbitrary shell command execution" security bug caused by missing shell command argument escaping for user supplied arguments (CVE-2006-3633).
- The build environment was upgraded to GNU shtool 2.0.6 and GNU autoconf 2.60.
<<lessThis way OSSP shiela provides access control on a path and branch basis to particular repository users and user groups. Additionally, repository operations are monitored, accumulated and logged.
The lookout of logging messages can be configured individually on a module path and branch basis and messages can be both saved to files and/or delivered by Email.
Enhancements:
- This release fixes an "arbitrary shell command execution" security bug caused by missing shell command argument escaping for user supplied arguments (CVE-2006-3633).
- The build environment was upgraded to GNU shtool 2.0.6 and GNU autoconf 2.60.
Download (0.090MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1186 downloads
PicoLibre 0.9.16
PicoLibre project is a simple platform for hosting development projects. more>>
PicoLibre project is a simple platform for hosting development projects.
The aim of the PicoLibre project is to develop a collaborative platform for developing software that is easy to use and to learn, and so is best suited for an educational context.
PicoLibre groups several high level applications like phpGroupware, Sympa, and CVS.
Main features:
- a communication space for members of a project team (mailing-lists mainly)
- a document sharing space through CVS (so more oriented to software development).
Enhancements:
- phpGroupware 0.9.16 compliant code : should be deployable on current phpGroupware stable version (last version required absolete unmaintained phpGorupware version).
- as a consequence, Picolibre may be working over postgreSQL in addition to MySQL? (default, and only RDBMS we used for tests actuall)
- major rewrite of many of picolibres phpgroupware modules/applications :
- better adherence to phpGroupware coding standards
- object-oriented refactorisation : separation of code in order to adhere to MVC scheme
- better security
- enhanced maintainability
- production of Debian packages (recommanded distribution) :
- phpgroupware-picoforge : phpGroupware applications
- picolibre-backend : contains everything needed on the file-system side for CVSs jail (LDAP, SSH, chroot, etc.), and sympa
- minor functional improvements
<<lessThe aim of the PicoLibre project is to develop a collaborative platform for developing software that is easy to use and to learn, and so is best suited for an educational context.
PicoLibre groups several high level applications like phpGroupware, Sympa, and CVS.
Main features:
- a communication space for members of a project team (mailing-lists mainly)
- a document sharing space through CVS (so more oriented to software development).
Enhancements:
- phpGroupware 0.9.16 compliant code : should be deployable on current phpGroupware stable version (last version required absolete unmaintained phpGorupware version).
- as a consequence, Picolibre may be working over postgreSQL in addition to MySQL? (default, and only RDBMS we used for tests actuall)
- major rewrite of many of picolibres phpgroupware modules/applications :
- better adherence to phpGroupware coding standards
- object-oriented refactorisation : separation of code in order to adhere to MVC scheme
- better security
- enhanced maintainability
- production of Debian packages (recommanded distribution) :
- phpgroupware-picoforge : phpGroupware applications
- picolibre-backend : contains everything needed on the file-system side for CVSs jail (LDAP, SSH, chroot, etc.), and sympa
- minor functional improvements
Download (MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1108 downloads
Blame 1.3.1
Blame displays the last modification for each line in an RCS file. more>>
Blame displays the last modification for each line in an RCS file. Blame is the RCS equivalent of CVSs annotate command.
An annotated RCS file describes the revision and date in which each line was added to the file, and the author of each line.
<<lessAn annotated RCS file describes the revision and date in which each line was added to the file, and the author of each line.
Download (0.069MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1066 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above cvss 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