Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supporting Evil-Twin attacks on enterprise networks #1

Open
Esser50K opened this issue Aug 20, 2017 · 3 comments
Open

Supporting Evil-Twin attacks on enterprise networks #1

Esser50K opened this issue Aug 20, 2017 · 3 comments

Comments

@Esser50K
Copy link

This is a very interesting project and I liked how the API was used in WiFiPhisher.
I also use hostapd in my project, but in my case I just write the hostapd.conf file and call hostapd-wpe with Popen.
I'm not sure you know this but hostapd-wpe (wireless pwning edition) is a patch for hostapd that facilitates Evil-Twin attacks on enterprise networks (WPA-EAP and such). The patched version is being actively maintained by the authors of aircrack-ng.
Since this project was mainly to developed for WiFiPhisher I think this would be a great addition to the project.

Also I would like to use this library in my project but it needs to support WPA-EAP.

@anakin1028
Copy link
Collaborator

@Esser420 thanks for opening the first issue : )

The reason why we don't use hostapd-wpe and hostapd-mana are as following:

  • Since we need a good python binding so we decide to patch the hostapd by ourself.

  • If you have saw the implementation of roguehostapd, you'll discover that we don't use Popen to fork the hostapd process and instead we build the hostapd as the shared library and use ctype to bind the c-functions we're interested in.

I guess @sophron also plans about the enterprise network attack : )

@anakin1028
Copy link
Collaborator

[BTW]
Currently if you want to use KARMA attack in wifiphisher. You need to do pip install roguehostapd first;otherwise, wifiphisher will still lunch the system hostapd.

@anakin1028 anakin1028 changed the title Supporting hostapd-wpe Supporting Evil-Twin attacks on enterprise networks Aug 21, 2017
@sophron
Copy link
Member

sophron commented Aug 21, 2017

Hi @Esser420,

Thanks for reaching out. Yes, we definitely plan to implement Evil Twin against Enterprise WLANs. That was one of the reasons behind the creation of roguehostapd (#569).

roguehostapd is open-source and you are welcome to use it on your project. Note that we are currently dealing with some distribution issues that we should solve soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants
@sophron @anakin1028 @Esser50K and others