• Stars
    star
    182
  • Rank 211,154 (Top 5 %)
  • Language
    Nix
  • License
    MIT License
  • Created almost 4 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tool set for Information security professionals and all others

Tool set for Pentesting

This package set for NixOS contains some tools to perform penetration tests, security assessments and other tasks related to information security.

There are already a bunch of expressions available which try to follow Kali Linux. The approach here is more based on the actual need for different tools than to follow other distributions and try to mimic them.

The focus is on the combination of well-known tools with brand-new one. While skipping unmaintained ones.

Usage

Make the repo available on your machine and include the category/files you want in /etc/nixos/configuration.nix. See "imports" for all available categories.

{ config, pkgs, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      <nixos-hardware/intel/nuc/8i7beh>
      ./hardware-configuration.nix
      ./port-scanners.nix
    ];
[...]

Or cherry-pick the tools you want and create a new shell. E.g., portscan.nix:

{ pkgs ? import <nixpkgs> {} }:

with pkgs;

mkShell {
  nativeBuildInputs = [
    nmap
    masscan
  ];
}
$ nix-shell portscan.nix

Or use this template and delete the tools you don't need. Also, it's recommaneded to check out RedNix where you can find ready-to-use shells.

License

Everything here is licensed under MIT.

More Repositories

1

mqtt-panel

A web interface for MQTT
JavaScript
404
star
2

fedora-ansible

Ansible playbooks for Fedora
Jinja
102
star
3

alpine-ansible

Alpine Linux - Ansible Contrib Repository
Jinja
31
star
4

security-lab

Fedora Security Lab - The Fedora Security Lab (FSL) provides a safe test environment to work on security auditing, forensics, system rescue and teaching security testing methodologies in universities and other organizations. This repository is a copy of the original development.
JavaScript
29
star
5

fsl-test-bench

FSL Test bench - Ansible playbook repository to setup a save environment for security auditing and testing. It can be used for teaching security testing methodologies, testing tools, learning, and playing.
Jinja
25
star
6

make_centos

Create customized CentOS ISO images
Shell
16
star
7

mqtt-randompub

A publisher for random MQTT message to random topics.
Python
8
star
8

mqtt-dbus

Desktop notifications with Python DBus bindings if a MQTT message arrives
Python
7
star
9

penin

Information gathering and penetration testing framework
Python
3
star
10

pysysbot

Python based system jabber bot
Python
3
star
11

mqtt-notify

Desktop notifications with libnotify if a MQTT message arrives
Python
2
star
12

zerotier-client

A Python client wrapper for the ZeroTier API
Python
2
star
13

ch.bfh.bti7081.s2013.white

Software Engineering and Design - Group White
Java
1
star
14

mqtt-zenity

Desktop notifications with zenity if a MQTT message arrives
Shell
1
star
15

simpserial

A very simple tool to get data from serial ports
Python
1
star
16

set-bridge

Simple script to create a bridge for wire-tapping
Shell
1
star