Skip to content

Commit

Permalink
Fixed FCT MAX_DEOBF_LIMIT logging issue (#33)
Browse files Browse the repository at this point in the history
Signed-off-by: stickie <[email protected]>
  • Loading branch information
FieryIceStickie committed Mar 23, 2024
1 parent 49043aa commit d42235f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vipyr_deobf/deobfuscators/fct.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def deobf_fct(file: TextIO) -> bytes:
return marshalled_bytes
if not obf_bytes:
return marshalled_bytes
logging.warning('Reached byte deobfuscation limit of 100, ending now')
logging.warning(f'Reached byte deobfuscation limit of {MAX_DEOBF_LIMIT}, ending now')
raise DeobfuscationFailError(
marshalled_bytes = marshalled_bytes
)
Expand Down

0 comments on commit d42235f

Please sign in to comment.