Auto Yara

Edit an Auto YARA job

Update the generated YARA rule on an existing job with revised detection logic.

post/v1/auto-yara/jobs/edit

Request body

job_idstring required

The unique identifier of the job to edit.

yara_rule_strstring required

The new YARA rule string to update the job with.

Example request

{
  "yara_rule_str": "rule example_rule {\n  strings:\n    $a = \"malware\"\n  condition:\n    $a\n}\n"
}

Response

Successful Response

job_idstring required

The unique identifier of the edited job.

Changes

No recorded changes to this endpoint across all 1 revision of this API.