浅谈利用Node.js如何获取WI-FI密码

 5493

利用Node.js如何获取WI-FI密码?下面本篇文章给大家介绍一下使用Node.js获取WI-FI密码的方法,希望对大家有所帮助!


浅谈利用Node.js如何获取WI-FI密码


演示效果

全局安装wifi-password-cli依赖

  1. npm install wifi-password-cli -g
  2. # or
  3. npx wifi-password-cli

使用

  1. $ wifi-password [network-name]
  2.  
  3. $ wifi-password
  4. 12345678
  5.  
  6. $ wifi-password 办公室wifi
  7. a1234b2345

觉得Node.js很神奇是么?其实并不是,我们看看它是如何实现的


实现原理

OSX系统

通过下面的命令查询wifi密码

  1. security find-generic-password -"AirPort network password" -wa "wifi-name"


Linux系统

所有的wi-fi连接信息都在/etc/NetworkManager/system-connections/文件夹中

我们通过下面的命令来查询wifi密码

  1. sudo cat /etc/NetworkManager/system-connections/<wifi-name>


Windows系统

通过下面的命令查询wifi密码

  1. netsh wlan show profile name=<wifi-name> key=clear


实现源码

它的实现源码也很简单,感兴趣可以学习:https://github.com/kevva/wifi-password

入口文件是index.js,首先通过判断用户的操作系统去选择不同的获取方式

  1. 'use strict';
  2. const wifiName = require('wifi-name');
  3.  
  4. module.exports = ssid => {
  5.     let fn = require('./lib/linux');
  6.  
  7.     if (process.platform === 'darwin') {
  8.         fn = require('./lib/osx');
  9.     }
  10.  
  11.     if (process.platform === 'win32') {
  12.         fn = require('./lib/win');
  13.     }
  14.  
  15.     if (ssid) {
  16.         return fn(ssid);
  17.     }
  18.  
  19.     return wifiName().then(fn);
  20. };


Linux

  1. 'use strict';
  2. const execa = require('execa');
  3.  
  4. module.exports = ssid => {
  5.     const cmd = 'sudo';
  6.     const args = ['cat', `/etc/NetworkManager/system-connections/${ssid}`];
  7.  
  8.     return execa.stdout(cmd, args).then(stdout => {
  9.         let ret;
  10.  
  11.         ret = /^\s*(?:psk|password)=(.+)\s*$/gm.exec(stdout);
  12.         ret = ret && ret.length ? ret[1] : null;
  13.  
  14.         if (!ret) {
  15.             throw new Error('Could not get password');
  16.         }
  17.  
  18.         return ret;
  19.     });
  20. };


OSX

  1. 'use strict';
  2. const execa = require('execa');
  3.  
  4. module.exports = ssid => {
  5.     const cmd = 'security';
  6.     const args = ['find-generic-password', '-D', 'AirPort network password', '-wa', ssid];
  7.  
  8.     return execa(cmd, args)
  9.         .then(res => {
  10.             if (res.stderr) {
  11.                 throw new Error(res.stderr);
  12.             }
  13.  
  14.             if (!res.stdout) {
  15.                 throw new Error('Could not get password');
  16.             }
  17.  
  18.             return res.stdout;
  19.         })
  20.         .catch(err => {
  21.             if (/The specified item could not be found in the keychain/.test(err.message)) {
  22.                 err.message = 'Your network doesn\'t have a password';
  23.             }
  24.  
  25.             throw err;
  26.         });
  27. };


Windows

  1. 'use strict';
  2. const execa = require('execa');
  3.  
  4. module.exports = ssid => {
  5.     const cmd = 'netsh';
  6.     const args = ['wlan', 'show', 'profile', `name=${ssid}`, 'key=clear'];
  7.  
  8.     return execa.stdout(cmd, args).then(stdout => {
  9.         let ret;
  10.  
  11.         ret = /^\s*Key Content\s*: (.+)\s*$/gm.exec(stdout);
  12.         ret = ret && ret.length ? ret[1] : null;
  13.  
  14.         if (!ret) {
  15.             throw new Error('Could not get password');
  16.         }
  17.  
  18.         return ret;
  19.     });
  20. };


TAG标签:
本文网址:https://www.zztuku.com/detail-9137.html
站长图库 - 浅谈利用Node.js如何获取WI-FI密码
申明:如有侵犯,请 联系我们 删除。

评论(0)条

您还没有登录,请 登录 后发表评论!

提示:请勿发布广告垃圾评论,否则封号处理!!

    编辑推荐

    一起聊聊JavaScript函数式编程