roguehostapd icon indicating copy to clipboard operation
roguehostapd copied to clipboard

Python3 install fix & use with wifiphisher

Open Talismancer opened this issue 10 months ago • 0 comments

running: "python3 setup.py install" yields an error on line 10 of roguehostapd/config/hostapdconfig.py because SafeConfigParser is deprecated. Replace line 10 with: from configparser import ConfigParser as SafeConfigParser

The next problem is that when you attempt to run wifiphisher (after you've got past it's compile problems), you'll get an error: ModuleNotFoundError: No module named 'roguehostapd.apctrl' You need to manually copy apctrl.py and the 'config' directory into the correct location:

cd roguehostapd/roguehostapd sudo cp apctrl.py /usr/local/lib/python3.13/dist-packages/roguehostapd/apctrl.py sudo cp -r config /usr/local/lib/python3.13/dist-packages/roguehostapd/

sudo wifiphisher --help

Talismancer avatar Mar 11 '25 05:03 Talismancer