We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've noticed that the same packet is defined twice in the s7-enumerate.nse script.
s7-enumerate.nse
-- setup the Read SZL information packet local Read_SZL = bin.pack("H", "0300002102f080320700000000000800080001120411440100ff09000400110001") -- setup the first SZL request (gather the basic hardware and version number) local first_SZL_Request = bin.pack("H", "0300002102f080320700000000000800080001120411440100ff09000400110001") -- setup the second SZL request
variable Read_SZL is the same as first_SZL_Request. Maybe the script code is easier to read with only one local variable.
Read_SZL
first_SZL_Request
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've noticed that the same packet is defined twice in the
s7-enumerate.nse
script.variable
Read_SZL
is the same asfirst_SZL_Request
. Maybe the script code is easier to read with only one local variable.The text was updated successfully, but these errors were encountered: