package/aircrack-ng: bump to version 1.7
- Drop patches (already in version) - Update indentation in hash file (two spaces) https://aircrack-ng.blogspot.com/2022/05/aircrack-ng-17.html Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
e4a762bf7f
commit
814ed3896f
@ -1,26 +0,0 @@
|
||||
From d4496006ac1e0c99908108b998ae39afb0658733 Mon Sep 17 00:00:00 2001
|
||||
From: Joseph Benden <joe@benden.us>
|
||||
Date: Tue, 7 Jul 2020 11:42:40 -0700
|
||||
Subject: [PATCH] Expand __packed definition.
|
||||
|
||||
Signed-off-by: Joseph Benden <joe@benden.us>
|
||||
[Retrieved from:
|
||||
https://github.com/aircrack-ng/aircrack-ng/commit/d4496006ac1e0c99908108b998ae39afb0658733]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
lib/radiotap/radiotap.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/radiotap/radiotap.h b/lib/radiotap/radiotap.h
|
||||
index 57f784b8d..bb5a41dfc 100644
|
||||
--- a/lib/radiotap/radiotap.h
|
||||
+++ b/lib/radiotap/radiotap.h
|
||||
@@ -56,7 +56,7 @@ struct ieee80211_radiotap_header {
|
||||
* @it_present: (first) present word
|
||||
*/
|
||||
uint32_t it_present;
|
||||
-} __packed;
|
||||
+} __attribute__((__packed__));
|
||||
|
||||
/* version is always 0 */
|
||||
#define PKTHDR_RADIOTAP_VERSION 0
|
@ -1,74 +0,0 @@
|
||||
From f6f1396807607f5649d20631db517cfca3a1f5c4 Mon Sep 17 00:00:00 2001
|
||||
From: Joseph Benden <joe@benden.us>
|
||||
Date: Tue, 7 Jul 2020 11:44:40 -0700
|
||||
Subject: [PATCH] Fix duplicated symbols.
|
||||
|
||||
Signed-off-by: Joseph Benden <joe@benden.us>
|
||||
[Retrieved from:
|
||||
https://github.com/aircrack-ng/aircrack-ng/commit/f6f1396807607f5649d20631db517cfca3a1f5c4]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
src/airodump-ng/airodump-ng.c | 2 --
|
||||
src/airventriloquist-ng/airventriloquist-ng.c | 6 +++---
|
||||
src/tkiptun-ng/tkiptun-ng.c | 4 ++--
|
||||
3 files changed, 5 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/src/airodump-ng/airodump-ng.c b/src/airodump-ng/airodump-ng.c
|
||||
index 3ae6994dd..e72bc88e2 100644
|
||||
--- a/src/airodump-ng/airodump-ng.c
|
||||
+++ b/src/airodump-ng/airodump-ng.c
|
||||
@@ -92,8 +92,6 @@
|
||||
#include "radiotap/radiotap_iter.h"
|
||||
|
||||
struct devices dev;
|
||||
-uint8_t h80211[4096] __attribute__((aligned(16)));
|
||||
-uint8_t tmpbuf[4096] __attribute__((aligned(16)));
|
||||
|
||||
static const unsigned char llcnull[] = {0, 0, 0, 0};
|
||||
|
||||
diff --git a/src/airventriloquist-ng/airventriloquist-ng.c b/src/airventriloquist-ng/airventriloquist-ng.c
|
||||
index ac6b7647e..267d95540 100644
|
||||
--- a/src/airventriloquist-ng/airventriloquist-ng.c
|
||||
+++ b/src/airventriloquist-ng/airventriloquist-ng.c
|
||||
@@ -173,7 +173,7 @@ static struct local_options
|
||||
} lopt;
|
||||
|
||||
struct devices dev;
|
||||
-struct wif *_wi_in, *_wi_out;
|
||||
+extern struct wif *_wi_in, *_wi_out;
|
||||
|
||||
struct ARP_req
|
||||
{
|
||||
@@ -195,8 +195,8 @@ struct APt
|
||||
};
|
||||
|
||||
unsigned long nb_pkt_sent;
|
||||
-u_int8_t h80211[4096];
|
||||
-static u_int8_t tmpbuf[4096];
|
||||
+extern u_int8_t h80211[4096];
|
||||
+extern u_int8_t tmpbuf[4096];
|
||||
|
||||
static int tcp_test(const char * ip_str, const short port)
|
||||
{
|
||||
diff --git a/src/tkiptun-ng/tkiptun-ng.c b/src/tkiptun-ng/tkiptun-ng.c
|
||||
index dc67f5d58..43db0bc23 100644
|
||||
--- a/src/tkiptun-ng/tkiptun-ng.c
|
||||
+++ b/src/tkiptun-ng/tkiptun-ng.c
|
||||
@@ -267,7 +267,7 @@ static struct local_options
|
||||
|
||||
// unused, but needed for link
|
||||
struct devices dev;
|
||||
-struct wif *_wi_in, *_wi_out;
|
||||
+extern struct wif *_wi_in, *_wi_out;
|
||||
|
||||
struct ARP_req
|
||||
{
|
||||
@@ -289,7 +289,7 @@ struct APt
|
||||
};
|
||||
|
||||
unsigned long nb_pkt_sent;
|
||||
-unsigned char h80211[4096];
|
||||
+extern unsigned char h80211[4096];
|
||||
static unsigned char srcbuf[4096];
|
||||
static char strbuf[512];
|
||||
static int alarmed;
|
@ -1,35 +0,0 @@
|
||||
From cbfe47193bbab1f82fafb4b83c3d159a0f1fe03d Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Tue, 3 May 2022 01:34:41 +0200
|
||||
Subject: [PATCH] lib/crypto/crypto.c: fx build with libressl >= 3.5.0 (#2310)
|
||||
|
||||
Fix the following build failure with libressl >= 3.5.0:
|
||||
|
||||
lib/crypto/crypto.c: In function 'calc_mic':
|
||||
lib/crypto/crypto.c:203:2: error: variable 'ctx' has initializer but incomplete type
|
||||
203 | HMAC_CTX ctx = {0};
|
||||
| ^~~~~~~~
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/d8444dada84a54205273ac627d3e4f4692a55364
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from:
|
||||
https://github.com/aircrack-ng/aircrack-ng/commit/cbfe47193bbab1f82fafb4b83c3d159a0f1fe03d]
|
||||
---
|
||||
lib/crypto/crypto.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/crypto/crypto.c b/lib/crypto/crypto.c
|
||||
index df2c1bf41..52bc5e5ac 100644
|
||||
--- a/lib/crypto/crypto.c
|
||||
+++ b/lib/crypto/crypto.c
|
||||
@@ -196,7 +196,7 @@ void calc_mic(struct AP_info * ap,
|
||||
int i;
|
||||
unsigned char pke[100];
|
||||
#if defined(USE_GCRYPT) || OPENSSL_VERSION_NUMBER < 0x10100000L \
|
||||
- || defined(LIBRESSL_VERSION_NUMBER)
|
||||
+ || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x30500000L)
|
||||
#define HMAC_USE_NO_PTR
|
||||
#endif
|
||||
|
@ -1,6 +1,6 @@
|
||||
# From http://www.aircrack-ng.org/downloads.html
|
||||
sha1 ffeb4816476e7b329dc0c154f1aa4a30ad171beb aircrack-ng-1.6.tar.gz
|
||||
md5 22ddc85549b51ed0da0931d01ef215e5 aircrack-ng-1.6.tar.gz
|
||||
sha1 bd43a35281c9c81d958b95aa76b4404c29f904ff aircrack-ng-1.7.tar.gz
|
||||
md5 a918ea7146f91d8c799fb770c38f4bec aircrack-ng-1.7.tar.gz
|
||||
|
||||
# Hash for license file:
|
||||
sha256 fc51fd3a97223f2fd47b057202d4a6b0daaedf23b5a1f5ff8723c192fc1e021d LICENSE
|
||||
sha256 fc51fd3a97223f2fd47b057202d4a6b0daaedf23b5a1f5ff8723c192fc1e021d LICENSE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
AIRCRACK_NG_VERSION = 1.6
|
||||
AIRCRACK_NG_VERSION = 1.7
|
||||
AIRCRACK_NG_SITE = http://download.aircrack-ng.org
|
||||
AIRCRACK_NG_LICENSE = GPL-2.0+
|
||||
AIRCRACK_NG_LICENSE_FILES = LICENSE
|
||||
|
Loading…
Reference in New Issue
Block a user