Try reading the error message and then, try reversing the problem. See also the aircrack-ng documents.
Hi guys,
Running BT4 from a Live CD.
I've been looking in google and the documentation abut I don't see my problem listed anywere.
After I run aireplay-ng -3 -b bssid wlan0, after the data packets reach 25K I get an error fwrite fail no space left on system. I have 8G free on my hard drive so I don't know what can be the issue.
Can someone walk me in the right direction pls? I'll be taking the penetration certs soon so I need to get this running for my test
Thanks!
Try reading the error message and then, try reversing the problem. See also the aircrack-ng documents.
To be successful here you should read all of the following.
ForumRules
ForumFAQ
If you are new to Back|Track
Back|Track Wiki
Failure to do so will probably get your threads deleted or worse.
I was able to crack my wep in wmare insteads of the live cd and it worked just fine.
Is your network interface in monitor mode?
(Because if I set my wifi0 into monitor mode i'll get a new interface named mon0 which is monitor mode enabled)
Yes, sure you can use iwconfig, but i said how I set my device into monitor mode
Increase your RAM if it's to few ..
try monitor mod
thenCode:airmon-ng
copy the wlanX
replace (X) with the number that showen in airmon-ngCode:airmon-ng wlanX
may work if the problem was with RAM
If you run 'df -h' you'll see that you don't have any space. To get around this you can install BT on a USB drive and go persistent or you can mount a volume and cd to it prior to getting your cap.
I experienced exactly the same problem as you did. And I found that it wasn't the captured packets those consumed the RAM space, but the packets those I sent out to replay.
I solved this by using the --ivs switch in airodump-ng to have only the IVs saved. Here is how the command looks like:
airodump-ng -c 1 -w filename --bssid 00:11:22:33:44:55 --ivs mon0
Be advised that the file will be saved in .ivs, instead of .cap.
You may also save the file directly to your much larger physical drive. Then, the command above would be:
airodump-ng -c 1 -w /media/disk/filename --bssid 00:11:22:33:44:55 --ivs mon0
Good luck.