https://github.com/log2timeline/l2tscaffolder
Scaffolders for bootstrapping development of open source forensics tools.
https://github.com/log2timeline/l2tscaffolder
developer-tools development-workflow scaffolder
Last synced: 10 months ago
JSON representation
Scaffolders for bootstrapping development of open source forensics tools.
- Host: GitHub
- URL: https://github.com/log2timeline/l2tscaffolder
- Owner: log2timeline
- License: apache-2.0
- Created: 2017-05-12T08:26:49.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T07:41:12.000Z (over 2 years ago)
- Last Synced: 2025-03-24T03:43:52.574Z (11 months ago)
- Topics: developer-tools, development-workflow, scaffolder
- Language: Python
- Homepage: http://l2tscaffolder.readthedocs.io/
- Size: 644 KB
- Stars: 6
- Watchers: 5
- Forks: 10
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# l2tscaffolder
l2tscaffolder is a tool that provides scaffolders for various open source projects. It can be used to bootstrap plugin or parser generation for tools like plaso, to make development work easier.
### Project status
[Travis-CI](https://travis-ci.com/) | [Codecov](https://codecov.io/) | [ReadTheDocs](https://readthedocs.org) | [PyPi](https://pypi.python.org)
--- | --- | --- | ---
[](https://travis-ci.com/log2timeline/l2tscaffolder) | [](https://codecov.io/gh/log2timeline/l2tscaffolder) | [](https://l2tscaffolder.readthedocs.org) | [](https://pypi.python.org/pypi/l2tscaffolder)
### Documentation
The purpose of the l2t scaffolder tool is to simplify development of various
open source forensics tools, eg. plaso, timesketch, turbinia, etc.
The tool simply provides a UI prompting the user to answer few questions, and
then generates templates for all files needed to write a parser or a plugin for
the appropriate tool, that is it provides scaffolding for the necessary boiler
plate code that is sometimes associated with creating new plugins or parsers.
### Usage
In essence the tool can be simply run as:
```
$ l2t_scaffolder.py
```
The tool will then guide you towards creating all the necessary files to
generate a parser, plugin or a module for the given tool. Another way to run
the tool is:
```
$ l2t_scaffolder.py
```
eg:
```
$ l2t_scaffolder.py plaso
```
This will run the scaffolder tool to generate a plugin or a parser for plaso.
Also see:
+ http://l2tscaffolder.readthedocs.io
### Requirements
Python 3.6+, Python 2 is not supported.
### Installation
The simple mechanism is to use pip within a virtualenv setup.
Setup
[virtualenv](https://github.com/log2timeline/l2tscaffolder/wiki/Running-scaffolder-in-virtualenv).
And then use pip3 inside the virtualenv:
```
$ pip3 install l2tscaffolder
```
### Background
The original tool was called PlasoScaffolder, which was written by
[Claudia Saxer](https://github.com/ClaudiaSaxer) as part of her BSc and
integrated into the log2timeline organization for purpose of maintenance.
l2tscaffolder is a rewrite of the original PlasoScaffolder tool, reusing parts
of it, and rewriting other parts to make the tool easier to extend to other
open source projects and scaffolders, the original tool was written for plaso
and only supported SQLite plugins.