这是 21 世纪的第 20 年。各种技术现在都在蓬勃发展,几乎在你能想到的每个领域都在帮助和帮助人类。以这样的进步速度,几乎不可能理解未来会发生什么。
但是,让我们暂时担心一下现在。不幸的是,有些人出于非常不人道和不道德的原因滥用这种强大的技术力量。他们通常被称为“黑客”。
到 2021 年,全球网络犯罪损失预计将高达 6 万亿美元。自 COVID-19 大流行开始以来,世卫组织报告说网络攻击增加了五倍。为了在数字世界中保持安全,需要采取一切可能的预防措施。WiFi破解和网络攻击是黑客进行的一些危险的网络攻击。您是否知道,如果黑客破解了您的 WiFi,他/她可以访问连接到该网络的所有设备?
所以,我想出了这个项目来帮助你扫描你的网络,这样你就可以监控网络上连接的可疑设备。使用 Bolt IoT 模块,您将在 Telegram 帐户中获得输出。事不宜迟……让我们开始吧!
使用下面给出的链接创建一个 Bolt Cloud 帐户(如果您没有)。如果您已经有,请直接登录。
https://cloud.boltiot.com/register/
下载 Bolt 应用程序 [ Android或Iphone ],只需按照应用程序中的说明设置 Bolt IoT WiFi 模块。您也可以参考下面的链接获取说明。
https://docs.boltiot.com/docs/adding-a-new-device
将此密钥复制并安全地存储在某处。我们稍后会需要它。
还要安全地存储设备 ID。
Telegram 是一个类似于 Whatsapp 的消息应用程序。它可以安装在Android和IOS上。
1)创建电报频道:-
2)创建一个机器人: -
恭喜!你刚刚在 Telegram 上创建了一个机器人。它会给你一个令牌。安全地存储令牌。
Virtual Box 是一款可以帮助您虚拟化您选择的任何操作系统的软件。
打开 Virtual Box 并启动您的虚拟机。打开终端。
bolt_api_key = "XXXX" # Your Bolt Cloud API Key
device_id = "XXXX" # Your device ID [BOLTXXXX where XXXX are some numbers]
telegram_chat_id = "@XXXX" # Channel name of Telegram channel. Paste after @ symbol.
telegram_bot_id = "botXXXX" # Bot Token ID of Telegram Bot. Paste after 'bot' text.
[Ctrl+X] --> y --> 回车
import requests # to make HTTP requests
import json # library for handling JSON data
from boltiot import Bolt # importing Bolt from boltiot module
import conf # config file
mybolt = Bolt(conf.bolt_api_key, conf.device_id)
import scapy.all as sc # import scapy library
# Function to Scan the IP
def scan(ip):
arp_request = sc.ARP(pdst = ip)
broadcast = sc.Ether(dst = "ff:ff:ff:ff:ff:ff")
x = broadcast/arp_request
answered_list = sc.srp(x, timeout=1, verbose=False)[0]
targets_list = []
for element in answered_list:
targets_dict = {"ip":element[1].psrc, "mac":element[1].hwsrc}
targets_list.append(targets_dict)
return targets_list
# Function to Print the Output Result
def result(results_list):
print("IP\t\tMAC Address\n-------------------------------------")
for target in results_list:
print(target["ip"] + "\t" + target["mac"])
scan_target = input("Enter target IP:\n")
scan_result = scan(scan_target)
result(scan_result)
# Function to send output to Telegram
def telegram_message(message):
url = "https://api.telegram.org/" + conf.telegram_bot_id + "/sendMessage"
data = {"chat_id": conf.telegram_chat_id, "text": message}
try:
response = requests.request("POST", url, params=data)
print("This is the Telegram URL")
print(url)
print("This is the Telegram response")
print(response.text)
telegram_data = json.loads(response.text)
return telegram_data["ok"]
except Exception as e:
print("An error occurred in sending the alert message via Telegram")
print(e)
return False
message = "These are the details of the devices connected on the network:\n" + str(scan_result)
telegram_status = telegram_message(message)
print("This is the telegram status:\n", telegram_status)
[Ctrl+X] --> y --> 回车
在运行代码之前,打开一个新终端,输入以下命令并记下您网络的网关 IP 地址(您的地址可能不同)。
PS - 要使用虚拟机扫描 WiFi 网络,您将需要一个无线网络适配器。连接适配器后,您可以继续执行相同的过程。
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
全部0条评论
快来发表一下你的评论吧 !