Skip to content

Commit 2674068

Browse files
carlospolopgitbook-bot
authored andcommitted
GitBook: [master] 3 pages modified
1 parent 16cf935 commit 2674068

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

brute-force.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ crunch 6 8 -t ,@@^^%%
3737
cewl example.com -m 5 -w words.txt
3838
```
3939

40+
### [CUPP](https://github.com/Mebus/cupp)
41+
42+
Generate passwords based on your knowledge of the victim \(names, dates...\)
43+
44+
```text
45+
python3 cupp.py -h
46+
```
47+
4048
### [pydictor](https://github.com/LandGrey/pydictor)
4149

4250
### Wordlists

mobile-apps-pentesting/android-app-pentesting/frida-tutorial/frida-tutorial-2.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,5 @@ Java.perform(function () {
212212
});
213213
```
214214

215-
216-
217215
There is a part 5 that I am not going to explain because there isn't anything new. But if you want to read it is here: [https://11x256.github.io/Frida-hooking-android-part-5/](https://11x256.github.io/Frida-hooking-android-part-5/)
218216

pentesting/pentesting-postgresql.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## **Basic Information**
44

5-
**PostgreSQL** is an ****open source object-relational database system that uses and extends the SQL language.
5+
**PostgreSQL** is an _\*\*_open source object-relational database system that uses and extends the SQL language.
66

7-
**Default port:** 5432, and if this port is already in use it seems that postgresql will use the next port \(5433 probably\) which is not in use.
7+
**Default port:** 5432, and if this port is already in use it seems that postgresql will use the next port \(5433 probably\) which is not in use.
88

99
```text
1010
PORT STATE SERVICE
@@ -86,8 +86,7 @@ Client authentication is controlled by a config file frequently named _**pg\_hba
8686
![](https://lh4.googleusercontent.com/Ff8YbD3ppYmN2Omp-4M-0AAVhLsr4c2i7d7HUjgkE-O6NZ5zbaST1hdMPrp1AL_xTXJalYe0HYxUk76vWJUfHZ5GuCDvIL1A-sMV44Z0CYSVgLM9ttFTDu-BhzewBGc7FeMarTLqsu_N1ztXJg)
8787

8888
**Each** record **specifies** a **connection type**, a **client IP address range** \(if relevant for the connection type\), a **database name**, a **user name**, and the **authentication method** to be used for connections matching these parameters. The **first record with a match**ing connection type, client address, requested database, and user name **is used** to perform authentication. There is no "fall-through" or "backup": **if one record is chosen and the authentication fails, subsequent records are not considered**. If no record matches, access is denied.
89-
The **password-based** authentication methods are **md5**, **crypt**, and **password**. These methods operate similarly except for the way that the password is sent across the connection: respectively, MD5-hashed, crypt-encrypted, and clear-text. A limitation is that the crypt method does not work with passwords that have been encrypted in pg\_authid.
90-
89+
The **password-based** authentication methods are **md5**, **crypt**, and **password**. These methods operate similarly except for the way that the password is sent across the connection: respectively, MD5-hashed, crypt-encrypted, and clear-text. A limitation is that the crypt method does not work with passwords that have been encrypted in pg\_authid.
9190

9291
## **POST**
9392

0 commit comments

Comments
 (0)