Skip to content

Commit

Permalink
Bumped a few dependencies of requets-cache (vulnerability fixes)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed Oct 28, 2024
1 parent a73e45e commit 3f82db9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center"><img src="https://github.com/packing-box/python-malsearch/raw/main/docs/pages/img/logo.png"></p>
<h1 align="center">MalSearch <a href="https://twitter.com/intent/tweet?text=MalSearch%20-%20Search%20for%20malware%20samples%20from%20various%20open%20databases.%0D%0APython%20library%20for%20getting%20samples%20from%20multiple%20malware databases.%0D%0Ahttps%3a%2f%2fgithub%2ecom%2fpacking-box%2fpython-malsearch%0D%0A&hashtags=python,programming,malware"><img src="https://img.shields.io/badge/Tweet--lightgrey?logo=twitter&style=social" alt="Tweet" height="20"/></a></h1>
<h3 align="center">Make a styled banner for your CLI tool.</h3>
<h1 align="center">MalSearch <a href="https://twitter.com/intent/tweet?text=MalSearch%20-%20Search%20for%20samples%20from%20various%20malware%20databases.%0D%0APython%20library%20for%20getting%20samples%20from%20multiple%20malware databases.%0D%0Ahttps%3a%2f%2fgithub%2ecom%2fpacking-box%2fpython-malsearch%0D%0A&hashtags=python,programming,malware"><img src="https://img.shields.io/badge/Tweet--lightgrey?logo=twitter&style=social" alt="Tweet" height="20"/></a></h1>
<h3 align="center">Search for samples from various malware databases.</h3>

[![PyPi](https://img.shields.io/pypi/v/malsearch.svg)](https://pypi.python.org/pypi/malsearch/)
[![Read The Docs](https://readthedocs.org/projects/python-malsearch/badge/?version=latest)](https://python-malsearch.readthedocs.io/en/latest/?badge=latest)
Expand All @@ -12,14 +12,18 @@

This library communicates with API's of the following malware databases to collect malware samples:

- [Maldatabase](https://maldatabase.com/api-doc.html)
- [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/usage/api)
- [MalShare](https://malshare.com/doc.php)
- [Malware Bazaar](https://bazaar.abuse.ch/api)
- [Triage](https://tria.ge/docs)
- [VirusShare](https://virusshare.com/apiv2_reference)
- [VirusTotal](https://docs.virustotal.com/reference/overview)

This library also communicates with API's or websites of the following repositories to get sample hash feeds:

- [Maldatabase](https://maldatabase.com/api-doc.html)


```sh
pip install malsearch
```
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ classifiers = [
]
dependencies = [
"pyzipper",
"requests-cache",
"requests-cache>=1.2.1",
"requests>=2.32.2", # SNYK-PYTHON-REQUESTS-6928867
"urllib3>=1.26.19", # SNYK-PYTHON-URLLIB3-7267250
"zipp>=3.19.1", # SNYK-PYTHON-ZIPP-7430899
]
dynamic = ["version"]

Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
pyzipper
requests-cache
requests-cache>=1.2.1
requests>=2.32.2 # SNYK-PYTHON-REQUESTS-6928867
urllib3>=1.26.19 # SNYK-PYTHON-URLLIB3-7267250
zipp>=3.19.1 # SNYK-PYTHON-ZIPP-7430899
2 changes: 1 addition & 1 deletion src/malsearch/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1

0 comments on commit 3f82db9

Please sign in to comment.