我是靠谱客的博主 壮观香水,这篇文章主要介绍浅谈利用Node.js如何获取WI-FI密码,现在分享给大家,希望可以做个参考。

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

【推荐学习:《nodejs 教程》】

演示效果

全局安装wifi-password-cli依赖

复制代码
1
2
3
npm install wifi-password-cli -g # or npx wifi-password-cli
登录后复制

使用

复制代码
1
2
3
4
5
6
7
$ wifi-password [network-name] $ wifi-password 12345678 $ wifi-password 办公室wifi a1234b2345
登录后复制

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

实现原理

OSX系统

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

复制代码
1
security find-generic-password -D "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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'; const wifiName = require('wifi-name'); module.exports = ssid => { let fn = require('./lib/linux'); if (process.platform === 'darwin') { fn = require('./lib/osx'); } if (process.platform === 'win32') { fn = require('./lib/win'); } if (ssid) { return fn(ssid); } return wifiName().then(fn); };
登录后复制

Linux

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

OSX

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

Windows

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

最后

以上就是壮观香水最近收集整理的关于浅谈利用Node.js如何获取WI-FI密码的全部内容,更多相关浅谈利用Node内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(103)

评论列表共有 0 条评论

立即
投稿
返回
顶部