nmap/nselib
dmiller 9450cb725a Avoid boolean tautologies of the form 'not x == y'
Lua operator 'not' has higher precedence than '==', so the statement

    not x == "something"

is equivalent to:

    (not x) == "something"

which will always be false, since the value of 'not x' will be either
'true' or 'false' and the string "something" is not the boolean 'true'
or 'false'. This is usually resolved by using the '~=' operator.
2016-05-23 04:30:06 +00:00
..
data Grab latest enterprise numbers assignments from IANA 2016-05-11 14:55:45 +00:00
afp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ajp.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
amqp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
anyconnect.lua Avoid boolean tautologies of the form 'not x == y' 2016-05-23 04:30:06 +00:00
asn1.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
base32.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
base64.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
bin.luadoc remove trailing whitepace from *.luadoc 2014-03-10 19:01:14 +00:00
bit.luadoc
bitcoin.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
bittorrent.lua Avoid boolean tautologies of the form 'not x == y' 2016-05-23 04:30:06 +00:00
bjnp.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
brute.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
cassandra.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
citrixxml.lua Replace host.ip, port.number with host, port 2015-02-18 14:38:42 +00:00
comm.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
creds.lua Document some script args in NSEdoc 2015-11-22 13:58:21 +00:00
cvs.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
datafiles.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
dhcp.lua reduce memory reallocs in dhcp.lua (string building, static tables) 2016-02-12 05:42:19 +00:00
dhcp6.lua nselib stdnse.print_debug -> stdnse.debug 2014-08-03 00:56:45 +00:00
dns.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
dnsbl.lua Remove ahbl.org blacklists after site shutdown 2015-06-03 03:28:36 +00:00
dnssd.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
drda.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
eap.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
eigrp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
formulas.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ftp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
giop.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
gps.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
http.lua Silence warnings about the new any_af request option 2016-03-16 05:47:57 +00:00
httpspider.lua Fix some typos 2014-08-23 21:35:32 +00:00
iax2.lua nselib stdnse.print_debug -> stdnse.debug 2014-08-03 00:56:45 +00:00
ike.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
imap.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
informix.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ipOps.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ipp.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
iscsi.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
isns.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
jdwp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
json.lua Remove an incorrect NSEdoc blurb: JSON Object uses all keys 2016-04-14 16:50:47 +00:00
ldap.lua Added support for LDAP over udp to ldap-rootdse.nse. 2016-04-09 21:33:26 +00:00
lfs.luadoc NSEdoc cleanup 2014-09-02 18:23:06 +00:00
listop.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
lpeg-utility.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
lpeg.luadoc Add NSEdoc stub for lpeg library 2015-11-17 04:58:56 +00:00
ls.lua Force numeric values to string to avoid assertion in tab.lua. Related #266 2016-03-13 20:29:10 +00:00
match.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
membase.lua Document some script args in NSEdoc 2015-11-22 13:58:21 +00:00
mobileme.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
mongodb.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
msrpc.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
msrpcperformance.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
msrpctypes.lua Replace chained concatenation reassignment with simple concatenation 2015-03-02 13:47:42 +00:00
mssql.lua Added SQL Server 2012 SP3 version number and updated SQL Server 2012 SP1 version from the original 4050 release that was pulled and replaced by 4100. 2016-04-02 18:24:39 +00:00
multicast.lua Alter output formatting of multicast.lua 2015-12-19 17:47:15 +00:00
mysql.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
natpmp.lua Re-indent some NSE libraries. 2014-02-03 19:47:34 +00:00
ncp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ndmp.lua Spelling fixes for Lua files 2014-02-19 04:15:46 +00:00
netbios.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
nmap.luadoc Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
nrpc.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
nsedebug.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
omp2.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
openssl.luadoc Add Miller-Rabin primality tests to NSE. Closes #190 2015-11-11 21:19:06 +00:00
ospf.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
packet.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
pcre.luadoc
pgsql.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
pop3.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
pppoe.lua Avoid a script crash when pppoe.Comm.recv returns failure without error message 2016-01-04 16:48:08 +00:00
proxy.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
rdp.lua Document an unknown field in ConnectionRequest for RDP 2016-02-05 22:53:43 +00:00
re.lua Add some missing NSEdoc params to re.lua 2014-07-31 19:18:04 +00:00
redis.lua Re-indent some NSE libraries. 2014-02-03 19:47:34 +00:00
rmi.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
rpc.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
rpcap.lua Spelling fixes for Lua files 2014-02-19 04:15:46 +00:00
rsync.lua Spelling fixes for Lua files 2014-02-19 04:15:46 +00:00
rtsp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
sasl.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
shortport.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
sip.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
slaxml.lua Document some script args in NSEdoc 2015-11-22 13:58:21 +00:00
smb.lua Change to smb-os-discovery to enable it to augment SMB version detection. Closes #348 2016-03-31 10:56:29 +00:00
smbauth.lua Extract optional OS version info from NTLM challenge message 2016-01-07 20:43:19 +00:00
smtp.lua Document some script args in NSEdoc 2015-11-22 13:58:21 +00:00
snmp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
socks.lua Spelling fixes for Lua files 2014-02-19 04:15:46 +00:00
srvloc.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ssh1.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
ssh2.lua Add dh group exchange support to ssh2.lua. Closes #341, Fixes #129 2016-03-21 22:04:42 +00:00
sslcert.lua VNC revamp and extension 2016-04-01 22:29:39 +00:00
stdnse.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
strbuf.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
strict.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
stun.lua Fix stun mode parameter, NSEdoc 2015-11-22 13:58:20 +00:00
tab.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
target.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
tftp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
tls.lua Deprecate RC4 ciphersuites 2016-05-02 13:55:16 +00:00
tns.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
unicode.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
unittest.lua Document some script args in NSEdoc 2015-11-22 13:58:21 +00:00
unpwdb.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
upnp.lua nselib stdnse.print_debug -> stdnse.debug 2014-08-03 00:56:45 +00:00
url.lua Replace chained concatenation reassignment with simple concatenation 2015-03-02 13:47:42 +00:00
versant.lua Remove unneeded requires 2015-02-28 12:43:59 +00:00
vnc.lua Clarify vnc handshake/login process and correctly send chosen security type 2016-04-04 04:47:37 +00:00
vulns.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
vuzedht.lua Replace chained concatenation reassignment with simple concatenation 2015-03-02 13:47:42 +00:00
wsdd.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00
xdmcp.lua Spelling fixes for Lua files 2014-02-19 04:15:46 +00:00
xmpp.lua Update http urls for nmap.org to https 2015-11-05 20:41:05 +00:00