Thm Ccpentesting

THM - CCPentesting Cheatsheet

https://tryhackme.com/room/ccpentesting

Network Utilities

Web Enumeration

Metasploit

See notes on Metasploit here.

Hash Cracking

Hash Password -> It is important to know how to crack hashed passwords to gain authentication to a website or sometimes even for ssh.

Same format for virtually every tool(file with the hash(es) and they are each separated by a newline). Example:

<hash 1>

<hash 2>

<hash 3>

Same format for salted hashes:

<hash1>:<salt>

<hash2>:<salt>

<hash3>:<salt>

Note: Different hashing algorithms treat salts differently. Some prepend them and some append them. Research what it is you’re trying to crack, and make the distinction.

Salt -> (In cryptography, a salt is random data that is used as an additional input to a one-way function that hashes data, a password or passphrase. Salts are used to safeguard passwords in storage. Historically a password was stored in plaintext on a system, but over time additional safeguards developed to protect a user’s password against being read from the system. A salt is one of those methods. source wikipedia)

SQL Injection

Art of modifying an SQL query to get access to a target’s database. It is one of the most common web vulnerabilities.

Samba

Mainly found in Windows machine.

Privilege Escalation

General:

Linux:

Windows:

Final Part

Contact

If you have any questions or remarks don’t hesitate to reach out on discord to therokdaba#9872.

Go back to the homepage of this website.