Skip to content

Commit

Permalink
corsmisc: init at 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Jan 18, 2021
1 parent 156071b commit fa13bc3
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/corsmisc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
pname = "corsmisc";
version = "1.3.0";

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

vendorSha256 = "1bp6bf99rxlyg91pn1y228q18lawpykmvkl22cydmclms0q0n238";

meta = with lib; {
description = "Tool to discover CORS misconfigurations vulnerabilities";
homepage = "https://github.com/drsigned/corsmisc";
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 @@ -1142,6 +1142,8 @@ in

coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};

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

cozy = callPackage ../applications/audio/cozy-audiobooks { };

cpuid = callPackage ../os-specific/linux/cpuid { };
Expand Down

0 comments on commit fa13bc3

Please sign in to comment.