Unverified Commit ee20cc5e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #268679 from fabaff/padre

padre: init at 2.1.0
parents d2ecccdc cc9e3666
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "padre";
  version = "2.1.0";

  src = fetchFromGitHub {
    owner = "glebarez";
    repo = "padre";
    rev = "refs/tags/v${version}";
    hash = "sha256-UkL0EydwQfZl4HVtXiU8AyLJnzqBwECIgwm3bpQvyes=";
  };

  vendorHash = "sha256-BBDGnz8u2FEKwuTP9DKz6FoODaW4+VFcL36lumoYTb8=";

  ldflags = [
    "-s"
    "-w"
  ];

  meta = with lib; {
    description = "Advanced exploiting tool for Padding Oracle attacks against CBC mode encryption";
    homepage = "https://github.com/glebarez/padre";
    changelog = "https://github.com/glebarez/padre/releases/tag/v${version}";
    # https://github.com/glebarez/padre/issues/28
    license = licenses.unfree;
    maintainers = with maintainers; [ fab ];
    mainProgram = "padre";
  };
}