# Sequel

1) in scan what is port number of Mysql = 3306

nmap - T4 -sV -sC -O -p- -vv <ip>

nmap -T4 -p 3306 -sC -sV -vv <IP>

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

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

4) 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

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

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

7) 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
