mirror of
https://github.com/nmap/nmap.git
synced 2025-12-11 18:29:03 +00:00
Add Drupal to known apps. Closes #555
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o [NSE][GH#555] Add Drupal to the set of web apps brute forced by
|
||||||
|
http-form-brute. [Nima Ghotbi]
|
||||||
|
|
||||||
o [GH#350] Fix an assertion failure due to floating point error in equality
|
o [GH#350] Fix an assertion failure due to floating point error in equality
|
||||||
comparison, which triggered mainly on OpenBSD:
|
comparison, which triggered mainly on OpenBSD:
|
||||||
assertion "diff <= interval" failed: file "timing.cc", line 440
|
assertion "diff <= interval" failed: file "timing.cc", line 440
|
||||||
|
|||||||
@@ -135,6 +135,16 @@ local known_apps = {
|
|||||||
passvar = "password",
|
passvar = "password",
|
||||||
onsuccess = "Set%-Cookie:%s*sessionid=",
|
onsuccess = "Set%-Cookie:%s*sessionid=",
|
||||||
},
|
},
|
||||||
|
drupal = {
|
||||||
|
match = {
|
||||||
|
action = "user$",
|
||||||
|
id = "user%-login",
|
||||||
|
},
|
||||||
|
uservar = "name",
|
||||||
|
passvar = "pass",
|
||||||
|
onsuccess = "Location: .+user/%d",
|
||||||
|
sessioncookies = false,
|
||||||
|
},
|
||||||
mediawiki = {
|
mediawiki = {
|
||||||
match = {
|
match = {
|
||||||
action = "action=submitlogin"
|
action = "action=submitlogin"
|
||||||
|
|||||||
Reference in New Issue
Block a user