Main > Free Download Search >

Free real spy monitor software for linux

real spy monitor

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2136
dotDefender Monitor for Apache 3.84

dotDefender Monitor for Apache 3.84


dotDefender Monitor for Apache is the only way to know who is attacking your web site in real time. Residing on the server as webserver plug-in, dotDefender can be installed and implemented in minutes without influence on traffic or network archite more>> <<less
Download (17.17MB)
Added: 2009-04-10 License: Freeware Price:
196 downloads
dotDefender Monitor for Apache Linux 3.84

dotDefender Monitor for Apache Linux 3.84


dotDefender Monitor for Apache is the only way to know who is attacking your web site in real time. Residing on the server as webserver plug-in, dotDefender can be installed and implemented in minutes without influence on traffic or network archite more>>
dotDefender Monitor for Apache Linux 3.84 is a powerful tool which monitors HTTP traffic in real time to detect attacks against your website and internal applications. dotDefender Monitor allows you to identify suspicious events in web traffic and achieve a better understanding of the potential threat to your website and corporate data.
dotDefender Monitor inspects the actual HTTP/HTTPS requests for suspicious patterns that may indicate an attack, regardless of their source URL. This includes requests in content such as HTML, SOAP and XML.
  1. Immediately identify web application attacks.
  2. Identify sources of insider attacks.
  3. Receive real-time information about attempts to attack websites and internal applications
  4. View detailed statistics about attackers and attack attempts
  5. Receive automatic updates for detecting new threats
  6. Gain insight into your web application security posture

Major Features:

  1. Installation: ISAPI filter for IIS & a module for Apache
  2. Configuration possibility
  3. Comprehensive Logging
  4. Central Management
  5. Applicure Support

Requirements: Requires Apache Server

WareSeeker Editor

<<less
Download (17.17MB)
Added: 2009-04-03 License: Freeware Price:
204 downloads
GroundWork Monitor Community Edition 5.3.0 GA

GroundWork Monitor Community Edition 5.3.0 GA


GroundWork Monitor Community Edition offers you an ideal IT monitoring solution to maintain network visibility and control. more>> <<less
Added: 2009-02-11 License: GPL Price: FREE
1 downloads
Linux Kernel Monitor 0.3 Alpha

Linux Kernel Monitor 0.3 Alpha


Linux Kernel Monitor is a tool for monitoring and managing linuxs kernel. more>>
Linux Kernel Monitor is a tool for monitoring and managing linuxs kernel. It has been developed for GNOME, using Glib and Gtk libraries in C language.
lkmonitor tries to offer detailed information of the characteristics of the system, as type of cpu, state of the memory or the file system registered in kernel.
lkmonitor is an open source project with information about the source code and software architecture to make easy the development of new characteristics.
Enhancements:
- IO information, kernel information, networking info, processes specific information, filesystems, modules, etc.
<<less
Download (0.084MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
816 downloads
Header Spy 1.2.2

Header Spy 1.2.2


Header Spy is an extension which shows HTTP headers on statusbar. more>>
Header Spy is an extension which shows HTTP headers on statusbar.
Main features:
- Up to 5 statusbar panels;
- Request and response headers;
- Custom headers;
- Tooltip headers;
- Menu with headers for statusbar panels;
<<less
Download (0.016MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
515 downloads
PagingMon 0.1

PagingMon 0.1


PagingMon project is a Paging Activity Monitor. more>>
PagingMon project is a Paging Activity Monitor.
PagingMon project provides useful tools based on windows platform to monitor the page activity of the remote computer system in real time through UDP packages.
To use it, user needs configure the Linux site and the monitor site over Window platform. This user manual is organized by server and client site.
Our solution to the above problem consists of the following three functional modules:
- The (Linux) kernel plug-in, which records the paging activities;
- The tracing daemon, which send out the recorded paging activities; and
- The visualization tool, which normally sits in another box receiving the record and displaying it in real time.
We hope that our design would incur little interference to the operating system we are monitoring, such that the data we gain reflects the (nearly) real situation.
<<less
Download (5.0MB)
Added: 2007-07-17 License: BSD License Price:
830 downloads
Skipole Network Monitor 0.4

Skipole Network Monitor 0.4


Skipole Network Monitor project is a simple network monitor with built in web server. more>>
Skipole Network Monitor project is a simple network monitor with built in web server.

It allows the user to input host IP addresses, it then pings these hosts every five minutes and displays their status via a built-in web server, on port 8000.

So calling http://your_pc_address:8000 will display pages showing green, yellow or red host or group symbols.

Each host is pinged four times every five minutes, and symbols are displayed as:

green : if three or four pings are successfull
yellow : if only one or two are successfull
red : if all four fail

As well as hosts, group symbols are displayed, and can be opened to show hosts, or sub-groups nested within. The operator can create groups, and sub-groups via the gui.

<<less
Download (0.22MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
837 downloads
GroundWork Monitor Open Source 5.1.0-2 (Bootable CD)

GroundWork Monitor Open Source 5.1.0-2 (Bootable CD)


GroundWork Monitor Open Source is a complete availability monitoring solution. more>>
GroundWork Monitor Open Source is a complete availability monitoring solution that ensures IT infrastructure uptime while identifying issues before they become real problems.

Unifies best-of-breed open source tools - Nagios*, Nmap, SNMP TT, PHP, Apache, MySQL and more — through PHP/AJAX-based components and an integrated user interface to deliver the extensible functionality you require.
<<less
Download (627MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
849 downloads
Devel::Monitor 0.9.0.7

Devel::Monitor 0.9.0.7


Devel::Monitor is a Perl module that can monitor your variables/objects for memory leaks. more>>
Devel::Monitor is a Perl module that can monitor your variables/objects for memory leaks.

You have memory leaks, and you want to remove it... You can use this tool to help you find which variables/objects that are not destroyed when they should be, and thereafter, you can visualise exactly where is the circular reference for some specific variables/objects.

WHAT IT CANT DO

Even if your modules are memory leak free, it doesnt mean that external modules that you are using dont have it. So, before running your application on mod_perl, you should be sure that EVERY modules are ok. (In particular those perl extensions calling C++ code)

SYNOPSIS

use Devel::Monitor qw(:all);

#-----------------------------------------------------------------------------
# Monitor scalars, arrays, hashes, references, constants
#-----------------------------------------------------------------------------
my ($a,$b) = (Foo::Bar->new(), Foo::Bar->new());
my ($c, @d, %e);
use constant F => [1,2];
monitor(name for a => $a,
name for b => $b,
name for c => $c,
name for d => @d,
name for e => %e,
name for F => &F); #NOTE : Dont add parentheses to the end of the constant (&F())

#-----------------------------------------------------------------------------
# Print circular references
#-----------------------------------------------------------------------------
# NOTE : You cannot use print_circular_ref on a monitored/tied variable
# (See "We cannot use tied objects references because it reuse memory space" doc)
print_circular_ref($a);
print_circular_ref($b);
print_circular_ref($c);
print_circular_ref(@d);
print_circular_ref(%e);
print_circular_ref(&F); #NOTE : Dont add parentheses to the end of the constant (&F())

USAGE : monitor

Example with a circular reference
+----------------------+
| Code |
+----------------------+
{
my @a;
monitor(a => @a);
$a[0] = @a; #Add a circular reference
print STDERR "Leaving scopen";
}
print STDERR "Scope leftn";

+----------------------+
| Output |
+----------------------+
MONITOR ARRAY a
Leaving scope
Scope left
DESTROY ARRAY a

+----------------------+
| Meaning |
+----------------------+
The line "DESTROY ARRAY a" should be between scope prints.
@a were deleted on program exit.

Example without a circular reference

+----------------------+
| Code |
+----------------------+
{
my @a;
monitor(a => @a);
print STDERR "Leaving scopen";
}
print STDERR "Scope leftn";

+----------------------+
| Output |
+----------------------+
MONITOR ARRAY a
Leaving scope
DESTROY ARRAY a
Scope left

+----------------------+
| Meaning |
+----------------------+
Everything is ok

Now that you know there is a circular reference, you can track it down using the print_circular_ref method

<<less
Download (0.016MB)
Added: 2007-06-28 License: Perl Artistic License Price:
848 downloads
GNU-Monitor 0.0.13

GNU-Monitor 0.0.13


GNU-Monitor is a transactional monitor that allows client/server applications to be developed with minimal effort. more>>
GNU-Monitor is a transactional monitor that allows client/server applications to be developed with minimal effort.
GNU-Monitor project consists of transaction routing modules that ensure data integrity and recovery on abnormal termination.
Enhancements:
- New services .get_server_list and .get_service_list to get configuration info using the gm_cfgview tool.
- A new service .log-level to dynamically change levels of information on log files.
- A final solution for some transaction bugs.
<<less
Download (0.40MB)
Added: 2007-06-20 License: LGPL (GNU Lesser General Public License) Price:
857 downloads
GroundWork Monitor Open Source 5.1.0-4 stable (VMWare Appliance)

GroundWork Monitor Open Source 5.1.0-4 stable (VMWare Appliance)


GroundWork Monitor Open Source is a complete availability monitoring solution. more>>
GroundWork Monitor Open Source is a complete availability monitoring solution that ensures IT infrastructure uptime while identifying issues before they become real problems.

Unifies best-of-breed open source tools - Nagios*, Nmap, SNMP TT, PHP, Apache, MySQL and more — through PHP/AJAX-based components and an integrated user interface to deliver the extensible functionality you require.
<<less
Download (1500MB)
Added: 2007-05-23 License: GPL (GNU General Public License) Price:
909 downloads
Blitzed Open Proxy Monitor 3.1.3

Blitzed Open Proxy Monitor 3.1.3


Blitzed Open Proxy Monitor or BOPM, is an open source open proxy monitor. more>>
Blitzed Open Proxy Monitor or BOPM, is an open source open proxy monitor, designed for use with hybrid-based ircds, although it can be used with slight modification on any server which has the ability to show connects to opers and that supports KLINEs.
BOPM is known to work without modification on the following ircds:
- Bahamut (tested with 1.4.28, 1.4.30)
- Hybrid (tested with 2.8/hybrid-5.3p8, ircd-hybrid-6.3 and ircd-hybrid-7)
- ircd-ratbox (tested with > 2.1.8)
- charybdis (tested with > 2.0.0)
- Unreal (tested with 3.1.2 and 3.2)
- Dancer (tested with 1.0.31)
- TR-IRCD
- IRCu
- Ultimate (tested with UltimateIRCd 2.8.8 and 3.0.0.b3) - please note, earlier versions of Ultimate IRCD are not supported
- LiquidIRCd (tested with 1.0.4)
- InspIRCd (known to work with 1.0 and 1.1 version branches - instructions are given here)
Please note that BOPM will not work with older versions of Unreal without modifying Unreal to send the clients IP address in a connection notice. Patches are also available for download. On the latest versions of Unreal this is no longer needed. Remember for all Unreal versions you must set the perform line correctly (documented in the config file).
How does it work?
When a client connects to the IRC server, BOPM scans the client for open proxies. It then determines whether they are really open by using them to connect back to the server.
How does BOPM improve on first generation scanners (wgmon, tcm, oomon)?
It extends them by adding support for SOCKS4, SOCKS5, WinGate, HTTP proxies, insecure Cisco routers, simultaneous connections, and a more scalable model (written in C). BOPM also has support for a DNS blacklist, similar to MAPS RBL+ or Visi RSL
BOPM is in use without issue on servers receiving over 400 connections per minute during normal real-world operation (as in, regular client load excluding bursts and attacks). That is 7 user connections per second, enough for even the largest of IRC servers.
Additionally, BOPM contains the ability to match hosts against a DNS blacklist such as DroneBL or your own custom list, it can also submit new proxies that are found via email if the list accepts them.
Enhancements:
- This version was fixed to work with GCC 4 and various other cleanups.
<<less
Download (0.80MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
902 downloads
CompTemp Monitor 0.9.6.1

CompTemp Monitor 0.9.6.1


Computer Temperature Monitor is a little applet for the GNOME desktop that shows the temperature of your computer CPU. more>>
Computer Temperature Monitor is a little applet for the GNOME desktop that shows the temperature of your computer CPU and disks on screen.

It also allows you to log temperatures to a file.

You can set alarms to notify you when a tempertature is reached.

Several monitors can be added to the panel to monitor different sensors. It is designed to look like CPU Frequency Gnome applet, so they match each other on panel.

It is released under the terms of the GNU General Public License.

This applet used to be called Laptop Temperature Monitor

<<less
Download (0.17MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
920 downloads
SNMP::Monitor 0.1012

SNMP::Monitor 0.1012


SNMP::Monitor is a Perl package for monitoring remote hosts via SNMP. more>>
SNMP::Monitor is a Perl package for monitoring remote hosts via SNMP.

SYNOPSIS

require SNMP::Monitor;

# Read a configuration file
my $config = SNMP::Monitor->Configuration("/etc/snmpmon/config");

# Create a new monitor
my $monitor = SNMP::Monitor->new($config);

# Start monitoring (endless loop, never returns)
$monitor->Loop();

The SNMP::Monitor module is a package for checking and watching arbitrary values via SNMP. Events can be triggered, Logging can be done, whatever you want.

The package is based on the SNMP package, but it is merely created for system administrators and not for programmers.

<<less
Download (0.030MB)
Added: 2007-04-19 License: Perl Artistic License Price:
927 downloads
Shell SYStem Monitor 0.2.4.3

Shell SYStem Monitor 0.2.4.3


Shell SYStem Monitor a basic console ncurses application for system monitoring. more>>
Shell SYStem Monitor a basic console ncurses application for system monitoring.
Shell SYStem Monitor will show things like CPU load, memory load, uptime, Ethernet load (bandwidth usage in KB/s), server time, and more.
Install code:
# cd ssysm
# make
(as root)
# make install
Uninstall code:
(as root)
# make uninstall
Enhancements:
- There was a bug which occurred when outgoing bandwidth exceeds 2GiB, in which the TX bandwidth stays at 0 and TX byte counter sticks to 2GiB.
- This has finally been fixed. However, the byte count still resets to 0 when the interface exceeds 4GiB.
<<less
Download (0.013MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5