Fix bugs with Mailcat. Fix bug with hotkey for searching & searching with regex Make GetExternalURLs.py use chromium, and improve redirectRegex. Improve email filter Regex for EmailExtractor.py Improve description for IPQualityScore resolutions. Bug fix for when resolution results arrive in an unexpected order. Handle Shodan errors better
60 lines
2.3 KiB
Python
60 lines
2.3 KiB
Python
#!/usr/bin/env python3
|
|
|
|
|
|
class BlockChainBlockPrev:
|
|
|
|
name = "Get Previous Bitcoin Block"
|
|
category = "CryptoCurrency"
|
|
description = "Returns the details of the previous bitcoin block."
|
|
originTypes = {'BTC Block'}
|
|
resultTypes = {'BTC Block'}
|
|
parameters = {}
|
|
|
|
def resolution(self, entityJsonList, parameters):
|
|
import requests
|
|
import time
|
|
from datetime import datetime
|
|
returnResults = []
|
|
|
|
apiEndpoint = 'https://blockchain.info/rawblock/'
|
|
|
|
for entity in entityJsonList:
|
|
primaryField = entity['Block Address']
|
|
|
|
try:
|
|
currDetails = requests.get(apiEndpoint + primaryField).json()
|
|
if currDetails.get('error') is not None:
|
|
continue
|
|
prevBlockHash = currDetails.get('prev_block')
|
|
# Ignore first block.
|
|
if prevBlockHash == "0000000000000000000000000000000000000000000000000000000000000000":
|
|
continue
|
|
time.sleep(5)
|
|
details = requests.get(apiEndpoint + prevBlockHash).json()
|
|
except requests.exceptions.ConnectionError:
|
|
return "Please check your internet connection"
|
|
|
|
timestamp = datetime.utcfromtimestamp(details.get('time')).isoformat()
|
|
|
|
returnResults.append(
|
|
[{'Block Address': details['hash'],
|
|
'Previous Block': details['prev_block'],
|
|
'Merkle Root': details['mrkl_root'],
|
|
'Relayed By': details['relayed_by'],
|
|
'Nonce': str(details['nonce']),
|
|
'Bits': str(details['bits']),
|
|
'Size': str(details['size']),
|
|
'Block Index': str(details['block_index']),
|
|
'Height': str(details['height']),
|
|
'Main Chain': str(details['main_chain']),
|
|
'Entity Type': 'BTC Block',
|
|
'Date Created': timestamp},
|
|
{'^^^': {'Resolution': 'NULL'}}])
|
|
|
|
returnResults.append([{'Block Address': primaryField,
|
|
'Entity Type': 'BTC Block'},
|
|
{len(returnResults) - 1: {'Resolution': 'Next BTC Block'}}])
|
|
|
|
time.sleep(5)
|
|
return returnResults
|