Skip to content

Commit

Permalink
Code review: 153320043: Changes for project move.
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 31, 2015
1 parent 82ff2c7 commit 288c2b3
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ACKNOWLEDGEMENTS
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Thanks to contributors (alphabetically based on last name):

Test data:

Copied with permission from the GRR project: https://code.google.com/p/grr/
Copied with permission from the GRR project: https://github.com/google/grr
* History
* index.dat
* places.sqlite
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include ACKNOWLEDGEMENTS AUTHORS LICENSE.TXT
include ACKNOWLEDGEMENTS AUTHORS LICENSE README
include run_tests.py
include utils/check_dependencies.py
exclude .gitignore
Expand Down
21 changes: 21 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plaso (Plaso Langar Að Safna Öllu) is a Python-based backend engine for the tool log2timeline.

log2timeline is a tool designed to extract timestamps from various files found on a typical computer system(s) and aggregate them.

The initial purpose of plaso was to have the timestamps in a single place for computer forensic analysis (aka Super Timeline).

However plaso has become a framework that supports:
* adding new parsers or parsing plug-ins;
* adding new analysis plug-ins;
* writing one-off scripts to automate repetitive tasks in computer forensic analysis or equivalent.

And is moving to support:
* adding new general purpose parses/plugins that may not have timestamps associated to them;
* adding more analysis context;
* allowing more targeted approach to the collection/parsing.

Also see:
* log2timeline: http://plaso.kiddaland.net/usage/log2timeline/
* Project documentation: http://plaso.kiddaland.net/
* Downloads: https://googledrive.com/host/0B30H7z4S52FleW5vUHBnblJfcjg/

2 changes: 1 addition & 1 deletion config/dpkg/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Priority: extra
Maintainer: Log2Timeline <[email protected]>
Build-Depends: debhelper (>= 7.0.0), python, python-setuptools
Standards-Version: 3.9.2
Homepage: http://code.google.com/p/plaso/
Homepage: https://github.com/log2timeline/plaso/

Package: python-plaso
Architecture: any
Expand Down
2 changes: 1 addition & 1 deletion config/dpkg/debian/copyright
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Format: http://dep.debian.net/deps/dep5
Upstream-Name: plaso
Source: http://code.google.com/p/plaso/
Source: https://github.com/log2timeline/plaso/

Files: *
Copyright: 2012 The Plaso Project Authors.
Expand Down
3 changes: 2 additions & 1 deletion config/dpkg/debian/python-plaso.docs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ACKNOWLEDGEMENTS
AUTHORS
LICENSE.TXT
LICENSE
README
3 changes: 2 additions & 1 deletion config/windows/make_dist.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ mkdir dist\plaso\licenses

xcopy /q /y ACKNOWLEDGEMENTS dist\plaso
xcopy /q /y AUTHORS dist\plaso
xcopy /q /y LICENSE.TXT dist\plaso
xcopy /q /y LICENSE dist\plaso
xcopy /q /y README dist\plaso
xcopy /q /y config\licenses\* dist\plaso\licenses

xcopy /q /y /s dist\image_export\* dist\plaso
Expand Down
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
__version__ = '1.1.1'

VERSION_DEV = True
VERSION_DATE = '20141002'
VERSION_DATE = '20141013'


def GetVersion():
Expand Down
2 changes: 1 addition & 1 deletion plaso/frontend/psort.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def _ConsumeAnalysisReport(self, analysis_report):
u'Unable to print report due to an unicode decode error. '
u'The report is stored inside the storage file and can be '
u'viewed using pinfo [if unable to view please submit a '
u'bug report https://code.google.com/p/plaso/issues/list')
u'bug report https://github.com/log2timeline/plaso/issues')


def _AppendEvent(event_object, output_buffer, event_queues):
Expand Down
2 changes: 1 addition & 1 deletion plaso/parsers/winreg_plugins/mrulistex.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class MRUListExStringPlugin(interface.ValuePlugin, MRUListExPluginMixin):

URLS = [
u'http://forensicartifacts.com/2011/02/recentdocs/',
u'https://code.google.com/p/winreg-kb/wiki/MRUKeys']
u'https://github.com/libyal/winreg-kb/wiki/MRU-keys']

_STRING_STRUCT = construct.Struct(
'string_and_shell_item',
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ release = 1
packager = Plaso development team <[email protected]>
doc_files = ACKNOWLEDGEMENTS
AUTHORS
LICENSE.TXT
LICENSE
README
build_requires = python-setuptools
requires = bencode
dfvfs
Expand Down

0 comments on commit 288c2b3

Please sign in to comment.