Changeset 413
- Timestamp:
- 05/30/07 10:25:03 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/mbriggs-db/t/honeyclient_agent_integrity_registry.t
r176 r413 171 171 } 172 172 ], 173 'status' => 'changed',173 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED, 174 174 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 3', 175 175 }, 176 176 { 177 177 'entries' => [], 178 'status' => 'deleted',178 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_DELETED, 179 179 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 4', 180 180 }, … … 187 187 } 188 188 ], 189 'status' => 'changed',189 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED, 190 190 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 5', 191 191 }, … … 201 201 } 202 202 ], 203 'status' => 'added',203 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED, 204 204 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 6', 205 205 }, … … 212 212 } 213 213 ], 214 'status' => 'changed',214 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED, 215 215 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 6\\With\\Really\\Deep\\Nested\\Directory\\Structure', 216 216 }, … … 228 228 } 229 229 ], 230 'status' => 'changed',230 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_MODIFIED, 231 231 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 7', 232 232 }, … … 239 239 } 240 240 ], 241 'status' => 'deleted',241 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_DELETED, 242 242 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 8\\{00021492-0000-0000-C000-000000000046}', 243 243 }, … … 250 250 } 251 251 ], 252 'status' => 'added',252 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED, 253 253 'key_name' => 'HKEY_CURRENT_USER\\Testing Group 8\\{01021492-0000-0000-C000-000000000046}', 254 254 }, … … 261 261 } 262 262 ], 263 'status' => 'added',263 'status' => $HoneyClient::Agent::Integrity::Registry::KEY_ADDED, 264 264 'key_name' => 'HKEY_CURRENT_USER\\Tsting Group 9', 265 265 } honeyclient/branches/exp/mbriggs-db/t/honeyclient_manager_db.t
r173 r413 76 76 { 77 77 name => 'QuickTime Task', 78 new_val => '"C:\Program Files\QuickTime\qttask.exe" -atboottime'78 new_value => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 79 79 } 80 80 ] … … 166 166 { 167 167 name => 'QuickTime Task', 168 new_val => '"C:\Program Files\QuickTime\qttask.exe" -atboottime'168 new_value => '"C:\Program Files\QuickTime\qttask.exe" -atboottime' 169 169 } 170 170 ] … … 188 188 cmp_ok($hcdb->CheckFingerprint($exploit5,$scores),'>',0,"CheckFingerprint() Success"); 189 189 use Data::Dumper; $Data::Dumper::Indent = 1; 190 print 'Scores Debug: '.Dumper($scores)."\n";190 #print 'Scores Debug: '.Dumper($scores)."\n"; 191 191 192 192 is($hcdb->CheckFingerprint($exploit6,$scores),0,"CheckFingerprint() Fail"); 193 193 use Data::Dumper; $Data::Dumper::Indent = 1; 194 print 'Scores Debug: '.Dumper($scores)."\n";194 #print 'Scores Debug: '.Dumper($scores)."\n"; 195 195 } 196 196
