ホームページ  >  記事  >  ウェブフロントエンド  >  Node.js を使用して WI-FI パスワードを取得する方法についての簡単な説明

Node.js を使用して WI-FI パスワードを取得する方法についての簡単な説明

青灯夜游
青灯夜游転載
2021-09-08 10:49:472849ブラウズ

Node.js を使用して WI-FI パスワードを取得するにはどうすればよいですか?次の記事では、Node.js を使用して WI-FI パスワードを取得する方法を紹介します。

Node.js を使用して WI-FI パスワードを取得する方法についての簡単な説明

[推奨学習:「nodejs チュートリアル」]

デモ効果

グローバル インストール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はすごいと思いますか?実際にはそうではありません。どのように実装されるかを見てみましょう。

実装原理

OSX システム

次のコマンドを通じて Wi-Fi パスワードをクエリします。

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

Linux システム

すべての Wi-Fi 接続情報は、/etc/NetworkManager/system-connections/ フォルダー中

にあります。

次のコマンドを使用して Wi-Fi パスワードをクエリします

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

Windows システム

次のコマンドを使用して Wi-Fi パスワードをクエリします

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

実装ソース コード

実装ソース コードも非常にシンプルです。興味があれば学習できます。

https://github.com/kevva/wifi-パスワード

エントリ ファイルは index.js です。最初にユーザーのオペレーティング システムを決定して、さまざまな取得方法を選択します

&#39;use strict&#39;;
const wifiName = require(&#39;wifi-name&#39;);

module.exports = ssid => {
	let fn = require(&#39;./lib/linux&#39;);

	if (process.platform === &#39;darwin&#39;) {
		fn = require(&#39;./lib/osx&#39;);
	}

	if (process.platform === &#39;win32&#39;) {
		fn = require(&#39;./lib/win&#39;);
	}

	if (ssid) {
		return fn(ssid);
	}

	return wifiName().then(fn);
};

Linux

&#39;use strict&#39;;
const execa = require(&#39;execa&#39;);

module.exports = ssid => {
	const cmd = &#39;sudo&#39;;
	const args = [&#39;cat&#39;, `/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(&#39;Could not get password&#39;);
		}

		return ret;
	});
};

OSX

&#39;use strict&#39;;
const execa = require(&#39;execa&#39;);

module.exports = ssid => {
	const cmd = &#39;security&#39;;
	const args = [&#39;find-generic-password&#39;, &#39;-D&#39;, &#39;AirPort network password&#39;, &#39;-wa&#39;, ssid];

	return execa(cmd, args)
		.then(res => {
			if (res.stderr) {
				throw new Error(res.stderr);
			}

			if (!res.stdout) {
				throw new Error(&#39;Could not get password&#39;);
			}

			return res.stdout;
		})
		.catch(err => {
			if (/The specified item could not be found in the keychain/.test(err.message)) {
				err.message = &#39;Your network doesn\&#39;t have a password&#39;;
			}

			throw err;
		});
};

Windows

&#39;use strict&#39;;
const execa = require(&#39;execa&#39;);

module.exports = ssid => {
	const cmd = &#39;netsh&#39;;
	const args = [&#39;wlan&#39;, &#39;show&#39;, &#39;profile&#39;, `name=${ssid}`, &#39;key=clear&#39;];

	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(&#39;Could not get password&#39;);
		}

		return ret;
	});
};

プログラミング関連の知識については、プログラミング ビデオをご覧ください。 !

以上がNode.js を使用して WI-FI パスワードを取得する方法についての簡単な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はjuejin.cnで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。