From 98c9005b42bf11d35d2da59923365a10e208c498 Mon Sep 17 00:00:00 2001 From: paulino Date: Wed, 7 Jun 2017 03:39:58 +0000 Subject: [PATCH] Fixes method for detecting spring endpoints --- nselib/data/http-fingerprints.lua | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nselib/data/http-fingerprints.lua b/nselib/data/http-fingerprints.lua index 3ea15bb8a..3efe35617 100644 --- a/nselib/data/http-fingerprints.lua +++ b/nselib/data/http-fingerprints.lua @@ -4686,55 +4686,55 @@ table.insert(fingerprints, { probes = { { path = '/actuator/', - method = 'HEAD' + method = 'GET' }, { path = '/auditevents/', - method = 'HEAD' + method = 'GET' }, { path = '/autoconfig/', - method = 'HEAD' + method = 'GET' }, { path = '/beans/', - method = 'HEAD' + method = 'GET' }, { path = '/configprops/', - method = 'HEAD' + method = 'GET' }, { path = '/env/', - method = 'HEAD' + method = 'GET' }, { path = '/flyway/', - method = 'HEAD' + method = 'GET' }, { path = '/health/', - method = 'HEAD' + method = 'GET' }, { path = '/loggers/', - method = 'HEAD' + method = 'GET' }, { path = '/liquibase/', - method = 'HEAD' + method = 'GET' }, { path = '/metrics/', - method = 'HEAD' + method = 'GET' }, { path = '/mappings/', - method = 'HEAD' + method = 'GET' }, { path = '/trace/', - method = 'HEAD' + method = 'GET' } }, matches = {