Skip to content

aswajith14cybersecurity/Hack-the-Box---Meow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Meow - Hack The Box

maxresdefault

CONTENTS:

Connecting to Hack The Box machine

checking connection with the target

Nmap scanning

What is telnet?

login to the machine

Capture the flag.

Connecting to Hack The Box machines:

First, we need to connect to the HTB machine using a VPN that is downloaded from HTB (Hack The Box).

My VPN: 'starting_point_dracula2001 TCP.ovpn'

if you are getting an error in connecting to VPN (like due to connected ipv6) you can disable ipv6 by using the following command:

sysctl net.ipv6.conf.all.disable_ipv6=0

Checking the connection with the target:

After getting the IP let's try to ping to the machine to check whether the host is up or down.

command: ping 10.129.251.109 ping

As you know Nmap scanning is used to scan the open ports and vulnerability.

Command: Nmap -A 10.129.251.109 {-A is used for an aggressive scan} Nmap -scan

Nmap scanningafter the scan we get to know about telnet, so let's try to exploit it. let's get into telnet.

4. What is a Telnet?

A network protocol that allows a user on one computer to log into another computer that is part of the same network.

command: telnet 10.129.251.109

Here we got stuck because we don't know the credentials. Here got a chance to do a brute-forcing attack. but first, let's try with some accounts that have self-explanatory names, such as 

Administrator

Admin

Root

Let's attempt logging in with these credentials. loggin loggin 2

finally, we logged into the target system. Now let's check for the flag  Now let's list the files in the system using the command

Command: ls

after the ls command, we can see the list of directories and files. we got 2 files: flag.txt and snap

let's open the flag.txt

command: cat flag.txt flag

finally, we got the flag. telenet

Meow has been Pwned!

About

Just a zip !!!!!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published