We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a105db4 commit 721cf41Copy full SHA for 721cf41
modules/auxiliary/scanner/telnet/lantronix_telnet_password.rb
@@ -84,7 +84,7 @@ def parse_reply(pkt)
84
setup_record = pkt[0]
85
86
# If response is a setup record, extract password bytes 13-16
87
- if setup_record[3].ord == 0xF9
+ if setup_record[3] and setup_record[3].ord == 0xF9
88
return setup_record[12,4]
89
else
90
return nil
0 commit comments