---
title: "reGeorg"
weight: 30
description: "HTTP/HTTPS 隧道工具"
date: "2026-03-24T16:29:46+08:00"
lastmod: "2026-03-24T16:29:46+08:00"
---

## reGeorg

reGeorg 是一款 HTTP/HTTPS 隧道工具，用于通过 Webshell 建立 SOCKS 代理。

## 基础使用

### 上传隧道脚本
```bash
# 上传 tunnel.php/tunnel.jsp/tunnel.ashx 到目标服务器
```

### 启动本地代理
```bash
python reGeorgSocksProxy.py -p 8080 -u http://target.com/tunnel.jsp
```

### 配置 proxychains
```ini
[ProxyList]
socks5 127.0.0.1 8080
```

### 使用代理
```bash
proxychains nmap -sT target-internal.com
```

## 常用参数

| 参数 | 描述 |
|------|------|
| -p | 本地代理端口 |
| -u | 目标 URL |
| -k | 加密密钥 |
| -v | 详细模式 |

## 功能特性

- **HTTP 隧道** - 通过 HTTP 建立隧道
- **SOCKS 代理** - 完整的 SOCKS5 支持
- **多语言支持** - PHP/JSP/ASP/ASHX
- **加密传输** - 支持数据加密
- **跨平台** - 支持多种 Web 服务器

## 使用示例

```bash
# 基本使用
python reGeorgSocksProxy.py -p 8080 -u http://target.com/tunnel.jsp

# 使用加密
python reGeorgSocksProxy.py -p 8080 -u http://target.com/tunnel.jsp -k secret

# 详细输出
python reGeorgSocksProxy.py -p 8080 -u http://target.com/tunnel.jsp -v
```

## 参考资源

- [reGeorg GitHub](https://github.com/sensepost/reGeorg)
- [Neo-reGeorg GitHub](https://github.com/L-codes/Neo-reGeorg)