mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
30 lines
780 B
Nix
30 lines
780 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "traitor";
|
|
version = "0.0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liamg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-eUeKkjSpKel6XH3/VVw/WPCG/Nq8BcZwMNFG9z9FUuU=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
meta = with lib; {
|
|
description = "Automatic Linux privilege escalation";
|
|
longDescription = ''
|
|
Automatically exploit low-hanging fruit to pop a root shell. Traitor packages
|
|
up a bunch of methods to exploit local misconfigurations and vulnerabilities
|
|
(including most of GTFOBins) in order to pop a root shell.
|
|
'';
|
|
homepage = "https://github.com/liamg/traitor";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|