From 48ac42f9c9c355ef3bc8382f00d75c97ad44a8fd Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:23:12 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.4-1mamba;Thu Aug 21 2014] --- README.md | 4 ++++ reaver.spec | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 reaver.spec diff --git a/README.md b/README.md index d729d00..0073bf0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # reaver +Reaver performs a brute force attack against an access point's WiFi Protected Setup pin number. +Once the WPS pin is found, the WPA PSK can be recovered and alternately the AP's wireless settings can be reconfigured. +While Reaver does not support reconfiguring the AP, this can be accomplished with wpa_supplicant once the WPS pin is known. + diff --git a/reaver.spec b/reaver.spec new file mode 100644 index 0000000..5bd5b9f --- /dev/null +++ b/reaver.spec @@ -0,0 +1,55 @@ +Name: reaver +Version: 1.4 +Release: 1mamba +Summary: Performs a brute force attack against an access point's WiFi Protected Setup pin number +Group: Applications/Security +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://code.google.com/p/reaver-wps/ +Source: https://reaver-wps.googlecode.com/files/reaver-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libpcap-devel +BuildRequires: libsqlite-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Reaver performs a brute force attack against an access point's WiFi Protected Setup pin number. +Once the WPS pin is found, the WPA PSK can be recovered and alternately the AP's wireless settings can be reconfigured. +While Reaver does not support reconfiguring the AP, this can be accomplished with wpa_supplicant once the WPS pin is known. + +%debug_package + +%prep +%setup -q + +%build +cd src +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +cd src +install -d -m0755 %{buildroot}%{_sysconfdir}/reaver +install -d -m0755 %{buildroot}%{_bindir}/ + +install -D -m0644 reaver.db %{buildroot}%{_sysconfdir}/reaver/reaver.db +install -D -m0755 reaver %{buildroot}%{_bindir}/reaver +install -D -m0755 wash %{buildroot}%{_bindir}/wash + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_sysconfdir}/reaver/reaver.db +%{_bindir}/reaver +%{_bindir}/wash + +%changelog +* Thu Aug 21 2014 Silvan Calarco 1.4-1mamba +- package created using the webbuild interface