<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[HTB ROOMS]]></title><description><![CDATA[HTB ROOMS]]></description><link>https://htb.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Fri, 04 Sep 2026 20:28:23 GMT</lastBuildDate><atom:link href="https://htb.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Sequel]]></title><description><![CDATA[in scan what is port number of Mysql = 3306

nmap - T4 -sV -sC -O -p- -vv 
nmap -T4 -p 3306 -sC -sV -vv 

what community developed the sql version we find in scan = mariadb

When using the MySQL comma]]></description><link>https://htb.hashnode.dev/sequel</link><guid isPermaLink="true">https://htb.hashnode.dev/sequel</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Thu, 26 Mar 2026 09:58:42 GMT</pubDate><content:encoded><![CDATA[<ol>
<li>in scan what is port number of Mysql = 3306</li>
</ol>
<p>nmap - T4 -sV -sC -O -p- -vv </p>
<p>nmap -T4 -p 3306 -sC -sV -vv </p>
<ol>
<li><p>what community developed the sql version we find in scan = mariadb</p>
</li>
<li><p>When using the MySQL command line client, what switch do we need to use in order to specify a login username? = -u</p>
</li>
<li><p>Which username allows us to log into this MariaDB instance without providing a password? = root</p>
</li>
</ol>
<p>mysql -h 10.129.46.191 -u root --skip-ssl</p>
<ol>
<li><p>In SQL, what symbol can we use to specify within the query that we want to display everything inside a table? = *</p>
</li>
<li><p>In SQL, what symbol do we need to end each query with? = ;</p>
</li>
<li><p>There are three databases in this MySQL instance that are common across all MySQL instances. What is the name of the fourth that's unique to this host? = htb</p>
</li>
</ol>
]]></content:encoded></item><item><title><![CDATA[Appointment HTB]]></title><description><![CDATA[what Does SQL stands for = Structured Query Language

which is most common attack in SQL = SQL Injection

What is the 2021 OWASP Top 10 classification for this vulnerability? = AO3:2021-Injection

wha]]></description><link>https://htb.hashnode.dev/appointment-htb</link><guid isPermaLink="true">https://htb.hashnode.dev/appointment-htb</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Thu, 26 Mar 2026 08:42:18 GMT</pubDate><content:encoded><![CDATA[<ol>
<li><p>what Does SQL stands for = Structured Query Language</p>
</li>
<li><p>which is most common attack in SQL = SQL Injection</p>
</li>
<li><p>What is the 2021 OWASP Top 10 classification for this vulnerability? = AO3:2021-Injection</p>
</li>
<li><p>what service is running on PORT 80 on target ip = Apache httpd 2.4.38 ((Debian))</p>
</li>
</ol>
<p>nmap -T4 -sC -sV -O -p- -vv </p>
<ol>
<li><p>standard port for HTTPS = 443</p>
</li>
<li><p>folder called in web termenology = Directoty</p>
</li>
<li><p>HTTP response code for 'NOT FOUND' = 404</p>
</li>
<li><p>Gobuster is one tool used to brute force directories on a webserver. What switch do we use with Gobuster to specify we're looking to discover directories, and not subdomains? = dir</p>
</li>
</ol>
<p>gobuster dir -u <a href="http://192.168.x.x/">http://192.168.x.x/</a> -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -t 100</p>
<ol>
<li>What single character can be used to comment out the rest of a line in MySQL? = #</li>
</ol>
<p>10 If user input is not handled carefully, it could be interpreted as a comment. Use a comment to login as admin without knowing the password. What is the first word on the webpage returned? = Congratulations</p>
<ol>
<li>Root flag= e3d0796d002a446c0e622226f42e9672</li>
</ol>
]]></content:encoded></item><item><title><![CDATA[Redeemer]]></title><description><![CDATA[which TCP port is open on machine = 6379

nmap -T4 -sC -sV -O -p-
2 service running that port = redis

Type of database REDIS have = in-memory database

which cli REDIS use = redis-cli

flag used with]]></description><link>https://htb.hashnode.dev/redeemer</link><guid isPermaLink="true">https://htb.hashnode.dev/redeemer</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Wed, 25 Mar 2026 17:08:16 GMT</pubDate><content:encoded><![CDATA[<ol>
<li>which TCP port is open on machine = 6379</li>
</ol>
<p>nmap -T4 -sC -sV -O -p-</p>
<p>2 service running that port = redis</p>
<ol>
<li><p>Type of database REDIS have = in-memory database</p>
</li>
<li><p>which cli REDIS use = redis-cli</p>
</li>
<li><p>flag used with redis cli to specify hostname = -h</p>
</li>
</ol>
<pre><code class="language-plaintext">redis-cli -h redis15.localnet.org -p 6390 PING
PONG
</code></pre>
<ol>
<li><p>Once connected to a Redis server, which command is used to obtain the information and statistics about the Redis server? = info</p>
</li>
<li><p>version of REDIS server on target machine = 5.0.7</p>
</li>
<li><p>command use to select desired database in REDIS = 4</p>
</li>
</ol>
<p>connect with REDIS CLI  </p>
<pre><code class="language-plaintext">redis-cli -h &lt;ip_address&gt;
select 0
keys *
</code></pre>
<p>how to get flag</p>
<pre><code class="language-plaintext">get flag
</code></pre>
]]></content:encoded></item><item><title><![CDATA[Dancing HTB]]></title><description><![CDATA[what Does SMB stands for = server message block

port number of SMB = 445

service name of port 445 on tagret IP = microsoft-ds?

What is the 'flag' or 'switch' that we can use with the smbclient util]]></description><link>https://htb.hashnode.dev/dancing-htb</link><guid isPermaLink="true">https://htb.hashnode.dev/dancing-htb</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Wed, 25 Mar 2026 16:28:19 GMT</pubDate><content:encoded><![CDATA[<ol>
<li><p>what Does SMB stands for = server message block</p>
</li>
<li><p>port number of SMB = 445</p>
</li>
<li><p>service name of port 445 on tagret IP = microsoft-ds?</p>
</li>
<li><p>What is the 'flag' or 'switch' that we can use with the smbclient utility to 'list' the available shares on Dancing?</p>
</li>
<li><p>flag to list smb shares = -L { smbclient -L }</p>
</li>
<li><p>share name which can open without password = Workshares</p>
</li>
</ol>
<p># to connect with smb shell = smbclient \\\\IP\\share</p>
<ol>
<li>command to download file from SMB shell = get </li>
</ol>
]]></content:encoded></item><item><title><![CDATA[FAWN]]></title><description><![CDATA[what does FTP stands for = file transfer protocol

whst is port numbr of FTP = 21

Extension of FTP protocol which provide serurity = SFTP

Command use to send ICMP cho request = ping

FTP version fro]]></description><link>https://htb.hashnode.dev/fawn</link><guid isPermaLink="true">https://htb.hashnode.dev/fawn</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Wed, 25 Mar 2026 16:05:10 GMT</pubDate><content:encoded><![CDATA[<ol>
<li><p>what does FTP stands for = file transfer protocol</p>
</li>
<li><p>whst is port numbr of FTP = 21</p>
</li>
<li><p>Extension of FTP protocol which provide serurity = SFTP</p>
</li>
<li><p>Command use to send ICMP cho request = ping</p>
</li>
<li><p>FTP version from target ip = nmap -T4 -O -sC -sV -Pn -vv</p>
</li>
<li><p>OS we got while NMAP scan = UNIX</p>
</li>
<li><p>command to display FTP client help menu = ftp -h</p>
</li>
<li><p>username used to FTp when login without having account = anonymous {hint= When your name is not known, you are...}</p>
</li>
<li><p>response code when we get successfully login in FTP = 230</p>
</li>
<li><p>command to list = ls</p>
</li>
</ol>
<ol>
<li>command to download file from ftp server to local machine = get &lt;file_name&gt;</li>
</ol>
]]></content:encoded></item><item><title><![CDATA[Meow]]></title><description><![CDATA[Nmap Scan
nmap -O -sV -sC -p- 
we got telnet port open and we have hint that we can login ass root withouth pasword
telnet  portnumber
and get the flag]]></description><link>https://htb.hashnode.dev/meow</link><guid isPermaLink="true">https://htb.hashnode.dev/meow</guid><dc:creator><![CDATA[Piyush Shende]]></dc:creator><pubDate>Wed, 25 Mar 2026 15:41:01 GMT</pubDate><content:encoded><![CDATA[<h2>Nmap Scan</h2>
<p>nmap -O -sV -sC -p- </p>
<p>we got telnet port open and we have hint that we can login ass root withouth pasword</p>
<p>telnet  portnumber</p>
<p>and get the flag</p>
]]></content:encoded></item></channel></rss>