From 6e9bebdaf9c873e186366a127ec94e9a95a60398 Mon Sep 17 00:00:00 2001 From: Pedro Ribeiro Date: Wed, 8 Oct 2014 01:04:15 +0100 Subject: [PATCH] Fix noob mistake in assignment --- modules/auxiliary/gather/trackit_sql_domain_creds.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auxiliary/gather/trackit_sql_domain_creds.rb b/modules/auxiliary/gather/trackit_sql_domain_creds.rb index b005988bfb..89a8fede69 100644 --- a/modules/auxiliary/gather/trackit_sql_domain_creds.rb +++ b/modules/auxiliary/gather/trackit_sql_domain_creds.rb @@ -170,7 +170,7 @@ class Metasploit3 < Msf::Auxiliary if size == 255 # if we received 0xFF then there is no value for this str # set it to empty but not nil so that we don't look for it again - loot[str] == "" + loot[str] = "" next end loot[str] = packet_reply[index + str.length + 6, size]