Reaver hanged up on waiting for beacon

15,887

This is how you could set the channel reaver -i mon0 -b F8:7B:7A:69:9F:0F -c <channel> -vv might work a little better at least it will be more targeted.

Share:
15,887
Travis Wells
Author by

Travis Wells

# Subset-Product solver # with minor improvements import itertools import numpy s = list(map(int, input('Enter numbers WITH SPACES: ').split(' '))) print('enter target integer: ') target = int(input()) # This chunk of code is meant to experiment with no instances # in poly time. for i in s: if i &lt; 0: print('must only be positive integers') quit() check = []; if numpy.prod(s) % target == 0: check.append(target) if len(check) &lt; 1: print(target, 'is a FALSE subset product') quit() if s.count(str(target)+str(' ')) &gt; 0: print('yes') else: print('no') quit() def findsubsets(s, n): return list(itertools.combinations(s, n)) # Driver Code n = len(s) # This code snippet is a for loop. It also is intended to cut down execution # time ounce it finds the target integer. (instead of creating all combinations) res_2 = []; for i in range(1, len(s)+1): if i &gt; 1: var = (findsubsets(s, i)) kk = list(map(numpy.prod, var)) res_2.append(kk) if str(res_2).count(str(target)+str(',')) &gt; 0: print('yes') quit() if str(res_2).count(str(target)) &gt; 0: print('yes')

Updated on August 04, 2022

Comments

  • Travis Wells
    Travis Wells almost 2 years

    These are the commands I put into the terminal on my laptop.

    root@ubuntu:~# reaver -i mon0 -b F8:7B:7A:69:9F

    Reaver v1.4 WiFi Protected Setup Attack Tool
    

    Copyright (c) 2011, Tactical Network Solutions, Craig Heffner <[email protected]>

    [+] Waiting for beacon from F8:7B:7A:69:9F:0F
    
    root@ubuntu:~#  
    

    This is what it says after brute forcing it

    F8:7B:7A:69:9F:0F -43 7 0 0 6 54 WPA2 CCMP PSK p

    Edit: It's been almost 5 years since this question was asked.

    Question

    What causes Reaver to be hanged up on beacon? Could it be a software problem with Linux itself? Can it be the security used in the network? What is it?