从 Android 台设备中检索保存的 WiFi 密码

Retrieve the saved WiFi passwords from Android devices

我正在开发一个 Android 应用程序,我需要在其中显示手机或平板电脑中保存的 WiFi 密码。例如,如果我的手机连接到任何网络,n/w 密码就会保存在我的手机中。我想得到它。

据我所知这是不可能的。如果 sdk tools 允许这样做,将是一个安全问题。

由于安全原因,无法以编程方式检索已保存的 Wifi 密码 issue.If 你 root 你的 phone 你可能会得到它,但也是以加密形式。

除非你已经root了,否则我不知道有什么办法。如果您已获得 root 权限,或者愿意为那些好人点数获得 Galaxy 权限,您应该能够使用文件管理器(ASTRO、Root 浏览器等)来找到它。

使用文件管理器找到您的 data/misc/file 文件夹,然后查找 wpa_supplicant.conf,或者如果 his/her 网络使用的是 WEP,我认为它可能是 wep_supplicant.conf的 WPA。使用文本编辑器打开 .conf 文件(它可能内置于您的文件管理器应用程序中,如果没有,请将其添加到您的购物清单中)。此时您应该能够以纯文本形式读取密码。

您的评论在某种程度上帮助我找到了问题的解决方案。特别是@Namik Kalavadia 我说的是你谢谢你。 终于有了解决方法。

public class MainActivity extends Activity {

    File file;
    public StringBuffer ab;
    public File savefile;
    public InputStream in = null;
    public String filename = "wpa_supplicant.conf";
    public File ot_path;
    Context context;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        context = getApplicationContext();
        ot_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
        Log.d("aaa", ""+ot_path.toString());
    }

    public void path(View v){
        getPath();
    }
    private void getPath(){
        file = Environment.getRootDirectory();
        String ext = ".conf";
        File list[] = file.listFiles();
        ab = new StringBuffer();
        if(list!=null){
            fileNameSearch(list);

    }
    }

    public void fileNameSearch(File list[]){
        if(list!=null){
        for(int f = 0;f<list.length;f++){
            ab.append(list[f].getName()+"\n");

            File fi = list[f];
            String path = fi.getPath();
            if(fi.isDirectory()){
                fileNameSearch(fi.listFiles());
            }
            else if(path.endsWith(".conf")){
                if(path.contains(filename)){
                    try{
                    File fileForParse = copyFile(path,ot_path);
                    in = new FileInputStream(fileForParse);
                    getStringFromInputStream(in);

                Log.d("aaa", "conf I got it"+path);
                    }catch(Exception e){
                        e.printStackTrace();
                    }
                }
            }
        }
        }
        else{
            Log.d("aaa", "List is null in method");
        }
    }
    private File copyFile(String inputPath, File outputPath) {

        InputStream input = null;
        OutputStream out = null;
        try {

            if (!outputPath.exists())
            {
                outputPath.mkdirs();
            }
            savefile = new File(outputPath,filename);
            if (!savefile.exists()) {
                savefile.createNewFile();
                File f = new File(inputPath);
                Log.d("aaa",""+f.length());
                input = new FileInputStream(inputPath);        
                out = new FileOutputStream(savefile);
                byte[] buffer = new byte[1024];
                int read;
                while ((read = input.read(buffer)) != -1) {
                    out.write(buffer, 0, read);
                }
                Log.d("aaa",""+savefile.length());
                input.close();
                input = null;
                    out.flush();
                out.close();
                out = null;        

            }


        }  catch (FileNotFoundException fnfe1) {
            Log.e("aaa", fnfe1.getMessage());
            return null;
        }
                catch (Exception e) {
            Log.e("aaa", e.getMessage());
            return null;
        }
return savefile;
    }

    @SuppressWarnings("deprecation")
    private String getStringFromInputStream(InputStream is) {

        BufferedReader br = null;
        StringBuilder sb = new StringBuilder();

        String line;
        try {

            br = new BufferedReader(new InputStreamReader(is));
            while ((line = br.readLine()) != null) {

                if(line.contains("ssid")||line.contains("psk")){
                    sb.append(line+"\n");
                }
                if(line.contains("}")){
                    sb.append("-----------------\n");
                }

            AlertDialog ad = new AlertDialog.Builder(MainActivity.this).create();
            ad.setTitle("Lis of WiFi Passwords Saved in your Mobile");
            ad.setMessage(sb);
            ad.setButton("OK",new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {
                    // TODO Auto-generated method stub
                    finish();
                }
            });
            ad.show();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (br != null) {
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        return sb.toString();

    }

}