roguehostapd
roguehostapd copied to clipboard
Python3 install fix & use with wifiphisher
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