[Netpass-devel] NetPass CHANGES,1.8,1.9 MANIFEST,1.50,1.51 install,1.22,1.23 todo,1.2,1.3
Brought to you by:
jeffmurphy
From: jeff m. <jef...@us...> - 2005-08-03 02:45:17
|
Update of /cvsroot/netpass/NetPass In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19022 Modified Files: CHANGES MANIFEST install todo Log Message: some bug fixes, resetport.pl re-write, appstarter completion, install/initd tweaks Index: CHANGES =================================================================== RCS file: /cvsroot/netpass/NetPass/CHANGES,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- CHANGES 31 Dec 2004 19:13:02 -0000 1.8 +++ CHANGES 3 Aug 2005 02:44:38 -0000 1.9 @@ -159,3 +159,22 @@ jcm added NetPass::Auth::LDAP, ..Auth::Unix and ..Auth::DB modules jcm moved NetPass::RADIUS to NetPass::Auth::Radius jcm moved doc/startup/* to install.d/init.d/* + +2005-08-01 + jcm admin UI over-haul. segment access by network/group + jcm client UI modifications. tie walk-thru messages to client's network + mtb snort integration + mtb netpass API + jcm moved config file into database + mtb migrated to mysql cluster + mtb service watcher (npsvc) + jcm macscan app + jcm appstarter app + jcm per-network/group policy settings + mtb basic incident tracking + jcm 'strikes' system + mtb lots of bugs created + jcm lots of bugs fixed + +2005-08-10 2.0 released + Index: todo =================================================================== RCS file: /cvsroot/netpass/NetPass/todo,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- todo 17 Mar 2005 17:38:37 -0000 1.2 +++ todo 3 Aug 2005 02:44:38 -0000 1.3 @@ -3,22 +3,11 @@ changes - when user comes back update sw/po and ip fields based on mac - stash sw/po in ssession so we dont have to re-search when - we re-validate - - Admin/Scan/index.mhtml - http:// - - tie QC into dhcp so that we can verify that the given IP is really currently associated with the corresponding MAC search by time range with calendar button on various forms - per-message/scantype quarantine/unquarantine? - - stats arp table iptables entries @@ -28,11 +17,6 @@ -nessusScans table -> convert timestamps to DATETIMEs - - - - tree search if no bsw, pick on at random @@ -43,16 +27,6 @@ if state is PQUAR we dont tear down the session. so if you set the reg to QUAR, instead of a login page, they get the "ready to rescan" page. -BUG - reg two hosts on the same port. set them both to quarantined - and they both get the multi_mac message and neither can rescan - to get out! - -BUG - OS field not recording in table.... - - - multi-root networsk (spauld/wilk/rich) Index: install =================================================================== RCS file: /cvsroot/netpass/NetPass/install,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- install 17 May 2005 15:13:14 -0000 1.22 +++ install 3 Aug 2005 02:44:38 -0000 1.23 @@ -336,7 +336,7 @@ lprint "copy $base/$cfg to /etc/$cfg, using netblocks=$netblocks\n"; if (-f "/etc/$cfg") { - lprint "hmm. /etc/$cfg already exists. we wont over-write it. abort.\n"; + lprint "hmm. /etc/$cfg already exists. We wont over-write it. We're going to skip\nthis section of the install.\n"; return; } @@ -354,7 +354,7 @@ "); - my $npserv = ask("Enter the IP addresses of all of you'r NetPass servers (a netblock is OK). + my $npserv = ask("Enter the IP addresses of all of your NetPass servers (a netblock is OK). We'll use this to permit MySQL traffic between those servers. Without this, MySQL cluster will not function. Enter the addresses on a single line, separated by spaces: @@ -1042,9 +1042,9 @@ ldie "cant open $cf for writing: $!" unless defined ($fh); foreach my $line (@orig) { if ($line =~ /redirect 302:http/) { - print "\t\tredirect 302:http://$sn/?url=%u\n"; + print $fh "\t\tredirect 302:http://$sn/?url=%u\n"; } else { - print $line; + print $fh $line; } } $fh->close; @@ -1279,7 +1279,7 @@ for (my $i=0 ; $i < $#$c ; $i++) { if ($c->[$i] =~ /$k/) { - splice(@$c, $i+1, 0, $l); + splice(@$c, $i, 1, $l); $i++; } } Index: MANIFEST =================================================================== RCS file: /cvsroot/netpass/NetPass/MANIFEST,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- MANIFEST 23 Jun 2005 20:19:54 -0000 1.50 +++ MANIFEST 3 Aug 2005 02:44:38 -0000 1.51 @@ -24,6 +24,7 @@ bin/proc_counter.pl bin/portmover.pl bin/npapid.pl +bin/npsvc.pl bin/resetport-restart.sh bin/ciconf.pl bin/rm_stale_cookies.pl @@ -34,6 +35,7 @@ bin/rogue-dhcp-detect.pl bin/npsubagent.pl bin/npurlfilter.pl +bin/update_nessus_plugins.sh doc/cron.monthly/mysql_binlog_rotate doc/logrotate.d/apache doc/logrotate.d/netpass @@ -70,6 +72,7 @@ doc/npinline-l3.txt etc/netpass-example.conf etc/oui.txt +etc/npsvc.conf install.d/logrotate.d/apache install.d/logrotate.d/netpass install.d/logrotate.d/snort @@ -153,6 +156,8 @@ www/components/Admin/FormNPNessus www/components/Admin/FormNPPolicy www/components/Admin/FormNPSnort +www/components/Admin/DisplaySideLinks +www/components/Admin/DialogBulkMovePort www/components/Client/BeginScan www/components/Client/GetInfo www/components/Client/Login @@ -198,6 +203,7 @@ www/htdocs/Admin/help.mhtml www/htdocs/Admin/chpwd.mhtml www/htdocs/Admin/auth.mhtml +www/htdocs/Admin/addsidelink.mhtml www/htdocs/Admin/cmd/lockcfg.mhtml www/htdocs/Admin/cmd/setresult.mhtml www/htdocs/Admin/cmd/getRadiusSecret.mhtml |