Skip to main content

Command Palette

Search for a command to run...

Sequel

Updated
1 min readView as Markdown
P
CTF player and Web Pentester
  1. in scan what is port number of Mysql = 3306

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

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

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

  2. When using the MySQL command line client, what switch do we need to use in order to specify a login username? = -u

  3. Which username allows us to log into this MariaDB instance without providing a password? = root

mysql -h 10.129.46.191 -u root --skip-ssl

  1. In SQL, what symbol can we use to specify within the query that we want to display everything inside a table? = *

  2. In SQL, what symbol do we need to end each query with? = ;

  3. 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

4 views