Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

amira

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amira - npm Package Compare versions

Comparing version
2.0.1
to
2.0.2
+1
-1
amira.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: amira
Version: 2.0.1
Version: 2.0.2
Summary: Automated Malware Incident Response and Analysis

@@ -5,0 +5,0 @@ Home-page: https://github.com/Yelp/amira

@@ -5,2 +5,2 @@ # -*- coding: utf-8 -*-

__version__ = '2.0.1'
__version__ = '2.0.2'

@@ -99,2 +99,6 @@ # -*- coding: utf-8 -*-

if not processed_input:
logging.error('No input to process')
return
try:

@@ -101,0 +105,0 @@ self._data_processor.perform_analysis(processed_input, self._data_feeds)

@@ -91,3 +91,9 @@ # -*- coding: utf-8 -*-

fileobj = ByteBuffer(tardata)
tar = tarfile.open(mode='r:gz', fileobj=fileobj)
tar = None
try:
tar = tarfile.open(mode='r:gz', fileobj=fileobj)
except tarfile.ReadError as ter:
logging.error('Failed to read the archive: {}'.format(ter))
return
json_tarinfo = [t for t in tar if t.name.endswith('.json')]

@@ -94,0 +100,0 @@

Metadata-Version: 2.1
Name: amira
Version: 2.0.1
Version: 2.0.2
Summary: Automated Malware Incident Response and Analysis

@@ -5,0 +5,0 @@ Home-page: https://github.com/Yelp/amira