Skip to content

Commit 8633a83

Browse files
Merge branch 'develop' into 'main'
v2.7.2 See merge request integrations/sdk/reversinglabs-sdk-py3!10
2 parents f438212 + 9bd9404 commit 8633a83

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,16 @@ v2.5.1 (2024-04-02)
355355
- The module currently has one class with four methods for sending files to FIE for analysis and fetching the short classification or more detailed analysis reports.
356356

357357

358+
2.7.2 (2024-12-06)
359+
-------------------
360+
361+
#### Improvements
362+
- **ticloud** module:
363+
- Corrected a typo in the docstrings and the README.
364+
365+
366+
367+
358368
### Scheduled removals
359369
- **December 2024.**:
360370
- Parameter `sample_sha1` from the `ticloud.DynamicAnalysis.detonate_sample` method will be removed. Parameter `sample_hash` should be used instead.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,9 +507,9 @@ class NewMalwareURIFeed(TiCloudAPI)
507507
_TCF-0301_
508508
#### Methods:
509509
- `pull_with_timestamp`
510-
- Accepts a time format definition and a time value. Returns records with Ps, domains, URLs, emails, and sample hashes extracted from malware samples
510+
- Accepts a time format definition and a time value. Returns records with IPs, domains, URLs, emails, and sample hashes extracted from malware samples
511511
- `pull_latest`
512-
- Returns a maximum of 1000 latest records with Ps, domains, URLs, emails, and sample hashes extracted from malware samples
512+
- Returns a maximum of 1000 latest records with IPs, domains, URLs, emails, and sample hashes extracted from malware samples
513513

514514
#### Class:
515515
```python

ReversingLabs/SDK/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
A Python SDK for communicating with ReversingLabs services.
66
"""
77

8-
__version__ = "2.7.1"
8+
__version__ = "2.7.2"

ReversingLabs/SDK/ticloud.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4679,7 +4679,7 @@ def __init__(self, host, username, password, verify=True, proxies=None, user_age
46794679
self._url = "{host}{{endpoint}}".format(host=self._host)
46804680

46814681
def pull_with_timestamp(self, time_format, time_value):
4682-
"""Accepts a time format definition and a time value. Returns records with Ps, domains, URLs,
4682+
"""Accepts a time format definition and a time value. Returns records with IPs, domains, URLs,
46834683
emails, and sample hashes extracted from malware samples.
46844684
To fetch the next batch of records, use the last_timestamp from the response increased by 1.
46854685
The time value needs to be within the last 365 days.
@@ -4723,7 +4723,7 @@ def pull_with_timestamp(self, time_format, time_value):
47234723
return response
47244724

47254725
def pull_latest(self):
4726-
"""Returns a maximum of 1000 latest records with Ps, domains, URLs,
4726+
"""Returns a maximum of 1000 latest records with IPs, domains, URLs,
47274727
emails, and sample hashes extracted from malware samples."""
47284728
url = self._url.format(endpoint=self.__PULL_LATEST_ENDPOINT)
47294729

0 commit comments

Comments
 (0)