Skip to content

Commit

Permalink
Release version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kisec committed Dec 27, 2018
1 parent a1733f7 commit 314d2de
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Change Log

## [Unreleased](https://github.com/kevthehermit/VolUtility/tree/HEAD)
[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.3...HEAD)
## [Unreleased](https://github.com/kisec/VolUtility/tree/HEAD)
[Full Changelog](https://github.com/kisec/VolUtility/compare/v1.2.1...HEAD)

## [v1.3](https://github.com/kevthehermit/VolUtility/tree/v1.3) (2018-12-24)
[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.2...v1.3)
## [v1.2.1](https://github.com/kisec/VolUtility/tree/v1.2.1) (2018-12-26)
[Full Changelog](https://github.com/kisec/VolUtility/compare/v1.2...v1.2.1)

## [v1.2](https://github.com/kevthehermit/VolUtility/tree/v1.2) (2017-01-20)
[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.1...v1.2)
Expand Down
4 changes: 3 additions & 1 deletion extra/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ MAINTAINER kisec (https://github.com/kisec/VolUtility)
ENV YARA_VERSION 3.4.0
ENV SSDEEP_VERSION 2.13
ENV VOLATILITY_VERSION 2.6.1
ENV VOLUTILITY_VERSION 1.2.1

# Switch to user root
USER root
Expand Down Expand Up @@ -100,7 +101,8 @@ RUN groupadd -r volutility && \

# Get VolUtility
RUN cd /opt && \
git clone https://github.com/kisec/VolUtility.git && \
curl -SL https://github.com/kisec/VolUtility/archive/v${VOLUTILITY_VERSION}.tar.gz | tar -xz && \
mv VolUtility-${VOLUTILITY_VERSION} VolUtility && \
chown -R volutility:volutility /opt/VolUtility

# Install PIP Requirements.
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ pytz==2018.7
requests==2.20.1
urllib3==1.24.1
virustotal-api==1.1.10
volatility==2.6
yara-python==3.5.0
git+https://github.com/smarnach/pyexiftool.git#egg=pyexiftool
2 changes: 1 addition & 1 deletion web/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from commands import getoutput

logger = logging.getLogger(__name__)
volutility_version = '1.3'
volutility_version = '1.2.1'
volrc_file = os.path.join(os.path.expanduser('~'), '.volatilityrc')


Expand Down
9 changes: 7 additions & 2 deletions web/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,13 @@ def session_page(request, session_id):
includes = []

# Check Vol Version
if float(vol_interface.vol_version) < 2.5:
error_line = 'UNSUPPORTED VOLATILITY VERSION. REQUIRES 2.5 FOUND {0}'.format(vol_interface.vol_version)
try:
vol_ver = vol_interface.vol_version.split('.')
if int(vol_ver[1]) < 5:
error_line = 'UNSUPPORTED VOLATILITY VERSION. REQUIRES 2.5 FOUND {0}'.format(vol_interface.vol_version)
except Exception as error:
error_line = 'Unable to find a volatility version'
logger.error(error_line)

# Get the session
session_id = session_id if isinstance(session_id, ObjectId) else ObjectId(session_id)
Expand Down

0 comments on commit 314d2de

Please sign in to comment.