inital commit

This commit is contained in:
2024-11-19 12:05:57 -06:00
commit bf917d40af
12 changed files with 831 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# HTB SQL Injection Fundamentals
## intro to mysql
djelly@htb[/htb]$ mysql -u root -h docker.hackthebox.eu -P 3306 --skip-ssl -p
mysql> CREATE DATABASE users;
mysql> USE users;
mysql> CREATE TABLE logins (
-> id INT,
-> username VARCHAR(100),
-> password VARCHAR(100),
-> date_of_joining DATETIME
-> );
mysql> SHOW TABLES;
mysql> DESCRIBE <table_name>;