2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-04-08 11:08:26 +02:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, libpcap
|
|
|
|
, libnfnetlink
|
|
|
|
, libnetfilter_queue
|
|
|
|
, libusb1
|
|
|
|
}:
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2020-04-08 11:08:26 +02:00
|
|
|
buildGoModule rec {
|
2019-05-17 16:05:42 +02:00
|
|
|
pname = "bettercap";
|
2021-03-19 12:21:35 +01:00
|
|
|
version = "2.30.2";
|
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}";
|
2021-03-19 12:21:35 +01:00
|
|
|
sha256 = "sha256-5CAWMW0u/8BUn/8JJBApyHGH+/Tz8hzAmSChoT2gFr8=";
|
2018-04-01 16:39:33 +02:00
|
|
|
};
|
|
|
|
|
2021-03-13 03:08:49 +01:00
|
|
|
vendorSha256 = "sha256-fApxHxdzEEc+M+U5f0271VgrkXTGkUD75BpDXpVYd5k=";
|
2018-04-01 16:39:33 +02:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-08 11:08:26 +02:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-20 23:56:23 +02:00
|
|
|
buildInputs = [ libpcap libusb1 ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ libnfnetlink libnetfilter_queue ];
|
2018-01-16 08:40:49 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with 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.
|
2020-04-08 11:08:26 +02:00
|
|
|
'';
|
|
|
|
homepage = "https://www.bettercap.org/";
|
2018-01-16 08:40:49 +01:00
|
|
|
license = with licenses; gpl3;
|
|
|
|
maintainers = with maintainers; [ y0no ];
|
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|