Skip to content

jheise/threatcrowd_api

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

#ThreatCrowd API

Python Library for ThreatCrowd's API

Functions

  • email_report(address) - query for the given email address

  • ip_report(address) - query for the given ip address

  • domain_report(domain) - query for the given domain

  • antivirus_report(av) - query for the given antivirus entry

Classes

  • ThreadCrowd(ttl) - Object that can perform the previous queries, but caches answers for the specificed ttl in seconds.

Example

import threatcrowd

print threatcrowd.ip_report("4.2.2.1")

tc = threatcrowd.ThreatCrowd(ttl=5) # make an object with a ttl of 5 seconds
print tc.ip_report("4.2.2.1")

# print the exact same answer because we are under the ttl
print tc.ip_report("4.2.2.1")

# expire the ttl
import time
time.sleep(6)

# this will fetch and cache a new copy
print tc.ip_report("4.2.2.1")

About

Python wrapper for threatcrowd's api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages