Skip to content

Commit 3da4517

Browse files
committed
Fix potential case issue
Even though the options were getting put back in a datastore, the original case could still be lost and that would be bad.
1 parent a808c9f commit 3da4517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/post/multi/recon/local_exploit_suggester.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def is_session_type_compat?(mod)
8888

8989

9090
def set_module_options(mod)
91-
self.datastore.each_pair do |k,v|
91+
self.datastore.each do |k,v|
9292
mod.datastore[k] = v
9393
end
9494
if !mod.datastore['SESSION'] && session.present?

0 commit comments

Comments
 (0)