dmiller
8d7a2bc004
Add clarifying parentheses to complex boolean statements as needed.
2019-04-13 21:42:56 +00:00
dmiller
71cc60d68c
Remove some unused requires
2018-08-27 22:00:13 +00:00
vinamra
7c833b933e
Adds Jenkins Server detection. Closes #969
2017-08-18 17:20:13 +00:00
rewanth
3218c0f216
Removes unused dependencies from all files in nselib folder.
2017-08-15 07:40:45 +00:00
vinamra
706fd7c130
Adds Express in http-devframework-fingerprints.lua Closes #790
2017-07-06 20:57:43 +00:00
dmiller
ca3d838b1b
Fix some globals in nselib/data/http-*.lua
2015-02-20 15:54:12 +00:00
sophron
52589ae6d1
[NSE] Added sanity check in data/http-devframework-fingerprints.lua
2014-11-02 11:49:56 +00:00
sophron
a4a648a56b
Added an entry to http-devframework-fingerprints that detects SPIP framework. Patch by Paul AMAR.
2014-03-02 17:38:57 +00:00
dmiller
ac5a89a8e1
Remove unused NSE library requires
...
for lib in nselib/*.lua*; do l=${lib#*/}; l=${l%.lua*}; find . -name \
\*.lua -o -name \*.nse | xargs grep -l "require .$l\>" | xargs grep \
-c "\<$l\." | grep ':0$' | awk -F: '{print "'$l'", $1}'; done
Did not remove calls to stdnse.silent_require since these can be used to
abort script execution if OpenSSL is not included, even if the script
does not directly call openssl.* (perhaps it uses comm.tryssl instead,
for instance).
Also did not remove require "strict", since that library is special and
modifies the environment.
2014-02-13 16:39:17 +00:00
dmiller
7dd47ec3a3
Re-indent the Lua files in nselib/data/
...
https://secwiki.org/w/Nmap/Code_Standards
2014-02-05 17:58:36 +00:00
dmiller
620f9fdb34
Remove trailing whitespace in lua files
...
Whitespace is not significant, so this should not be a problem.
https://secwiki.org/w/Nmap/Code_Standards
2014-01-23 21:51:58 +00:00
dmiller
db1d82ad1f
Fixed global assignments with nse_check_globals
...
All fixes made by hand. A couple real bugs/errors fixed, due to
copy-paste of code from other scripts without changing variable names.
2014-01-22 17:45:00 +00:00
dmiller
771a6a0793
Fix more Lua patterns with '-', see r32566
2013-12-19 20:34:46 +00:00
sophron
27f241e20f
[NSE] Added http-devframework (along with its fingerprints file) that tries to find out the technology behind the target website.
2013-09-05 19:31:40 +00:00