您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關使用Node.js怎么獲取WI-FI密碼的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
全局安裝wifi-password-cli
依賴
npm install wifi-password-cli -g # or npx wifi-password-cli
使用
$ wifi-password [network-name] $ wifi-password 12345678 $ wifi-password 辦公室wifi a1234b2345
覺得Node.js很神奇是么?其實并不是,我們看看它是如何實現的
通過下面的命令查詢wifi密碼
security find-generic-password -D "AirPort network password" -wa "wifi-name"
所有的wi-fi連接信息都在/etc/NetworkManager/system-connections/
文件夾中
我們通過下面的命令來查詢wifi密碼
sudo cat /etc/NetworkManager/system-connections/<wifi-name>
通過下面的命令查詢wifi密碼
netsh wlan show profile name=<wifi-name> key=clear
它的實現源碼也很簡單,感興趣可以學習
https://github.com/kevva/wifi-password
入口文件是index.js
,首先通過判斷用戶的操作系統去選擇不同的獲取方式
'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); };
'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; }); };
'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; }); };
'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 Content\s*: (.+)\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密碼”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。