2024-02-07 05:49:16 +00:00
|
|
|
|
# 4786 - Cisco Smart Install
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
* 您在**网络安全公司**工作吗?您想在HackTricks中看到您的**公司广告**吗?或者您想访问**PEASS的最新版本或下载HackTricks的PDF**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
|
|
|
|
* 发现我们的独家[NFTs收藏品**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
|
|
|
|
* 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
|
|
|
|
* **加入** [**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f) 或 [**电报群组**](https://t.me/peass) 或 **关注**我在**Twitter** **🐦**[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
|
|
|
|
* **通过向[hacktricks repo](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享您的黑客技巧**。
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
## 基本信息
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**Cisco Smart Install**是思科设计的用于自动化新思科硬件的初始配置和操作系统镜像加载的工具。**默认情况下,Cisco Smart Install在思科硬件上处于活动状态,并使用传输层协议TCP,端口号为4786。**
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**默认端口:** 4786
|
2022-09-30 10:43:59 +00:00
|
|
|
|
```
|
|
|
|
|
PORT STATE SERVICE
|
|
|
|
|
4786/tcp open smart-install
|
|
|
|
|
```
|
2024-02-07 05:49:16 +00:00
|
|
|
|
## **Smart Install Exploitation Tool**
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**在2018年,发现了该协议中的一个关键漏洞CVE-2018-0171。威胁级别在CVSS评分中为9.8。**
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**向处于活动状态的TCP/4786端口发送一个特制数据包会触发缓冲区溢出,允许攻击者:**
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
* 强制重新启动设备
|
|
|
|
|
* 调用RCE
|
|
|
|
|
* 窃取网络设备的配置。
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**[SIET](https://github.com/frostbits-security/SIET)(Smart Install Exploitation Tool)**被开发用于利用这个漏洞,它允许您滥用Cisco Smart Install。在本文中,我将向您展示如何读取合法的网络硬件配置文件。配置外泄对于渗透测试人员可能很有价值,因为它将了解网络的独特特性。这将使生活更轻松,并允许找到攻击的新向量。
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
**目标设备将是“实时”Cisco Catalyst 2960交换机。虚拟镜像没有Cisco Smart Install,因此您只能在真实硬件上进行练习。**
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
目标交换机的地址为**10.10.100.10且CSI处于活动状态。**加载SIET并开始攻击。**-g参数**表示从设备中外泄配置,**-i参数**允许您设置易受攻击目标的IP地址。
|
2022-09-30 10:43:59 +00:00
|
|
|
|
```
|
|
|
|
|
~/opt/tools/SIET$ sudo python2 siet.py -g -i 10.10.100.10
|
|
|
|
|
```
|
|
|
|
|
<figure><img src="../.gitbook/assets/image (302).png" alt=""><figcaption></figcaption></figure>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
交换机配置 **10.10.100.10** 将位于 **tftp/** 文件夹中
|
2022-09-30 10:43:59 +00:00
|
|
|
|
|
|
|
|
|
\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<figure><img src="../.gitbook/assets/image (73).png" alt=""><figcaption></figcaption></figure>
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
2024-02-07 05:49:16 +00:00
|
|
|
|
* 你在一家 **网络安全公司** 工作吗?想要在 HackTricks 中看到你的 **公司广告**?或者想要访问 **PEASS 的最新版本或下载 HackTricks 的 PDF**?查看 [**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)!
|
|
|
|
|
* 探索我们的独家 [**NFTs**](https://opensea.io/collection/the-peass-family) 集合 [**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
|
|
|
|
* 获取 [**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
|
|
|
|
|
* **加入** [**💬**](https://emojipedia.org/speech-balloon/) **Discord 群组**](https://discord.gg/hRep4RUj7f) 或 **电报群组** 或 **在 Twitter 上关注** **🐦**[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
2023-08-03 19:12:22 +00:00
|
|
|
|
* **通过向 [hacktricks 仓库](https://github.com/carlospolop/hacktricks) 和 [hacktricks-cloud 仓库](https://github.com/carlospolop/hacktricks-cloud) 提交 PR 来分享你的黑客技巧**。
|
2022-09-30 10:27:15 +00:00
|
|
|
|
|
|
|
|
|
</details>
|