Ensure massdns output is lower case
For some reason some server output part of their response as upper case. This fails the reading process as it's designed to only work on lower case for performance reasons.
This commit is contained in:
		
							parent
							
								
									883942ba55
								
							
						
					
					
						commit
						095e51fad9
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -184,8 +184,8 @@ class MassDnsParser(Parser): | |||
|                         select, | ||||
|                         write, | ||||
|                         timestamp, | ||||
|                         split[0][:name_offset], | ||||
|                         split[2][:value_offset], | ||||
|                         split[0][:name_offset].lower(), | ||||
|                         split[2][:value_offset].lower(), | ||||
|                     ) | ||||
|                     self.register(record) | ||||
|                     self.prof.enter_step('parse_massdns') | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue