Skip to content

Commit 14ed60e

Browse files
authored
Fix msftidy warning
1 parent 62bcc95 commit 14ed60e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/exploits/linux/http/netgear_dnslookup_cmd_exec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def check
6767
model = data[/#{marker_one}(.*?)#{marker_two}/m, 1]
6868
vprint_status("Router is a NETGEAR router (#{model})")
6969
model_numbers = ['DGN2200v1', 'DGN2200v2', 'DGN2200v3', 'DGN2200v4']
70-
if model_numbers.include?(model)
70+
if model_numbers.include?(model)
7171
print_good("Router may be vulnerable (NETGEAR #{model})")
7272
return CheckCode::Detected
7373
else

0 commit comments

Comments
 (0)