2020-04-08 02:08:26 -07:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, libpcap
|
|
|
|
, libnfnetlink
|
|
|
|
, libnetfilter_queue
|
|
|
|
, libusb1
|
|
|
|
}:
|
2018-01-15 23:40:49 -08:00
|
|
|
|
2020-04-08 02:08:26 -07:00
|
|
|
buildGoModule rec {
|
2019-05-17 07:05:42 -07:00
|
|
|
pname = "bettercap";
|
2020-05-18 19:41:58 -07:00
|
|
|
version = "2.27.1";
|
2018-01-15 23:40:49 -08:00
|
|
|
|
2018-04-01 07:39:33 -07:00
|
|
|
src = fetchFromGitHub {
|
2019-05-17 07:05:42 -07:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2018-04-01 07:39:33 -07:00
|
|
|
rev = "v${version}";
|
2020-05-18 19:41:58 -07:00
|
|
|
sha256 = "0jb78c3s6p210mj28qg4aacd8ly6d6k5h9c48y88vmcyllzjvbhl";
|
2018-04-01 07:39:33 -07:00
|
|
|
};
|
|
|
|
|
2020-04-30 18:59:00 -07:00
|
|
|
vendorSha256 = "1j272w0zdndcz4fmh9fzbk2q8wmyfi70vn0p6d8cg0r0l231sbyx";
|
2018-04-01 07:39:33 -07:00
|
|
|
|
2020-04-08 02:08:26 -07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libpcap libnfnetlink libnetfilter_queue libusb1 ];
|
2018-01-15 23:40:49 -08:00
|
|
|
|
2020-04-08 02:08:26 -07:00
|
|
|
meta = with lib; {
|
2018-01-15 23:40:49 -08: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.
|
2020-04-08 02:08:26 -07:00
|
|
|
'';
|
|
|
|
homepage = "https://www.bettercap.org/";
|
2018-01-15 23:40:49 -08:00
|
|
|
license = with licenses; gpl3;
|
|
|
|
maintainers = with maintainers; [ y0no ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2020-04-30 18:59:00 -07:00
|
|
|
}
|