Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

View File

@@ -0,0 +1,32 @@
From c7040da3a9ff98cd8063b9d5b5a7721374186391 Mon Sep 17 00:00:00 2001
From: rofl0r <retnyg@gmx.net>
Date: Fri, 22 Feb 2019 17:38:24 +0000
Subject: [PATCH] fix #271
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Retrieved from:
https://github.com/t6x/reaver-wps-fork-t6x/commit/c7040da3a9ff98cd8063b9d5b5a7721374186391]
---
src/wps/wps_attr_parse.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/wps/wps_attr_parse.c b/src/wps/wps_attr_parse.c
index 30b0e79..d681b70 100644
--- a/src/wps/wps_attr_parse.c
+++ b/src/wps/wps_attr_parse.c
@@ -443,12 +443,12 @@ int wps_parse_msg(const struct wpabuf *msg, struct wps_parse_attr *attr)
* Mac OS X 10.6 seems to be adding 0x00 padding to the
* end of M1. Skip those to avoid interop issues.
*/
- int i;
- for (i = 0; i < end - pos; i++) {
+ uintptr_t i, left = end - pos;
+ for (i = 0; i < left; i++) {
if (pos[i])
break;
}
- if (i == end - pos) {
+ if (i == left) {
wpa_printf(MSG_DEBUG, "WPS: Workaround - skip "
"unexpected message padding");
break;

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_REAVER
bool "reaver"
select BR2_PACKAGE_LIBPCAP
help
Reaver is a tool to audit networks against brute WPS pins
attacks. It is complementary to "Aircrack-ng".
https://code.google.com/archive/p/reaver-wps/wikis/README.wiki
https://github.com/t6x/reaver-wps-fork-t6x

View File

@@ -0,0 +1,3 @@
# locally computed
sha256 350a89b068f8b461e6459b739d4f5f301db01f115d75f4d698a1f2830149c412 reaver-9bae55bd30b6d46b42da3a09dc23c8b0f9341996.tar.gz
sha256 bb40cfd5e9ca6e8465ea3c236f3f2293e8300af1bfe87e72fabe482ae6cc995a docs/LICENSE

View File

@@ -0,0 +1,23 @@
################################################################################
#
# reaver
#
################################################################################
# Older repos for this project will not cross-compile easily
# while this one works right away
REAVER_VERSION = 9bae55bd30b6d46b42da3a09dc23c8b0f9341996
REAVER_SITE = $(call github,t6x,reaver-wps-fork-t6x,$(REAVER_VERSION))
REAVER_LICENSE = GPL-2.0+
REAVER_LICENSE_FILES = docs/LICENSE
REAVER_SUBDIR = src
REAVER_DEPENDENCIES = libpcap
ifeq ($(BR2_STATIC_LIBS),y)
REAVER_CONF_ENV += \
LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`" \
LDFLAGS="$(TARGET_LDFLAGS) `$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
endif
$(eval $(autotools-package))