CIRTKit : Tools for the Computer Incident Response Team

CIRTKit is a tools for the computer incident response team. One DFIR console to rule them all. Built on top of the Viper Framework.

Installation

Database Setup

lib/core/database.py

It requires a database to store malware artifacts and investigation data. Currently, it is equipped to use SQLite and Postgres SQL databases.

If you need to have multiple analysts collaborate on investigations, then you need to setup it to use Postgres, otherwise if you want to store information locally, you can use SQLite.

  • SQLite

For SQLite, you can simply run CIRTKit, and it will create and connect to a local SQLite file. Or you can specify the connection string to use a different file.

  • Postgres

Setup your Postgres database and edit the lines at the top of the database.py with the credentials for the database you just configured.

Also Read : Fwknop : Single Packet Authorization Port Knocking

DB_USER = ”
DB_PASSWD = ”

Install Dependencies

You can install decencies with pip (Python packaging system) using the provided requirements.txt file “pip install -r requirements.txt”

Execute

python cirtkity.py

You can also specify the ‘-i’ flag and specify a specific investigation. If it does not exist, CIRTKit will create a new investigation

Credit : Bob

R K

Recent Posts

Enable SSH on Ubuntu 18.04: Install, Connect, and Manage

SSH (Secure Shell) is a cryptographic network protocol that creates a secure, encrypted connection between your…

12 hours ago

Install Node.js and npm on Ubuntu 18.04: Three Methods Compared

Node.js is an open-source, cross-platform JavaScript runtime that lets you run JavaScript on the server side,…

12 hours ago

Set DNS Nameservers on Ubuntu 18.04: Desktop and Server Guide

DNS (Domain Name System) is what translates domain names into IP addresses. When you type a…

13 hours ago

Install Docker on Ubuntu 18.04: Setup, Images, and Containers

Docker is a containerization platform that lets you package applications and their dependencies into lightweight, portable…

13 hours ago

Install Yarn on Ubuntu 18.04: APT Setup and Essential Commands

Yarn is a fast, reliable JavaScript package manager that works alongside npm. It was built to fix…

13 hours ago

Install Webmin on Ubuntu 18.04: Web Control Panel Setup Guide

Webmin is an open-source, browser-based control panel for Linux server administration. Instead of managing your server…

2 days ago