Main > Free Download Search >

Free security scanner software for linux

security scanner

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1253
Adeos Filesystem Security Scanner 1.0

Adeos Filesystem Security Scanner 1.0


Adeos (named after the obscure Roman goddess of modesty) is an automated filesystem security scanner. more>>
Adeos (named after the obscure Roman goddess of modesty) is an automated filesystem security scanner. It recursively walks all mounted filesystems on the local system and attempts to identify common security concerns such as SUID and world-writeable files.

The output is available as text or html, with either output type formatted in either report or list style. Text is written to stdout and is redirected to a file, while HTML is written to a file named results.html in the local directory.


Adeos should compile and run on almost any UNIX-type system. It has been tested on Sun Solaris and Linux 2.x.

Adeos must be run from a non-priveleged user account on the system. Since a priveleged account, such as root has much greater priveleges than a standard user, the results would be meaningless.

Adeos supports three scan modes: normal, verbose, and paranoid. A brief description of what each looks for is below.

normal: Set-User-ID (SUID) files, Set-Group-ID (SGID) files, world-writeable files, and world-writeable directories. (Default mode)
verbose: Everything that a Normal scan looks for, "Sticky" files, unreadable directories, and inaccessible files.
paranoid: Everything Normal and Verbose scans look for, world-readable files, world-executable files, world-readable directories, and world-executable directories.

Adeos supports the following command-line options. Note that if you want to use multiple options you must specify each one individually.

-d Include dynamic directories (/dev /devices /proc /tmp) in the scan.
-h Place output in an HTML file named results.html
-r Format output as a collated report.
--help Display usage and help information.

A default Adeos run performs a Normal mode scan with list-formatted text output.
<<less
Download (0.029MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1200 downloads
Port Scanner 2.1

Port Scanner 2.1


Port Scanner provides a tool to check for open ports. more>>
Port Scanner provides a tool to check for open ports.

Port Scanner will try to connect on every port you define for a particular host. If a connection is made, it will try to read any data returned.

This product is intended for individuals to test their own equipment for weak security, and the author will take no responsibility if it is put to any other use.

Amazon sell many books on Security that will enhance your ability to keep your computer secure.

The Windows version has been withdrawn. Apologies for this, but it is too popular and uses my bandwidth up too quickly. If anyone want to host the binary for me, I will happily post a link here. It should also be possible to compile Version 2.1 for Windows.

Whats New in this release:

.(QT) Takes multiple port ranges.
.Minor bugfixes.

<<less
Download (0.013MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
991 downloads
Update Scanner 2.0.13

Update Scanner 2.0.13


Update Scanner provides an extension which monitors web pages for updates. more>>
Update Scanner provides an extension which monitors web pages for updates.

Right-click on any page, and select "Scan Page for Updates".

You can choose how often the site will be checked for changes, and whether to ignore minor updates.

When a change is detected, a notification window is displayed. Click the blue up-arrow on the bottom status bar to show the Update Scanner sidebar. Webpages that have been updated are shown in bold.

Double-click any item to open the website.

<<less
Download (0.038MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
832 downloads
Security::CVSS 0.3

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.

<<less
Download (0.005MB)
Added: 2007-04-11 License: Perl Artistic License Price:
928 downloads
onesixtyone SNMP scanner 0.3.2

onesixtyone SNMP scanner 0.3.2


onesixtyone is an efficient SNMP scanner which utilizes a sweep technique to achieve extreme performance. more>>
onesixtyone is an efficient SNMP scanner which utilizes a sweep technique to achieve extreme performance. The SNMP protocol is a stateless, datagram oriented protocol. An SNMP scanner is a program that sends SNMP requests to multiple IP addresses, trying different community strings and waiting for a reply. Unfortunately SNMP servers dont respond to requests with invalid community strings and the underlying UDP protocol does not reliably report closed UDP ports. This means that no response from the probed IP address can mean either of the following:
machine unreachable
SNMP server not running
invalid community string
the response datagram has not yet arrived
The approach taken by most SNMP scanners is to send the request, wait for n seconds and assume that the community string is invalid. If only 1 of every hundred scanned IP addresses responds to the SNMP request, the scanner will spend 99*n seconds waiting for replies that will never come.
Thats why traditional SNMP scanners are very inefficient.
onesixtyone takes a different approach to SNMP scanning. It takes advantage of the fact that SNMP is a connectionless protocol and sends all SNMP requests as fast as it can. Then the scanner waits for responses to come back and logs them, in a fashion similar to Nmap ping sweeps. By default onesixtyone waits for 10 milliseconds between sending packets, which is adequate for 100Mbs switched networks. The user can adjust this value via the -w command line option. If set to 0, the scanner will send packets as fast as the kernel would accept them, which may lead to packet drop.
Running onesixtyone on a class B network (switched 100Mbs with 1Gbs backbone) with -w 10 gives us a performance of 3 seconds per class C, with no dropped packets. All 65536 IP addresses were scanned in less than 13 minutes.
onesixtyone sends a request for the system.sysDescr.0 value, which is present on almost all SNMP enabled devices. This returned value gives us a description of the system software running on the device. Here is an excert of a log file:
192.168.120.92 [1234] HP ETHERNET MULTI-ENVIRONMENT,ROM A.05.03,JETDIRECT,JD24,EEPROM A.05.05
130.160.108.146 [public] Hardware: x86 Family 15 Model 0 Stepping 10 AT/AT
COMPATIBLE - Software: Windows 2000 Version 5.0 (Build 2195 Uniprocessor Free)
192.168.112.64 [public] Power Macintosh, hardware type 406; MacOS 9.0; OpenTransport 2.5.2
192.168.104.254 [public] Novell NetWare 4.11 August 22, 1996
192.168.112.83 [public] Macintosh Quadra 650, System Software 7.1
192.168.244.210 [public] RICOH Aficio 850 / RICOH Network Printer D model
192.168.240.39 [public] Cisco Systems WS-C5000
192.168.244.103 [public] HPJ3210A AdvanceStack 10BT Switching Hub Management Module, ROM A.01.02, EEPROM A.01.01, HW A.01.00
Enhancements:
- fixed version number and added a Makefile
<<less
Download (0.007MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1215 downloads
Aegis Virus Scanner 2.0.0

Aegis Virus Scanner 2.0.0


Aegis is a virus scanner for Linux, Unix and Windows with a simple and intuitive user interface. more>>
Aegis project is a virus scanner for Linux, Unix and Windows with a simple and intuitive user interface.

Aegis supports scanning of subdirectories, hidden files and .zip and .tar archive files, and drag-and-drop of files from the Nautilus file browser, or your Gnome desktop. When a virus is detected you can choose to delete, quarantine or rename the file.

<<less
Download (0.021MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1134 downloads
Ubuntu Security Notice Monitor 0.5

Ubuntu Security Notice Monitor 0.5


Ubuntu Security Notice Monitor is a karamba theme that displays the ten most recent USN report titles in a desktop widget. more>>
Ubuntu Security Notice Monitor is a karamba theme that displays the ten most recent USN report titles in a desktop widget.

Ubuntu Security Notice Monitor works by parsing the link text out of the USN page at http://www.ubuntulinux.org/usn using a Python backend.

Thanks goes to Richard "Ricardo" Szlachta for the graphics work.

<<less
Download (0.022MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1219 downloads
Astaro Security Linux 7.5 Beta

Astaro Security Linux 7.5 Beta


Astaro Security Linux is an award-winning, unique network security solution in an integrated and easy-to-use and manage package. more>>
Astaro Security Linux 7.5 Beta offers you a wonderful and extremely useful product which is an award-winning, unique network security solution in an integrated and easy-to-use and manage package. Astaro Security Linux includes a combination of the following security applications:
  • A Firewall with stateful packet inspection and application proxies guards Internet communications traffic in and out of the organization.
  • A Virtual Private Network (VPN) gateway assures secure communications with remote offices, road warriors, and telecommuters.
  • Anti-Virus defends computers from both email and web-bourne viruses.
  • Intrusion Protection detects and stops hostile probes and application-based attacks.
  • Spam Filtering eliminates the productivity drain of opening and deleting unsolicited emails.
  • Surf Protection (Content Filtering) and Spyware Protection improve productivity by blocking inappropriate web activities, provide full protection from user tracking threats and violation of privacy.

Major Features:

  1. Protects all types of networks Windows, Linux, Unix and others.
  2. Delivers comprehensive features at low cost maximizing your ROI (return on investment).
  3. Highly effective. Has won numerous industry awards. Beat Cisco and Checkpoint in InfoWorld magazine product review, Beat IBM and Computer Associates in Linux World for Best Security Application.
  4. Integrated management platform features an intuitive browser-based interface and one-step updates for rapid deployment and easy management.
  5. Can be installed in under 15 minutes or purchased pre-installed on security appliances.
  6. Can start with firewall, VPN and spam protection and add other security applications as needed, seamlessly.
  7. Runs as a dedicated application server on top of a hardened operating system, which relieves operating system management headaches.
  8. Runs on systems ranging from small devices up to large multi-processor systems utilizing gigabytes of memory.
  9. Redundant systems can be configured to provide high availability and automatic failover in case of hardware or network failures.
  10. Load balancing improves performance - traffic shaping can set priorities by network, service and protocol.
  11. Logging, automatic backup, and diagnostic tools support high reliability.
  12. Free online evaluation workshop to get you started.

Enhancements:

  1. Major New Things:
    • Intrusion Protection Performance
    • Uses new version of the IPS engine
    • Scales massively when used with Multi-Core CPU/Appliances
    • Real-Time Bandwidth Monitor
    • New Interface utilization bars on Dashboard (setup scale via QOS)
    • Click for detailed overview as to "whats happening in my network right now"
    • Import/Export Widget
    • Gives the ability to work with manual lists for many features/fields
    • Useful to import a large blacklist (for example) into the URL Blacklist
    • Can been seen in many user-input boxes in Web, Mail and more. (Green Up/Down Arrows)
    • Clone Objects
    • Easily duplicate existing objects for quick re-use.
    • Supported in most places for many objects (Definitions, Services, Certain Profiles/Actions)
    • Extended Network Security Reporting
    • Added Detailed Packet Filter/Firewall Reports
    • Added Detailed IM/P2P Reports
    • Reputation Support for Web Security
    • Allows use of the trustedsource.org reputation for Web Filtering
    • Documentation coming, for now visit their site/FAQ for more info on reputations
    • DHCP Improvements
    • Automatically map a current lease to a static assignment
    • Limit DHCP leases to those with static assignments only
    • Configurable DHCP lease time
    • Servers retain configuration when enabled/disabled
    • Multicast Routing Daemon
    • PIM-SM Routing support
    • More documentation on this implementation to come. Experiment with it and if it solves your needs.
  2. Other New Things:
    • Windows SSL VPN Upgraded - New Client which supports X64 and many other options (download again via the UserPortal)
    • Improved HTTP Caching - Increases hit/usage rates and makes the cache more effective.
    • Quarantine/UserPortal Usability - Adds navigation to the bottom (supplementing the existing controls at the top), large amounts (250-1000) of displayed items per page, and sorting by subject line.
    • Default Definition for "Internet" - Allows to specify "Internet" as an object which will exclude internal network(s) to aid policy creation (0.0.0.0/0 on Gateway interface)
    • Customizable Shortcuts - Change the default Ctrl assignments to fit your preference
    • Improved Definition/Services Sidebar - Mouseover now instantly shows full name and extended info to aid identifying desired object for drag n drop.
    • User List shows static IPs - if assigned/configured (no need to edit in order to view)
    • Live Log Negation - use to filter live logs to not show lines that match "-" entries i.e. -test to remove lines containing "test"
    • Console/SSH Logins Trigger a notification - provides admin the needed insight when accessed.
    • Instant Email Backup - Button for every created backup file which allows it to be sent immediately via email to configured addresses
    • Custom text for notifications - Allows easier identification of which installation is sending the message. Especially useful if managing multiple sites using notifiers.
    • Test NTP Sync - Button to immediately poll the configured NTP server
    • Automatic Backup before Up2Date install
    • Configurable Default for Lists - Allows for the amount of items per page (Packet Filter Rules, or anywhere there is a number amounts drop down) to have a larger default view
    • Cluster/HA Serial Number View - Information on connected units made easier
    • Schedule Firmware Installation - When an Up2Date for Firmware is available, you can schedule it to auto-install at a certain time (not a recurring setting)
    • WebAdmin Network Section Split - Now two sections; "Network" and "Network Services" for usability.
    • Search Boxes Retain Data - No need to re-enter query when returning from a drill down/result click.
    • System Restart Reason - Allows logging of "why was system restarted" in the notification
    • Group Tool tips for Members - Easily discern Network/Service Group members without having to edit in order to view
    • Reporting Exclusions - Used to remove unwanted entries from various reports (such as Google-analytics from Web Security tables
    • Log Flag for NAT Rules - Similar to packet filter, tells you which NAT rule was matched as part of traffic handling
    • Masquerading for Additional IP Addresses - Allows the use of Masquerading (vs. just SNAT) for additional IPs bound to an interface
    • Support for Multiple Authentication Servers - The authentication server section has been redesigned to support fallback/failover in an easier format, with many usability improvements
    • SNMP MIB - Downloadable via the SNMP section of WebAdmin
    • Up2date Status Reworked - Clarifies the current status of a Firmware Up2date to avoid confusion regarding the availability, download progress etc...of an issued Up2date.
    • Inline/Snap Report Links - Directly moves the Admin to the relevant details report when browsing the embedded daily reports located throughout WebAdmin
    • Global POP3 Sender Blacklist - Quarantined as "other" in the QM/EUP
    • Dashboard RSS Feed - Provides visibility to select Astaro-issued items via WebAdmin
    • Other magic features, enhancements, and usability improvements
<<less
Added: 2009-05-30 License: Free for non-commerc... Price: USD290.00
13 downloads
 
Other version of Astaro Security Linux
Astaro Security Linux 7.404Astaro Security Linux 7.404 is an integrated and easy-to-use package of ... -winning, unique network security solution in. Astaro Security Linux includes a combination
Price: USD290.00
License:Free for non-commerc...
Download
1 downloads
Added: 2009-07-09
Astaro Security Linux 6.313security solution in an integrated and easy-to-use and manage package. award-winning, unique network security solution in an integrated and easy-to-use and manage
Price: USD290.00
License:Free for non
Download
1 downloads
Added: 2008-04-06
Astaro Security Linux 6.311Astaro Security Linux is an award-winning, unique network security solution in an integrated ... Astaro Security Linux is an award-winning, unique network security solution in an integrated
Price: $290
License:Free for non-commercial use
Download (MB)
818 downloads
Added: 2007-08-01
Astaro Security Linux 5.210Astaro Security Linux is an award-winning, unique network security solution in an integrated ... under 15 minutes or purchased pre-installed on security appliances. - Can start with firewall
Price: $290
License:Free for non-commercial use
Download (270MB)
1356 downloads
Added: 2006-02-09
Multi Purpose Scanner 0.03

Multi Purpose Scanner 0.03


Multi Purpose Scanner is a simple scanner written in C that starts a number of child processes. more>>
Multi Purpose Scanner is a simple scanner written in C that starts a number of child processes, connects to a list of IP addresses, and logs a certain number of characters to standard out or a file.
Low band use is one consecuence of a single connection per child that recieve an only defined num of characters.
Main features:
- $ mpscan -e -p 25 -t 15 -r 100 -T 20 -R 192.168.1.0-10
- Fast mp-scan 0.04-testing ...
- Total ip: 11
- 11/11 91% 192.168.1.10
- Generated 11 ip in 0.199 seconds
- Ip range parsed... 11 ip found
- Scan on 25 started...
- 0:192.168.1.0 -> Network is unreachable
- 3:192.168.1.3 -> Connection refused
- 2:192.168.1.2 -> Connection refused
- 1: 192.168.1.1 -> 220 zeus.olimpo.hm ESMTP Postfix (Debian/GNU)
- 6:192.168.1.6 -> No route to host
- 5:192.168.1.5 -> connected but no data retrived within 7 sec
- 4:192.168.1.4 -> No route to host
- 8:192.168.1.8 -> connect timeout after 15
- 7:192.168.1.7 -> No route to host
- 9:192.168.1.9 -> No route to host
- 10:192.168.1.10 -> No route to host
- Waiting for child dead...
- Scanned 10 ip in 3.14821 seconds
- Scan ended... enjoy the result
Enhancements:
- added T and I option,
- added changelog,
- added debian rules,
- added man page,
- Makefile created.
<<less
Download (0.007MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1210 downloads
TCP port scanner 1.0.4

TCP port scanner 1.0.4


TCP port scanner is a network scanner for Linux. more>>
TCP port scanner is a network scanner for Linux.

Installation:

1. Install - become root and gunzip/tar tcpscan-X-Y-Z.tar.gz.
2. Type ./confugure , make
3. Type install
4. Enjoy and try type tcpscan localhost
5. To get help - run tcpscan without parametres.

Usage:

tcpscan [-f] [hostname || IP_address]
tcpscan [-f] [first_IP_address] [last_IP_address]
<<less
Download (0.060MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1299 downloads
Checkpoint Commander 6.1.0

Checkpoint Commander 6.1.0


Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool. more>>
Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool.
Checkpoint Commander project includes optional archive encryption using AES (AES-CBC-HMAC-SHA1).

<<less
Download (5.1MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
813 downloads
Qmail-Scanner 2.00

Qmail-Scanner 2.00


Qmail-Scanner is an add-on that enables a Qmail email server to scan gatewayed email for certain characteristics. more>> <<less
Download (0.76MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1302 downloads
XML Security Library 1.2.10

XML Security Library 1.2.10


XML Security Library is a C library based on LibXML2. more>>
XML Security Library is a C library based on LibXML2.
The library supports major XML security standards:
- XML Signature
- XML Encryption
- Canonical XML (was included in LibXML2)
- Exclusive Canonical XML (was included in LibXML2)
XML Security Library is released under the MIT Licence see the Copyright file in the distribution for details.
<<less
Download (1.6MB)
Added: 2006-06-13 License: MIT/X Consortium License Price:
1228 downloads
Luke Macken Security LiveCD

Luke Macken Security LiveCD


Luke Macken Security LiveCD provides a fully functional livecd based on Fedora for use in security auditing, forensics research. more>>
Luke Macken Security LiveCD provides a fully functional livecd based on Fedora for use in security auditing, forensics research, and penetration testing.
Main features:
- All of the security features and tools Fedora has to offer
- Features from the FedoraLiveCD
- Ability to install directly to hard drive
Spinning your own
# yum install mercurial livecd-tools
$ hg clone http://hg.lewk.org/security-livecd
# livecd-creator --config security-livecd/fedora-security-livecd.ks --fslabel=Fedora-7-Security-LiveCD
Making changes to the LiveCD is as simple as modifying the fedora-security-livecd.ks configuration file.
<<less
Download (MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
813 downloads
AntiVirus Scanner 3.2.1

AntiVirus Scanner 3.2.1


AntiVirus Scanner is an anti-virus scanner for Endeavour Mark II that uses the ClamAV library (libclamav). more>>
AntiVirus Scanner is an anti-virus scanner for Endeavour Mark II that uses the ClamAV library (libclamav).

AntiVirus Scanner allows you to create a list of scan items for frequently scanned locations and features easy virus database updating, all in a simple GUI environment.

<<less
Download (0.50MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
843 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5