Skip to content

Commit

Permalink
Fixed error with LIEF 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed Feb 3, 2024
1 parent ca60fb7 commit b8141cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ classifiers = [
]
dependencies = [
"fonttools>=4.43.0",
"lief>=0.13.0",
"lief>=0.14.0",
"matplotlib>=3.7.4",
"numpy>=1.23.0",
"pillow>=10.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/bintropy/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.4
1.5.5
6 changes: 3 additions & 3 deletions src/bintropy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
# this may have an impact on typical values for other executable formats
THRESHOLDS = {
'default': (6.677, 7.199), # average entropy, highest entropy
lief.EXE_FORMATS.PE: (6.677, 7.199),
#TODO: get average and highest entropy values for lief.EXE_FORMATS.ELF
#TODO: get average and highest entropy values for lief.EXE_FORMATS.MACHO
lief.Binary.FORMATS.PE: (6.677, 7.199),
#TODO: get average and highest entropy values for lief.Binary.FORMATS.ELF
#TODO: get average and highest entropy values for lief.Binary.FORMATS.MACHO
}


Expand Down

0 comments on commit b8141cb

Please sign in to comment.