reaver-wps-fork-t6x: drop old 1.6.5-r1

This commit is contained in:
Rick Farina (Zero_Chaos) 2024-05-02 15:03:43 -04:00
parent c42f1f936b
commit 14475e8fe0
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
3 changed files with 0 additions and 76 deletions

View file

@ -1,2 +1 @@
DIST reaver-wps-fork-t6x-1.6.5.tar.gz 479441 BLAKE2B 21a1c54da559be4346b0c874947e982ea49ec6f20e612e3699d25524d49681a197a2a8cad0a31dd8dba919d065de48082572a471aa4f736397066edf7f7d8a43 SHA512 3e70d9fffefee3f6d60e72d7d7b1da91032e184c7d27f94b9f26e2260b7274d491f2e41f8056b386a211b9838d21afc6b65a8a826d310b51fc1065fa9e135dc0
DIST reaver-wps-fork-t6x-1.6.6.tar.gz 485854 BLAKE2B cb99ecddf317f7aa8d66b3a73e4c343e53684303a3697d298b57380695daafa17ef85af121fddec6f469372c630b75a2a46ddfdd17eb59edd59ffec5a0c88111 SHA512 431e3ed03eb6145a33a27bd03f4568c58046721566505f06bb0fe42ace8327d6749a70d443a592278253248f676299ff29962c839409d0173733eaaf0e2e6410

View file

@ -1,44 +0,0 @@
--- src/wpsmon.c.orig 2016-12-21 07:56:51.000000000 +0800
+++ src/wpsmon.c 2016-12-21 08:01:59.583731228 +0800
@@ -94,10 +94,10 @@
int source = INTERFACE, ret_val = EXIT_FAILURE;
struct bpf_program bpf = { 0 };
char *out_file = NULL, *last_optarg = NULL, *target = NULL, *bssid = NULL;
- char *short_options = "i:c:n:o:b:5sfuCDhPga";
+ char *short_options = "i:c:n:o:b:5sfuCFDhPga";
struct option long_options[] = {
- { "get-chipset", no_argument, NULL, 'g' },
- { "output-piped", no_argument, NULL, 'P' },
+ { "get-chipset", no_argument, NULL, 'g' },
+ { "output-piped", no_argument, NULL, 'P' },
{ "bssid", required_argument, NULL, 'b' },
{ "interface", required_argument, NULL, 'i' },
{ "channel", required_argument, NULL, 'c' },
@@ -105,7 +105,8 @@
{ "probes", required_argument, NULL, 'n' },
{ "daemonize", no_argument, NULL, 'D' },
{ "file", no_argument, NULL, 'f' },
- { "announce-fcs", no_argument, NULL, 'C' }, //mod by flatr0ze
+ { 0, 0, NULL, 'C' },
+ { "announce-fcs", no_argument, NULL, 'F' }, //mod by flatr0ze
{ "5ghz", no_argument, NULL, '5' },
{ "scan", no_argument, NULL, 's' },
{ "survey", no_argument, NULL, 'u' },
@@ -164,6 +165,8 @@
mode = SURVEY;
break;
case 'C':
+ break;
+ case 'F':
set_validate_fcs(1); //mod by flatr0ze
break;
case 'D':
@@ -624,7 +624,7 @@
fprintf(stderr, "\t-o, --out-file=<file> Write data to file\n");
fprintf(stderr, "\t-n, --probes=<num> Maximum number of probes to send to each AP in scan mode [%d]\n", DEFAULT_MAX_NUM_PROBES);
fprintf(stderr, "\t-D, --daemonize Daemonize wash\n");
- fprintf(stderr, "\t-C, --announce-fcs Ignore frame checksum errors\n"); //mod by flatr0ze
+ fprintf(stderr, "\t-F, --announce-fcs Do not ignore frame checksum errors\n"); //mod by flatr0ze
fprintf(stderr, "\t-5, --5ghz Use 5GHz 802.11 channels\n");
fprintf(stderr, "\t-s, --scan Use scan mode\n");
fprintf(stderr, "\t-u, --survey Use survey mode [default]\n");

View file

@ -1,31 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Utilise Pixie Dust Attack to find the correct WPS PIN."
HOMEPAGE="https://github.com/t6x/reaver-wps-fork-t6x"
SRC_URI="https://github.com/t6x/reaver-wps-fork-t6x/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="!net-wireless/reaver
net-libs/libpcap
dev-db/sqlite:3"
RDEPEND="${DEPEND}"
PDEPEND="net-wireless/pixiewps"
S="${WORKDIR}/${P}/src"
src_configure() {
econf --localstatedir="${EPREFIX}"/var
}
src_install() {
emake DESTDIR="${D}" install
keepdir /var/lib/reaver
}