Skip to content

Commit

Permalink
Update pyproject.toml to fix issue MobSF#2286
Browse files Browse the repository at this point in the history
Fixed a bug in oscrypto where the regex would fail to recognize the right version of SSL due to insufficient check on multiple digits. 
However the owner of the repo does not plan to make a new release soon due to time constraints. 
See -> wbond/oscrypto#78 

This can be fixed by using a specific version from git pointing to the right commit. 
Hence this change in the pyproject.toml file.
  • Loading branch information
Sp00kyB00k authored Nov 16, 2023
1 parent 4685d8e commit 2a1ef78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ gunicorn = {version = ">=20.0.4", markers = "sys_platform != 'win32'"}
psutil = ">=5.8.0"
shelljob = ">=0.6.2"
asn1crypto = ">=1.4.0"
oscrypto = ">=1.2.1"
oscrypto = "{ git = "https://github.com/wbond/oscrypto.git", rev = "1547f53" }"
distro = ">=1.5.0"
ip2location = "8.10.0"
lief = ">=0.12.3"
Expand Down

0 comments on commit 2a1ef78

Please sign in to comment.