Back to project page Auditfi.
The source code is released under:
GNU General Public License
If you think the Android project Auditfi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.auditfi; // www. ja v a 2s .co m import com.auditfi.vulnerables.JAZZTELXXXX; import com.auditfi.vulnerables.WLANXXXX; public class Vulnerables{ public static boolean esCompatible(String SSID, String BSSID){ return WLANXXXX.esCompatible(SSID, BSSID) || JAZZTELXXXX.esCompatible(SSID, BSSID); } public static String obtenerClave(String SSID, String BSSID){ //Identificamos String key=""; if (WLANXXXX.esCompatible(SSID,BSSID)) { key=WLANXXXX.obtenerClave(SSID,BSSID); }else if (JAZZTELXXXX.esCompatible(SSID,BSSID)){ key=JAZZTELXXXX.obtenerClave(SSID,BSSID); } return key; } }