fixed error with single character variable

This commit is contained in:
n00bhaxor 2024-02-12 09:47:21 -05:00
parent 3203c7cb66
commit 58eba131a8
1 changed files with 6 additions and 6 deletions

View File

@ -44,14 +44,14 @@ class MetasploitModule < Msf::Auxiliary
)
end
def get_contents(t)
print_status('Check RSS tags feed for: ' + t)
def get_contents(tags)
print_status('Check RSS tags feed for: ' + tags)
# Tag needs to be lower case, so...
t = t.split('/')[0] + '/' + t.split('/')[1].downcase
tags = tags.split('/')[0] + '/' + tags.split('/')[1].downcase
res = send_request_cgi(
'uri' => normalize_uri(target_uri.path, t, '-', 'tags'),
'uri' => normalize_uri(target_uri.path, tags, '-', 'tags'),
'method' => 'GET', 'vars_get' => { 'format' => 'atom' }
)
@ -102,8 +102,8 @@ class MetasploitModule < Msf::Auxiliary
fail_with(Failure::UnexpectedReply, "#{peer} - Invalid credentials (response code: #{res.code})") unless res.code == 200
res.get_json_document.each do |entry|
t = entry['path_with_namespace']
get_contents(t)
tags = entry['path_with_namespace']
get_contents(tags)
end
else