tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
corsmisc: init at 1.3.0
Fabian Affolter
5 years ago
fa13bc32
156071bf
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
corsmisc
default.nix
top-level
all-packages.nix
+25
pkgs/tools/security/corsmisc/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ buildGoModule
2
+
, fetchFromGitHub
3
+
, lib
4
+
}:
5
+
6
+
buildGoModule rec {
7
+
pname = "corsmisc";
8
+
version = "1.3.0";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "drsigned";
12
+
repo = pname;
13
+
rev = "v${version}";
14
+
sha256 = "18a70v093jl85vnih80i50wvac8hsg3f2gmcws9jyhj2brndq2qj";
15
+
};
16
+
17
+
vendorSha256 = "1bp6bf99rxlyg91pn1y228q18lawpykmvkl22cydmclms0q0n238";
18
+
19
+
meta = with lib; {
20
+
description = "Tool to discover CORS misconfigurations vulnerabilities";
21
+
homepage = "https://github.com/drsigned/corsmisc";
22
+
license = with licenses; [ mit ];
23
+
maintainers = with maintainers; [ fab ];
24
+
};
25
+
}
+2
pkgs/top-level/all-packages.nix
···
1142
1143
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};
1144
0
0
1145
cozy = callPackage ../applications/audio/cozy-audiobooks { };
1146
1147
cpuid = callPackage ../os-specific/linux/cpuid { };
···
1142
1143
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};
1144
1145
+
corsmisc = callPackage ../tools/security/corsmisc { };
1146
+
1147
cozy = callPackage ../applications/audio/cozy-audiobooks { };
1148
1149
cpuid = callPackage ../os-specific/linux/cpuid { };