Changeset 808
- Timestamp:
- 08/30/07 15:07:26 (1 year ago)
- Files:
-
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser.pm (modified) (3 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/FF.pm (modified) (3 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/IE.pm (modified) (3 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Filesystem.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.yp (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/DB.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager.pm (modified) (3 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/FW.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM/Clone.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/Config.pm (modified) (2 diffs)
- honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/SOAP.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent.pm
r791 r808 38 38 =head1 VERSION 39 39 40 0.9 840 0.99 41 41 42 42 =head1 SYNOPSIS … … 79 79 80 80 # Set our package version. 81 $VERSION = 0.9 8;81 $VERSION = 0.99; 82 82 83 83 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver.pm
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::Agent::Driver version 0.9 8.40 This documentation refers to HoneyClient::Agent::Driver version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 120 120 121 121 # Set our package version. 122 $VERSION = 0.9 8;122 $VERSION = 0.99; 123 123 124 124 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser.pm
r791 r808 40 40 =head1 VERSION 41 41 42 This documentation refers to HoneyClient::Agent::Driver::Browser version 0.9 8.42 This documentation refers to HoneyClient::Agent::Driver::Browser version 0.99. 43 43 44 44 =head1 SYNOPSIS … … 161 161 162 162 # Set our package version. 163 $VERSION = 0.9 8;163 $VERSION = 0.99; 164 164 165 165 # Define inherited modules. … … 1104 1104 1105 1105 # Check our internal relative links counter. 1106 if ($self->_remaining_number_of_relative_links_to_visit == 1) { 1106 if (($self->_remaining_number_of_relative_links_to_visit == 0) || 1107 ($self->_remaining_number_of_relative_links_to_visit == 1)) { 1107 1108 1108 1109 # XXX: Do we need this message in here? honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/FF.pm
r791 r808 41 41 =head1 VERSION 42 42 43 This documentation refers to HoneyClient::Agent::Driver::Browser::FF version 0.9 8.43 This documentation refers to HoneyClient::Agent::Driver::Browser::FF version 0.99. 44 44 45 45 =head1 SYNOPSIS … … 160 160 161 161 # Set our package version. 162 $VERSION = 0.9 8;162 $VERSION = 0.99; 163 163 164 164 # Define inherited modules. … … 461 461 # Sanity check. 462 462 if (!defined($status)) { 463 $LOG->error("Error: Unable to spawn a new browser - " . $^E . ".");464 Carp::croak "Error: Unable to spawn a new browser - " . $^E . ".\n";463 $LOG->error("Error: Unable to execute '" . $processExec . "'"); 464 Carp::croak "Error: Unable to execute '" . $processExec . "'\n"; 465 465 } 466 466 honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/IE.pm
r791 r808 41 41 =head1 VERSION 42 42 43 This documentation refers to HoneyClient::Agent::Driver::Browser::IE version 0.9 8.43 This documentation refers to HoneyClient::Agent::Driver::Browser::IE version 0.99. 44 44 45 45 =head1 SYNOPSIS … … 160 160 161 161 # Set our package version. 162 $VERSION = 0.9 8;162 $VERSION = 0.99; 163 163 164 164 # Define inherited modules. … … 438 438 # Sanity check. 439 439 if (!defined($status)) { 440 $LOG->error("Error: Unable to spawn a new browser - " . $^E . ".");441 Carp::croak "Error: Unable to spawn a new browser - " . $^E . ".\n";440 $LOG->error("Error: Unable to execute '" . $processExec . "'"); 441 Carp::croak "Error: Unable to execute '" . $processExec . "'\n"; 442 442 } 443 443 honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity.pm
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::Agent::Integrity version 0.9 8.40 This documentation refers to HoneyClient::Agent::Integrity version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 198 198 199 199 # Set our package version. 200 $VERSION = 0.9 8;200 $VERSION = 0.99; 201 201 202 202 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Filesystem.pm
r791 r808 37 37 =head1 VERSION 38 38 39 This documentation refers to HoneyClient::Agent::Integrity::Filesystem version 0.9 8.39 This documentation refers to HoneyClient::Agent::Integrity::Filesystem version 0.99. 40 40 41 41 =head1 SYNOPSIS … … 145 145 146 146 # Set our package version. 147 $VERSION = 0.9 8;147 $VERSION = 0.99; 148 148 149 149 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry.pm
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::Agent::Integrity::Registry version 0.9 8.40 This documentation refers to HoneyClient::Agent::Integrity::Registry version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 142 142 143 143 # Set our package version. 144 $VERSION = 0.9 8;144 $VERSION = 0.99; 145 145 146 146 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.pm
r791 r808 55 55 =head1 VERSION 56 56 57 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.9 8.57 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.99. 58 58 59 59 =head1 SYNOPSIS … … 133 133 134 134 # Set our package version. 135 $VERSION = 0.9 8;135 $VERSION = 0.99; 136 136 137 137 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.yp
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.9 8.40 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 116 116 117 117 # Set our package version. 118 $VERSION = 0.9 8;118 $VERSION = 0.99; 119 119 120 120 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/DB.pm
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::DB version 0.9 8.40 This documentation refers to HoneyClient::DB version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 356 356 our @EXPORT = qw(); 357 357 our @EXPORT_OK; 358 our $VERSION = 0.9 8;358 our $VERSION = 0.99; 359 359 360 360 my $database_version; # = $dbh->get_info( 18 ); # SQL_DBMS_VER honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager.pm
r791 r808 36 36 =head1 VERSION 37 37 38 This documentation refers to HoneyClient::Manager version 0.9 8.38 This documentation refers to HoneyClient::Manager version 0.99. 39 39 40 40 =head1 SYNOPSIS … … 73 73 74 74 # Set our package version. 75 $VERSION = 0.9 8;75 $VERSION = 0.99; 76 76 77 77 @ISA = qw(Exporter); … … 170 170 # Include DB Utility Library 171 171 # TODO: Include unit tests. 172 use HoneyClient::DB::Fingerprint;172 require HoneyClient::DB::Fingerprint; 173 173 } 174 174 honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/FW.pm
r791 r808 41 41 =head1 VERSION 42 42 43 This documentation refers to HoneyClient::Manager::FW version 0.9 8.43 This documentation refers to HoneyClient::Manager::FW version 0.99. 44 44 45 45 =head1 SYNOPSIS … … 315 315 316 316 # Set our package version. 317 $VERSION = 0.9 8;317 $VERSION = 0.99; 318 318 319 319 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM.pm
r791 r808 39 39 =head1 VERSION 40 40 41 This documentation refers to HoneyClient::Manager:VM version 0.9 8.41 This documentation refers to HoneyClient::Manager:VM version 0.99. 42 42 43 43 =head1 SYNOPSIS … … 320 320 321 321 # Set our package version. 322 $VERSION = 0.9 8;322 $VERSION = 0.99; 323 323 324 324 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM/Clone.pm
r791 r808 38 38 =head1 VERSION 39 39 40 This documentation refers to HoneyClient::Manager::VM::Clone version 0.9 8.40 This documentation refers to HoneyClient::Manager::VM::Clone version 0.99. 41 41 42 42 =head1 SYNOPSIS … … 125 125 126 126 # Set our package version. 127 $VERSION = 0.9 8;127 $VERSION = 0.99; 128 128 129 129 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/Config.pm
r791 r808 37 37 =head1 VERSION 38 38 39 This documentation refers to HoneyClient::Util::Config version 0.9 8.39 This documentation refers to HoneyClient::Util::Config version 0.99. 40 40 41 41 =head1 SYNOPSIS … … 96 96 97 97 # Set our package version. 98 $VERSION = 0.9 8;98 $VERSION = 0.99; 99 99 100 100 @ISA = qw(Exporter); honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/SOAP.pm
r791 r808 37 37 =head1 VERSION 38 38 39 This documentation refers to HoneyClient::Util::SOAP version 0.9 8.39 This documentation refers to HoneyClient::Util::SOAP version 0.99. 40 40 41 41 =head1 SYNOPSIS … … 130 130 131 131 # Set our package version. 132 $VERSION = 0.9 8;132 $VERSION = 0.99; 133 133 134 134 @ISA = qw(Exporter);
