Skip to content

Commit 08ec910

Browse files
Update the readme
1 parent 60af0e0 commit 08ec910

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

README.md

+44
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,50 @@ class NewMalwareURIFeed(TiCloudAPI)
496496
- `pull_latest`
497497
- Returns a maximum of 1000 latest records with Ps, domains, URLs, emails, and sample hashes extracted from malware samples
498498

499+
#### Class:
500+
```python
501+
class ImpHashSimilarity(TiCloudAPI)
502+
````
503+
#### Methods:
504+
- `get_imphash_index`
505+
- Accepts an imphash and returns a list of SHA-1 hashes of files sharing that imphash
506+
- `get_imphash_index_aggregated`
507+
- Accepts an imphash and returns a list of SHA-1 hashes of files sharing that imphash
508+
- This method automatically handles paging and returns a list of results instead of a Response object
509+
510+
#### Class:
511+
```python
512+
class YARAHunting(TiCloudAPI)
513+
````
514+
#### Methods:
515+
- `create_ruleset`
516+
- Creates a new YARA ruleset
517+
- The ruleset_text parameter needs to be a stringified YARA ruleset / a Unicode string
518+
- `delete_ruleset`
519+
- Deletes a YARA ruleset
520+
- `get_ruleset_info`
521+
- Get information for a specific YARA ruleset or all YARA rulesets in the collection
522+
- `get_ruleset_text`
523+
- Get the text of a YARA ruleset
524+
- `yara_matches_feed`
525+
- Returns a recordset of YARA ruleset matches in the specified time range
526+
527+
#### Class:
528+
```python
529+
class YARARetroHunting(TiCloudAPI)
530+
````
531+
#### Methods:
532+
- `enable_retro_hunt`
533+
- Enables the retro hunt for the specified ruleset that has been submitted to TitaniumCloud prior to deployment of YARA retro
534+
- `start_retro_hunt`
535+
- Starts the retro hunt for the specified ruleset
536+
- `check_status`
537+
- Checks the retro hunt status for the specified ruleset
538+
- `cancel_retro_hunt`
539+
- Cancels the retro hunt for the specified ruleset
540+
- `yara_retro_matches_feed`
541+
- Returns a recordset of YARA ruleset matches in the specified time range
542+
499543
***
500544

501545
## Module: tiscale

0 commit comments

Comments
 (0)