MyNmap 0.50-vm (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MyNmap 0.50-vm (Default branch)
# 1  
Old 09-01-2008
MyNmap 0.50-vm (Default branch)

MyNmap is a tool that uses Apache, PHP, MySQL, andPerl (designed to run on Linux, BSD, or other Unixclones) to display nmap network scan data forlarge networks. It is/has been used atorganizations to regularly scan thousands of hostswith positive results. It has the ability to showchanges over time (what is new or what hasdisappeared). It can display grids of what portsare available based on network, operating system,ports in common, etc. It can perform scheduledscans and export reports in CSV.License: GNU General Public License (GPL)Changes:
A VMware image is now available for using MyNmapwithout having to install it. The image containsan OpenBSD 4.3 based virtual machine with a fullyfunctional installation of MyNmap. It isconfigured to use DHCP, and has a Web serverrunning on port 80. The OS install is minimal, anddoes not include a GUI.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Session::Generate::ModUsertrack(3)			User Contributed Perl Documentation			Session::Generate::ModUsertrack(3)

NAME
Apache::Session::Generate::ModUsertrack - mod_usertrack for session ID generation SYNOPSIS
use Apache::Session::Flex; tie %session, 'Apache::Session::Flex', $id, { Store => 'MySQL', Lock => 'Null', Generate => 'ModUsertrack', Serialize => 'Storable', ModUsertrackCookieName => 'usertrack', # optional }; DESCRIPTION
Apache::Session::Generate::ModUsertrack enables you to use cookie tracked by mod_usertrack as session id for Apache::Session framework. This module fits well with long-term sessions, so better using RDBMS like MySQL for its storage. CONFIGURATION
This module accepts one extra configuration option. ModUsertrackCookieName Specifies cookie name used in mod_usertrack. "Apache" for default, so change this if you change it via "CookieName" directive in mod_usertrack. LIMITATION WITHOUT MOD_PERL This module first tries to fetch named cookie, but will in vain ONLY WHEN the HTTP request is the first one from specific client to the mod_usertrack enabled Apache web server. It is because if the request is for the first time, cookies are not yet baked on clients. If you run scripts under mod_perl, this module tries to steal (not yet baked) cookie from Apache request notes. See Apache for details. AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Apache::Session, Apache::Session::Flex, mod_usertrack perl v5.12.1 2007-03-19 Session::Generate::ModUsertrack(3)