nuclei/nuclei.spec
Your Name 672627b661
Some checks failed
Run CI/CD... / main (push) Failing after 3m43s
3.3.9
2025-02-15 06:52:35 +00:00

39 lines
1,021 B
RPMSpec

%define debug_package %nil
Name: nuclei
Version: 3.3.9
Release: 1
Summary: Vulnerability scanner
URL: https://nuclei.projectdiscovery.io
Source0: https://github.com/projectdiscovery/nuclei/archive/v%{version}/%{name}-%{version}.tar.gz
License: MIT
Group: Development/Other
BuildRequires: go >= 1.11
BuildRequires: git-core
BuildRequires: upx
BuildRequires: pkgconfig(openssl3.3)
BuildRequires: glibc-static-devel
BuildRequires: glibc-devel
%description
Nuclei is used to send requests across targets based on a
template leading to zero false positives and providing fast
scanning on large number of hosts. Nuclei offers scanning
for a variety of protocols including TCP, DNS, HTTP, File,
etc. With powerful and flexible templating, all kinds of
security checks can be modelled with Nuclei
%prep
%setup -q
%build
export GOPROXY=https://proxy.golang.org/cached-only
%make
#upx bin/%{name}
%install
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README*.md LICENSE.md
%{_bindir}/%{name}