真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Node.js怎么獲取WI-FI密碼

這篇文章給大家分享的是有關(guān)使用Node.js怎么獲取WI-FI密碼的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

站在用戶(hù)的角度思考問(wèn)題,與客戶(hù)深入溝通,找到興國(guó)網(wǎng)站設(shè)計(jì)與興國(guó)網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶(hù)體驗(yàn)好的作品,建站類(lèi)型包括:網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)虛擬主機(jī)、企業(yè)郵箱。業(yè)務(wù)覆蓋興國(guó)地區(qū)。

演示效果

全局安裝wifi-password-cli依賴(lài)

npm install wifi-password-cli -g
# or
npx wifi-password-cli

使用

$ wifi-password [network-name]

$ wifi-password
12345678

$ wifi-password 辦公室wifi
a1234b2345

覺(jué)得Node.js很神奇是么?其實(shí)并不是,我們看看它是如何實(shí)現(xiàn)的

實(shí)現(xiàn)原理

OSX系統(tǒng)

通過(guò)下面的命令查詢(xún)wifi密碼

security find-generic-password -D "AirPort network password" -wa "wifi-name"

Linux系統(tǒng)

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

我們通過(guò)下面的命令來(lái)查詢(xún)wifi密碼

sudo cat /etc/NetworkManager/system-connections/

Windows系統(tǒng)

通過(guò)下面的命令查詢(xún)wifi密碼

netsh wlan show profile name= key=clear

實(shí)現(xiàn)源碼

它的實(shí)現(xiàn)源碼也很簡(jiǎn)單,感興趣可以學(xué)習(xí)

https://github.com/kevva/wifi-password

入口文件是index.js,首先通過(guò)判斷用戶(hù)的操作系統(tǒng)去選擇不同的獲取方式

'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

'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

'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

'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;
	});
};

感謝各位的閱讀!關(guān)于“使用Node.js怎么獲取WI-FI密碼”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


名稱(chēng)欄目:使用Node.js怎么獲取WI-FI密碼
標(biāo)題URL:http://weahome.cn/article/ijdgod.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部