-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for 7z files (#35)
* feat: add support for 7z files * feat: update actions versions * refactor: remove unused imports * feat(ci): bump actions versions * fix: PR comments * fix(ci): install picklescan with 7z dependency in tests
- Loading branch information
Showing
8 changed files
with
93 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ requests==2.31.0 | |
aiohttp==3.9.1 | ||
black==22.8.0 | ||
numpy>1.24.0 | ||
py7zr==0.22.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = picklescan | ||
version = 0.0.19 | ||
version = 0.0.20 | ||
author = Matthieu Maitre | ||
author_email = [email protected] | ||
description = Security scanner detecting Python Pickle files performing suspicious actions | ||
|
@@ -21,6 +21,9 @@ packages = find: | |
python_requires = >=3.9 | ||
install_requires = | ||
|
||
[options.extras_require] | ||
7z=py7zr | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters