-
Notifications
You must be signed in to change notification settings - Fork 7
/
CVE-2024-3400.nse
52 lines (43 loc) · 1.5 KB
/
CVE-2024-3400.nse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
description = [[
Script para nmap, para detectar recurso web CVE-2024-3400 Palo Alto OS Command Injection
puertos TCP habituales web: 80,10443,5411,443,4433,8443,4443,444,9443,7443,1723,6443,8009,10000,55443,9000,8081,8880,8889,9001
]]
local http = require "http"
local shortport = require "shortport"
local vulns = require "vulns"
local stdnse = require "stdnse"
local string = require "string"
----
-- @antonio_taboada
-- nmap -p <port> --script cve-2024-3400.nse <target>
---
author = "hackingyseguridad.com"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = { "vuln" }
portrule = shortport.http
action = function(host, port)
local vuln = {
title = "Detecta recurso Web CVE-2024-3400 Palo Alto OS Command Injection ",
state = vulns.STATE.NOT_VULN,
description = [[
]],
IDS = {
CVE = "CVE-2024-3400"
},
references = {
'https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-3400',
},
dates = {
disclosure = { year = '2024', month = '04', day = '16' }
}
}
options = {header={}} options['header']['User-Agent'] = "Node.js"
local vuln_report = vulns.Report:new(SCRIPT_NAME, host, port)
local url = stdnse.get_script_args(SCRIPT_NAME..".url") or "/global-protect/login.esp"
local response = http.generic_request(host, port, "GET", "/global-protect/login.esp", options)
if response.status == 200 then
vuln.state = vulns.STATE.VULN
end
return vuln_report:make_output(vuln)
end
---- www.hackingyseguridad.coom ----