MatrixTM26/reverse-shell
GitHub: MatrixTM26/reverse-shell
该项目提供了一系列基于 C、C++ 和汇编语言编写的 Linux 与 Windows 反弹 Shell 脚本,方便安全测试中快速获取目标回连。
Stars: 3 | Forks: 1
## reverse-shell
一系列简单的 Linux 和 Windows reverse shell 脚本。
### 安装与使用
```
git clone https://github.com/MatrixTM26/reverse-shell.git
cd reverse-shell
```
### 编译
示例:
- C
```
gcc -o shellc C-shell/shell-2.c
```
- C++
```
g++ -o shellcpp CPP-shell/shell-2.c
```
- ASM
```
nasm -f elf64 -o shellasm.o ASM-shell/shell.asm
gcc shellasm.o -o shellasm -no-pie -lc
```
标签:C/C++, 事务性I/O, 汇编, 逆向shell