Changeset 85
- Timestamp:
- 12/08/06 04:32:16 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/bug/42/etc/honeyclient_log.conf
r70 r85 59 59 ####################################################################### 60 60 61 log4perl.rootLogger= INFO, Screen61 log4perl.rootLogger=DEBUG, Screen 62 62 log4perl.appender.Screen=Log::Log4perl::Appender::Screen 63 63 # If you want colorized logging to the screen, enable this line, instead. 64 64 #log4perl.appender.Screen=Log::Log4perl::Appender::ScreenColoredLevels 65 65 log4perl.appender.Screen.stderr=0 66 log4perl.appender.Screen.Threshold= INFO66 log4perl.appender.Screen.Threshold=DEBUG 67 67 log4perl.appender.Screen.layout=Log::Log4perl::Layout::PatternLayout 68 68 log4perl.appender.Screen.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %5p [%M] (%F:%L) - %m%n honeyclient/branches/bug/42/lib/HoneyClient/Agent/Integrity/Registry.yp
r84 r85 50 50 # print "Directory: " . $_[1] . " - " . $pos . "\n"; 51 51 $group->{key} = $_[1]; 52 #print Dumper($group) . "\n";52 #print Dumper($group) . "\n"; 53 53 $group = { }; 54 54 } … … 57 57 # print "Directory: " . $_[1] . " - " . $pos . "\n"; 58 58 $group->{key} = $_[1]; 59 #print Dumper($group) . "\n";59 #print Dumper($group) . "\n"; 60 60 $group = { }; 61 61 } … … 122 122 123 123 # Identify KEY_NAME token. 124 if ($_[0]->YYData->{DATA} =~ m/\G\"(| .*[^\\]|.*(?:\\[^\\]|\\\\|[^\\][^\\]))\"(?==)/cg) {124 if ($_[0]->YYData->{DATA} =~ m/\G\"(|[^\\]|.*(?:\\[^\\]|\\\\|[^\\][^\\]))\"(?==)/cg) { 125 125 $inValue = 1; 126 126 return ("KEY_NAME", $1); … … 136 136 137 137 # Identify string KEY_VALUE token. 138 if ($_[0]->YYData->{DATA} =~ m/\G=\"(| .*?[^\\]|.*?(?:\\[^\\]|\\\\|[^\\][^\\]))\"\n/cgs) {138 if ($_[0]->YYData->{DATA} =~ m/\G=\"(|[^\\]|.*?(?:\\[^\\]|\\\\|[^\\][^\\]))\"\n/cgs) { 139 139 $inValue = 0; 140 140 return ("KEY_VALUE", $1);
