Posts

Showing posts with the label thm

Crack The Hash TryHackMe Write-ups | THM Walkthroughs | LabViet

Image
# tryhackme TryHackMe Write-ups THM Walkthrough https://tryhackme.com/room/crackthehash $2y$12$Dwt1BZj6pcyc3Dy1FWZ5ieeUznr71EeNkJkUlypTsgbX1H68wsRom Commands: grep '^....$' /usr/share/wordlists/rockyou.txt > LabViet4.txt hashcat -a 0 -m 3200 '$2y$12$Dwt1BZj6pcyc3Dy1FWZ5ieeUznr71EeNkJkUlypTsgbX1H68wsRom' LabViet4.txt $6$aReallyHardSalt$6WKUTqzq.UQQmrm0p/T7MPpMbGNnzXPMAXi4bJMl9be.cfi3/qxIf.hsGpS41BqMhSrHVXgMpdjS6xeKZAs02. Commands: grep '^......$' /usr/share/wordlists/rockyou.txt > LabViet6.txt hashcat -a 0 -m 1800 '$6$aReallyHardSalt$6WKUTqzq.UQQmrm0p/T7MPpMbGNnzXPMAXi4bJMl9be.cfi3/qxIf.hsGpS41BqMhSrHVXgMpdjS6xeKZAs02.' LabViet6.txt e5d8870e5bdd26602cab8dbe07a942c8669e56d6:tryhackme hashcat -a 0 -m 160 'e5d8870e5bdd26602cab8dbe07a942c8669e56d6:tryhackme' /usr/share/wordlists/rockyou.txt ------------- **https://tryhackme.com/room/mrrobot** **Copyright @ http://bloggeroffer.blogspot.com** **Task 1** S1.1 nmap -sC -sV -O [ip-address] -oN basi...

Linux Fundamentals P2🐧TryHackMe: THM Write-up🕵🏿LabViet #3

Image
Explore the world of Linux with this hands-on TryHackMe tutorial. From basic commands to file management and permissions, this video covers it all. Perfect for beginners and those looking to enhance their Linux skills. Plus, don't miss the chance to enter our latest giveaway! Click the link in the Description now ► https://bit.ly/VietTube 00:00 Task 1 Introduction 00:07 Task 2 Start machine and ssh tryhackme@machine_IP use password provided in the task (tryhackme) 04:40 Task 3 Flags and Switches What directional arrow key would we use to navigate down the manual page? Down What flag would we use to display the output in a “human-readable” way? -h 06:06 Task 4 Filesystem interaction continued How would you create the file named “newnote”? touch newnote On the deployable machine, what is the file type of “unknown1” in “tryhackme’s” home directory? Command: file unknown1 Answer: ASCII text How would we move the file “myfile” to the directory “myfolder” mv myfile myfolder What are t...

5 Essential Kali Linux Commands for Beginners | LabViet Blog Post #1 🕵🏿

Image
5 Essential Kali Linux Commands for Beginners | LabViet Blog Post #1 🕵🏿 Introduction: In this blog post, we will explore the five fundamental Kali Linux commands that every beginner should become familiar with. These commands are essential for starting your journey with Kali Linux and gaining proficiency in its powerful tools for security and penetration testing. Command List: 1. Sudo su (Switch User Root): This command allows you to switch to the root user, giving you elevated privileges to perform administrative tasks. 2. Ls (List Files, Folders): The 'ls' command is used to list files and directories in the current directory, helping you navigate the file system. 3. Clear (Clear the Screen): The 'clear' command is handy for cleaning up the terminal screen, ensuring a clutter-free workspace. 4. Apt Update: Use 'apt update' to refresh the package list, ensuring you have access to the latest software updates. 5. Apt Upgrade: 'apt upgrade' is used to u...