gpt4 book ai didi

node.js - 如何使用 node.js 获取所有连接到 WiFi 的 MAC 地址?

转载 作者:搜寻专家 更新时间:2023-11-01 00:37:30 24 4
gpt4 key购买 nike

有没有办法使用 node.js 列出所有已连接设备的 MAC 地址?

最佳答案

您可能想试试这个像 nmap 一样工作的 Node 模块。

https://github.com/jas-/node-libnmap

var nmap = require('libnmap');

nmap.discover(function(err, report) {
if (err) throw new Error(err);

for (var item in report) {
console.log(JSON.stringify(report[item]));
}
});

这个库有一些很好的实用工具,可以满足您的需求。

还有两个其他模块也做类似的事情。

https://github.com/TheThingSystem/node-arp-a

https://github.com/goliatone/arpscan

关于node.js - 如何使用 node.js 获取所有连接到 WiFi 的 MAC 地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46383913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com