mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
GitBook: [master] 2 pages modified
This commit is contained in:
parent
5208417c1b
commit
d399bd17b6
2 changed files with 11 additions and 0 deletions
|
@ -184,6 +184,7 @@
|
|||
* [69/UDP TFTP/Bittorrent-tracker](pentesting/69-udp-tftp.md)
|
||||
* [79 - Pentesting Finger](pentesting/pentesting-finger.md)
|
||||
* [80,443 - Pentesting Web Methodology](pentesting/pentesting-web/README.md)
|
||||
* [Moodle](pentesting/pentesting-web/moodle.md)
|
||||
* [Golang](pentesting/pentesting-web/golang.md)
|
||||
* [Uncovering CloudFlare](pentesting/pentesting-web/uncovering-cloudflare.md)
|
||||
* [Laravel](pentesting/pentesting-web/laravel.md)
|
||||
|
|
10
pentesting/pentesting-web/moodle.md
Normal file
10
pentesting/pentesting-web/moodle.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Moodle
|
||||
|
||||
## Dump Credentials
|
||||
|
||||
```bash
|
||||
/usr/local/bin/mysql -u <username> --password=<password> -e "use moodle; select email,username,password from mdl_user; exit"
|
||||
```
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue