mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Adds interesting endpoints that reveal sensitive information in Spring applications
This commit is contained in:
parent
9f8b8863c5
commit
be40d55552
1 changed files with 84 additions and 0 deletions
|
|
@ -4681,6 +4681,90 @@ table.insert(fingerprints, {
|
|||
------------------------------------------------
|
||||
---- MANAGEMENT SOFTWARE ----
|
||||
------------------------------------------------
|
||||
table.insert(fingerprints, {
|
||||
category = 'management',
|
||||
probes = {
|
||||
{
|
||||
path = '/actuator/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/auditevents/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/autoconfig/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/beans/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/configprops/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/env/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/flyway/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/health/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/loggers/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/liquibase/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/metrics/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/mappings/',
|
||||
method = 'HEAD'
|
||||
},
|
||||
{
|
||||
path = '/trace/',
|
||||
method = 'HEAD'
|
||||
}
|
||||
},
|
||||
matches = {
|
||||
{
|
||||
output = 'Spring Boot Actuator endpoint'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category = 'management',
|
||||
probes = {
|
||||
{
|
||||
path = '/heapdump/',
|
||||
method = 'GET'
|
||||
},
|
||||
{
|
||||
path = '/jolokia/',
|
||||
method = 'GET'
|
||||
}
|
||||
},
|
||||
matches = {
|
||||
{
|
||||
output = 'Spring MVC Endpoint'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
table.insert(fingerprints, {
|
||||
category = 'management',
|
||||
probes = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue