mirror of
https://github.com/nmap/nmap.git
synced 2025-12-26 17:39:03 +00:00
Fixes method for detecting spring endpoints
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user