Not gonna lie I'm too noob to understand how to use the above.
But the older compat-wireless drivers work just fine on R1, so I removed the new ones and used the previous version.
I use the following channel patch with current compat-wireless drivers & bt4
source:
Gmane Loom
Maxim Levitsky - 01.june 2010
works for me quite well--- a/net/wireless/chan.c
+++ b/net/wireless/chan.c
@@ -49,9 +49,12 @@ int cfg80211_set_freq(struct cfg80211_registered_device *rdev,
{
struct ieee80211_channel *chan;
int result;
+ struct wireless_dev *mon_dev = NULL;
- if (wdev && wdev->iftype == NL80211_IFTYPE_MONITOR)
+ if (wdev && wdev->iftype == NL80211_IFTYPE_MONITOR) {
+ mon_dev = wdev;
wdev = NULL;
+ }
if (wdev) {
ASSERT_WDEV_LOCK(wdev);
@@ -76,5 +79,8 @@ int cfg80211_set_freq(struct cfg80211_registered_device *rdev,
if (wdev)
wdev->channel = chan;
+ if (mon_dev)
+ mon_dev->channel = chan;
+
return 0;
}
Last edited by FooFighter007; 08-11-2010 at 05:11 AM.
best regards
Not gonna lie I'm too noob to understand how to use the above.
But the older compat-wireless drivers work just fine on R1, so I removed the new ones and used the previous version.
Dev,
It looks like after I repeated the process i got some progress. Thanks for including the drivers as of late.
I just wanted to ask though, why is it the power levels are exceedingly high after I run your process or driver update?
I finally am able to detect clients now, but the power levels are at +77 making it pretty difficult to acess any websites or AP's.
I thought if anyone knew, it would be you![]()
*I'm a girl, not a guy. Why do I care? The same reason a guy would care if he was constantly thought of as a girl...*
*I'm a girl, not a guy. Why do I care? The same reason a guy would care if he was constantly thought of as a girl...*
*I'm a girl, not a guy. Why do I care? The same reason a guy would care if he was constantly thought of as a girl...*
Hello, i've done it, just how you say and ... i can do "airodump-ng mon0" and it show me my AP but if i try to do "aireplay-ng --test mon0" it show me that there is no AP - that was on R1 . ive tried other things on final too and it worked all great but after reboot same thing, no AP, but it differs from R1 because airodump-ng doesnt work too after reboot . Im using AWUS050NH rt2870 on VMware . Im thankful for replays.
I have tried the awus036nh with backtrack 4 release 1 and this patch works ok. I have tested about 7 cards and have had no problems cracking my wep and wpa. I followed the exact commands in the blog above. The commands i used are as follows
The problem with ap being on another channel is fixed with the patch and you can carry out packet injection. I tested it with the arpreplay attack. The issue i had described above where packet injection is going ok (500pps) on but the iv`s are not increasing , happened again but just re-performing a fake authentication with the access point, and repeating the arpreplay solved my problems. Kindly give feedback.cd /usr/src/drivers/compat-wireless-2010-07-10
./scripts/driver-select rt2x00
make && make install && make unload
modprobe rt2800usb
cd
wget hxxp://blog.rootshell.be/wp-content/uploads/2010/08/chan.patch
cd /usr/src/drivers/compat-wireless-2010-07-10/net/wireless
cp /root/chan.patch /usr/src/drivers/compat-wireless-2010-07-10/net/wireless
patch -p0 < chan.patch
cd /usr/src/drivers/compat-wireless-2010-07-10
./scripts/driver-select rt2x00
make && make install && make unload
modprobe rt2800usb