Skip to content

Commit

Permalink
Merge pull request #109820 from fabaff/bypass403
Browse files Browse the repository at this point in the history
bypass403: init at 1.4.0
  • Loading branch information
SuperSandro2000 committed Jan 18, 2021
2 parents fe6f954 + 30cdf00 commit 4773a26
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/tools/security/bypass403/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
pname = "bypass403";
version = "1.4.0";

src = fetchFromGitHub {
owner = "drsigned";
repo = pname;
rev = "v${version}";
sha256 = "1x3a4lnxjxbv80kaydy57809n9r7vzci9ki4f98smf3w04s86rcl";
};

vendorSha256 = "1bp6bf99rxlyg91pn1y228q18lawpykmvkl22cydmclms0q0n238";

meta = with lib; {
description = "Tool to bypass 403 Forbidden responses";
homepage = "https://github.com/drsigned/bypass403";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1710,6 +1710,8 @@ in
textual-window-manager = tmux;
};

bypass403 = callPackage ../tools/security/bypass403 { };

bsh = fetchurl {
url = "http://www.beanshell.org/bsh-2.0b5.jar";
sha256 = "0p2sxrpzd0vsk11zf3kb5h12yl1nq4yypb5mpjrm8ww0cfaijck2";
Expand Down

0 comments on commit 4773a26

Please sign in to comment.