Tag: programming
-
+
+
+
+
+
+
Fawn is the second lab that HTB gives us to learn from, it gives us an insight of what FTP is and how it could be used for compromising systems. First, lets understand what FTP even is! ʕっ•ᴥ•ʔっ What is FTP? “The File Transfer Protocol (FTP) is a standard communication…
-
Key Concepts and Demos 1. Introduction to Databases 2. Creating a Database Example: CREATE DATABASE intro_to_data; USE intro_to_data; 3. Creating Tables Example: CREATE TABLE equipment_maintenance ( equipment_id INT, maintenance_cost DECIMAL(10,2), description VARCHAR(255), is_operational BOOLEAN, last_maintenance_date DATE ); 4. Inserting Data Example: INSERT INTO equipment_maintenance VALUES (101, 2500.75, ‘Engine maintenance’, TRUE,…
-
+
+
+
+
+
+
Since I’m using a text document instead of a database for simplicity, we first need to understand how to open, read, and write files in Python before diving into anything else. ദ്ദി ʕ-ᴥ• ʔ The first step is understanding the different file modes and how they determine where data is…
-
+
+
+
+
+
+
Using Tkinter has actually been a good way into implementing a GUI within the KaiPass app. Though it does have its own limitations, for a noob like me, it’s great! ʕっ•ᴥ•ʔっ❤︎ I thought this post was kind of funny, but it’s also true. Even though Tkinter is simple, it’s a…