mysql

How to Import *.sql Files in MySQL + Download Sample Tables & Database

In this tutorial we will see how to import .sql (tables or databases) files in MySQL-CLI. MariaDB and MySQL have some differences and similarities although both are commonly known as MySQL. We will use MariaDB as our database management system throughout this tutorial. You can see below how the MySQL and MariaDB prompts look like : MySQL prompt: mysql> MariaDB prompt: MariaDB [(none)]> What is a ....

April 22, 2023 · 915 words · Sumit, Nick
Social Engineering

Hacking, Social Engineering and Types of Hackers

What is Hacking ? Hacking refers to activities that seek to compromise digital devices, such as computers, smartphones, tablets, and even entire networks. And while hacking might not always be for malicious purposes, nowadays most references to hacking, and hackers, characterize it/them as unlawful activity by cybercriminals—motivated by financial gain, protest, information gathering (spying), and even just for the “fun” of the challenge. What is Social Engineering? Hacking is typically technical in nature (like creating malvertising that deposits malware in a drive-by attack requiring no user interaction)....

April 22, 2023 · 420 words · Sumit, Nick
Brutespray

Brutespray – Port Scanning and Automated Brute Forcing Tool

BruteSpray BruteSpray is an open source python tool which provides a combination of both port scanning and automated brute force attacks against scanned services. It takes the GNMAP/XML output from an nmap scan and automatically brute forces the services running with default credentials using Medusa or use your dictionary to gain access. GitHub Stats Installing BruteSpray Download the .zip file from GitHub and install it manually. Or...

April 22, 2023 · 465 words · Sumit, Nick
hello-world

The History of 'Hello, world!

Hello, world! Traditionally, ‘Hello, world!’ programs are used to illustrate how the process of coding works, as well as to ensure that a language or system is operating correctly. They are usually the first programs that new coders learn, because even those with little or no experience can execute ‘Hello, world!’ both easily and correctly. ‘Hello, world!’ is usually used as the first example for any programming language. The ‘Hello, world!...

April 22, 2023 · 325 words · Sumit, Nick