mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 13:13:41 +00:00
124 lines
5.4 KiB
Markdown
124 lines
5.4 KiB
Markdown
# 194,6667,6660-7000 - 渗透测试 IRC
|
||
|
||
<details>
|
||
|
||
<summary><strong>从零开始学习 AWS 黑客技术,成为专家</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE(HackTricks AWS 红队专家)</strong></a><strong>!</strong></summary>
|
||
|
||
支持 HackTricks 的其他方式:
|
||
|
||
* 如果您想看到您的**公司在 HackTricks 中做广告**或**下载 PDF 版本的 HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
||
* 获取[**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
|
||
* 探索[**PEASS 家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
* **加入** 💬 [**Discord 群组**](https://discord.gg/hRep4RUj7f) 或 [**电报群组**](https://t.me/peass) 或在 **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks\_live)** 上关注**我们。
|
||
* 通过向 [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github 仓库提交 PR 来分享您的黑客技巧。
|
||
|
||
</details>
|
||
|
||
### [WhiteIntel](https://whiteintel.io)
|
||
|
||
<figure><img src="../.gitbook/assets/image (1227).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
[**WhiteIntel**](https://whiteintel.io) 是一个由 **暗网** 提供支持的搜索引擎,提供免费功能,用于检查公司或其客户是否受到 **窃取恶意软件** 的 **侵害**。
|
||
|
||
WhiteIntel 的主要目标是打击由窃取信息的恶意软件导致的账户劫持和勒索软件攻击。
|
||
|
||
您可以访问他们的网站并免费尝试他们的引擎:
|
||
|
||
{% embed url="https://whiteintel.io" %}
|
||
|
||
***
|
||
|
||
## 基本信息
|
||
|
||
IRC 最初是一个 **纯文本协议**,由 IANA 分配了 **194/TCP**,但通常在 **6667/TCP** 和类似端口上运行,以避免需要 **root 权限** 运行。
|
||
|
||
只需一个 **昵称** 就可以连接到服务器。连接后,服务器会对用户的 IP 执行反向 DNS 查找。
|
||
|
||
用户分为 **操作员**,他们需要一个 **用户名** 和 **密码** 来获得更多权限,以及普通 **用户**。操作员具有不同级别的特权,管理员位于顶部。
|
||
|
||
**默认端口:** 194, 6667, 6660-7000
|
||
```
|
||
PORT STATE SERVICE
|
||
6667/tcp open irc
|
||
```
|
||
## 枚举
|
||
|
||
### 横幅
|
||
|
||
IRC 可以支持 **TLS**。
|
||
```bash
|
||
nc -vn <IP> <PORT>
|
||
openssl s_client -connect <IP>:<PORT> -quiet
|
||
```
|
||
### 手动
|
||
|
||
在这里,您可以看到如何使用一些**随机昵称**连接并访问IRC,然后枚举一些有趣的信息。您可以在[这里](https://en.wikipedia.org/wiki/List\_of\_Internet\_Relay\_Chat\_commands#USERIP)了解更多IRC命令。
|
||
```bash
|
||
#Connection with random nickname
|
||
USER ran213eqdw123 0 * ran213eqdw123
|
||
NICK ran213eqdw123
|
||
#If a PING :<random> is responded you need to send
|
||
#PONG :<received random>
|
||
|
||
VERSION
|
||
HELP
|
||
INFO
|
||
LINKS
|
||
HELPOP USERCMDS
|
||
HELPOP OPERCMDS
|
||
OPERATOR CAPA
|
||
ADMIN #Admin info
|
||
USERS #Current number of users
|
||
TIME #Server's time
|
||
STATS a #Only operators should be able to run this
|
||
NAMES #List channel names and usernames inside of each channel -> Nombre del canal y nombre de las personas que estan dentro
|
||
LIST #List channel names along with channel banner
|
||
WHOIS <USERNAME> #WHOIS a username
|
||
USERHOST <USERNAME> #If available, get hostname of a user
|
||
USERIP <USERNAME> #If available, get ip of a user
|
||
JOIN <CHANNEL_NAME> #Connect to a channel
|
||
|
||
#Operator creds Brute-Force
|
||
OPER <USERNAME> <PASSWORD>
|
||
```
|
||
你也可以尝试使用密码登录服务器。ngIRCd的默认密码是 `wealllikedebian`。
|
||
```bash
|
||
PASS wealllikedebian
|
||
NICK patrick
|
||
USER test1 test2 <IP> :test3
|
||
```
|
||
### **查找并扫描 IRC 服务**
|
||
```bash
|
||
nmap -sV --script irc-botnet-channels,irc-info,irc-unrealircd-backdoor -p 194,6660-7000 <ip>
|
||
```
|
||
### [暴力破解](../generic-methodologies-and-resources/brute-force.md#irc)
|
||
|
||
### Shodan
|
||
|
||
* `查找您的主机名`
|
||
|
||
### [WhiteIntel](https://whiteintel.io)
|
||
|
||
<figure><img src="../.gitbook/assets/image (1227).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
[**WhiteIntel**](https://whiteintel.io) 是一个由**暗网**推动的搜索引擎,提供免费功能,用于检查公司或其客户是否受到**窃取恶意软件**的**损害**。
|
||
|
||
WhiteIntel的主要目标是打击由窃取信息恶意软件导致的账户劫持和勒索软件攻击。
|
||
|
||
您可以访问他们的网站并免费尝试他们的引擎:
|
||
|
||
{% embed url="https://whiteintel.io" %}
|
||
|
||
<details>
|
||
|
||
<summary><strong>从零开始学习AWS黑客技术,成为专家</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE(HackTricks AWS红队专家)</strong></a><strong>!</strong></summary>
|
||
|
||
支持HackTricks的其他方式:
|
||
|
||
* 如果您想在HackTricks中看到您的**公司广告**或**下载PDF格式的HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
||
* 获取[**官方PEASS & HackTricks周边产品**](https://peass.creator-spring.com)
|
||
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们的独家[NFTs](https://opensea.io/collection/the-peass-family)收藏品
|
||
* **加入** 💬 [**Discord群**](https://discord.gg/hRep4RUj7f) 或 [**电报群**](https://t.me/peass) 或在**Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks\_live)**上关注**我们。
|
||
* 通过向[**HackTricks**](https://github.com/carlospolop/hacktricks)和[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。
|
||
|
||
</details>
|