2019-05-17 16:05:42 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, libpcap, libnfnetlink, libnetfilter_queue, libusb1 }:
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2018-04-01 16:39:33 +02:00
|
|
|
buildGoPackage rec {
|
2019-05-17 16:05:42 +02:00
|
|
|
pname = "bettercap";
|
|
|
|
version = "2.24";
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2018-04-01 16:39:33 +02:00
|
|
|
goPackagePath = "github.com/bettercap/bettercap";
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2018-04-01 16:39:33 +02:00
|
|
|
src = fetchFromGitHub {
|
2019-05-17 16:05:42 +02:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2018-04-01 16:39:33 +02:00
|
|
|
rev = "v${version}";
|
2019-05-17 16:05:42 +02:00
|
|
|
sha256 = "1f8bzxbcyf0bpyqj6hz4l8dp5xknnb537xy9y5skcznp03i44h55";
|
2018-04-01 16:39:33 +02:00
|
|
|
};
|
|
|
|
|
2018-12-31 02:43:29 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-05-17 16:05:42 +02:00
|
|
|
buildInputs = [ libpcap libnfnetlink libnetfilter_queue libusb1 ];
|
2018-04-01 16:39:33 +02:00
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2018-04-01 16:39:33 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-16 08:40:49 +01:00
|
|
|
description = "A man in the middle tool";
|
|
|
|
longDescription = ''
|
|
|
|
BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
|
|
|
|
'' ;
|
|
|
|
homepage = https://www.bettercap.org/;
|
|
|
|
license = with licenses; gpl3;
|
|
|
|
maintainers = with maintainers; [ y0no ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|