Skip to content

Commit

Permalink
Use consts instead of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ostorlab committed Nov 13, 2023
1 parent 952371d commit 370104c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions agent/exploits/cve_2023_27997.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

from agent import definitions

DEFAULT_TIMEOUT = 90
REQUESTS_PER_GROUP = 400

VULNERABILITY_TITLE = "A heap-based buffer overflow vulnerability in FortiOS"
VULNERABILITY_REFERENCE = "CVE-2023-27997"
Expand All @@ -26,6 +24,9 @@
"via specifically crafted requests."
)

DEFAULT_TIMEOUT = 90
REQUESTS_PER_GROUP = 400


def _gen_enc_hdr(salt: bytes, l: int) -> str:
magic = b"GCC is the GNU Compiler Collection."
Expand Down

0 comments on commit 370104c

Please sign in to comment.