Ahmedak7 / reaver-wps

Automatically exported from code.google.com/p/reaver-wps
0 stars 0 forks source link

Walsh not installing? #137

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
For some reason walsh isn't installing. Ive made sure I'm at revision 90. When 
checking the local/bin directory reaver exists but walsh does not?

I'm currently running BTr1.

root@bt:~# svn checkout http://reaver-wps.googlecode.com/svn/trunk/ reaver
Checked out revision 90.
root@bt:~# walsh
No command 'walsh' found, did you mean:
 Command 'ralsh' from package 'puppet' (main)
walsh: command not found
root@bt:~# reaver

Reaver v1.3 WiFi Protected Setup Attack Tool
Copyright (c) 2011, Tactical Network Solutions, Craig Heffner 
<cheffner@tacnetsol.com>

Required Arguments:
    -i, --interface=<wlan>          Name of the monitor-mode interface to use
    -b, --bssid=<mac>               BSSID of the target AP

Original issue reported on code.google.com by dtman...@gmail.com on 13 Jan 2012 at 8:21

GoogleCodeExporter commented 8 years ago
try wash

Original comment by patricks...@gmail.com on 13 Jan 2012 at 8:30

GoogleCodeExporter commented 8 years ago
Nope. I checked the local/bin again as well

root@bt:~# wash
No command 'wash' found, did you mean:
 Command 'ash' from package 'ash' (universe)
 Command 'bash' from package 'bash' (main)
 Command 'dash' from package 'dash' (main)
 Command 'kash' from package 'kanif' (universe)
 Command 'wish' from package 'tk8.3' (universe)
 Command 'wish' from package 'tk8.4' (main)
 Command 'wish' from package 'tk8.5' (main)
 Command 'wish' from package 'tk' (main)
 Command 'nash' from package 'lrslib' (universe)
 Command 'sash' from package 'sash' (universe)
wash: command not found

Original comment by dtman...@gmail.com on 13 Jan 2012 at 8:32

GoogleCodeExporter commented 8 years ago
after those numeros revisions
make distclean
./configure
make
make install

Original comment by patricks...@gmail.com on 13 Jan 2012 at 8:35

GoogleCodeExporter commented 8 years ago
v1.3 was my first version installed. i just ran the svn to show i was at rev. 
90.

Original comment by dtman...@gmail.com on 13 Jan 2012 at 8:48

GoogleCodeExporter commented 8 years ago
OK i have no experience with svn... but the new name for walsh is wash.. 

Original comment by patricks...@gmail.com on 13 Jan 2012 at 8:51

GoogleCodeExporter commented 8 years ago
^^^^^^ i already tried walsh!

Original comment by dtman...@gmail.com on 13 Jan 2012 at 8:52

GoogleCodeExporter commented 8 years ago
root@bt:~# locate wash
/opt/framework/msf3/data/exploits/capture/http/forms/washingtonpost.com.txt
/opt/framework/msf3/data/exploits/capture/http/forms/.svn/prop-base/washingtonpo
st.com.txt.svn-base
/opt/framework/msf3/data/exploits/capture/http/forms/.svn/props/washingtonpost.c
om.txt.svn-work
/opt/framework/msf3/data/exploits/capture/http/forms/.svn/text-base/washingtonpo
st.com.txt.svn-base
root@bt:~# locate walsh
root@bt:~# 

Original comment by dtman...@gmail.com on 13 Jan 2012 at 8:58

GoogleCodeExporter commented 8 years ago
what happens by
which reaver
which wash

on mine its /usr/local/bin/reaver

Original comment by patricks...@gmail.com on 13 Jan 2012 at 9:05

GoogleCodeExporter commented 8 years ago
root@bt:~# which reaver
/usr/local/bin/reaver
root@bt:~# which wash
root@bt:~# 

Original comment by dtman...@gmail.com on 13 Jan 2012 at 9:07

GoogleCodeExporter commented 8 years ago
OK when you go to that directory is there a wash or not when yes may be 
chmod -x wash

Original comment by patricks...@gmail.com on 13 Jan 2012 at 9:09

GoogleCodeExporter commented 8 years ago
sorry 
chmod +x wash

Original comment by patricks...@gmail.com on 13 Jan 2012 at 9:12

GoogleCodeExporter commented 8 years ago
As stated in the first post theres no wash or walsh in that specific bin 
directory

Original comment by dtman...@gmail.com on 13 Jan 2012 at 9:12

GoogleCodeExporter commented 8 years ago
Did you re-installed reaver after running svn as said above?
Try this:

svn checkout http://reaver-wps.googlecode.com/svn/trunk/ reaver-wps-read-only
cd reaver-wps-read-only/src
./configure
sudo make
sudo make install

Original comment by andremeg...@hotmail.com on 14 Jan 2012 at 12:16

GoogleCodeExporter commented 8 years ago
is libsqlite3-dev intalled?

Original comment by patricks...@gmail.com on 15 Jan 2012 at 12:03

GoogleCodeExporter commented 8 years ago
wash should come with head svn version, it looks like make install errors out 
but it does install correctly. just give it a try after. I'm using a stock BT5.

Original comment by r...@ryanmills.net on 15 Jan 2012 at 12:20

GoogleCodeExporter commented 8 years ago
walsh should now be named wash. It should be installed to the same directory 
that the reaver binary was installed to. Did the make process create the wash 
binary in the src directory? What is the output of your 'make install' command?

Original comment by cheff...@tacnetsol.com on 15 Jan 2012 at 5:59

GoogleCodeExporter commented 8 years ago
thanks andre. the reinstall after svn worked

Original comment by dtman...@gmail.com on 16 Jan 2012 at 12:25

GoogleCodeExporter commented 8 years ago

Original comment by cheff...@tacnetsol.com on 16 Jan 2012 at 1:23

GoogleCodeExporter commented 8 years ago
sudo make install
rm -f /usr/local/bin/reaver /usr/local/bin/wash /usr/local/bin/walsh
if [ ! -d /usr/local/etc/reaver ]; then mkdir -p /usr/local/etc/reaver; fi
if [ ! -e /usr/local/etc/reaver/reaver.db ]; then cp reaver.db 
/usr/local/etc/reaver/reaver.db && chmod -R a+rw /usr/local/etc/reaver; fi
if [ -e wash ]; then cp wash /usr/local/bin/wash; fi
if [ -e reaver ]; then cp reaver /usr/local/bin/reaver;

any suggestions?

Original comment by Assaf.Vi...@gmail.com on 4 May 2014 at 12:03