SQL _Queries Resource: https://balanced-quince-db1.notion.site/SQL-7347f5956fe347f887b4132c716cd236#17bc403a1add453db519621da47c1de3 Database queries CREATE DATABASE LOGICFIRST; -- creates a new database -- TO DELETE A DATABASE DROP DATABASE LOGICFIRST; DROP SCHEMA LOGICFIRST; -- same as above. u can use DATABASE Or SCHEMA DROP SCHEMA IF EXISTS LOGICFIRST; -- prevents error if db not found SHOW DATABASES; -- shows all the databases SHOW SCHEMAS; -- same as above. shows schemas/db USE SYS; -- uses this database for all further commands SHOW TABLES;-- shows all tables in the database being used Table - Create,Delete,Alter primary key - uniquely identifies a row in a table //creating a table CREATE TABLE student( id INT PRIMARY KEY, name VARCHAR(30), gpa DECIMAL(3,2) ); -- ----or----- CREATE ...
W eb Application Vulnerability Scanner Tool Name: NUCLEI Description Nuclei are used to send requests across targets based on a template, leading to zero false positives and providing fast scanning on a large number of hosts. Nuclei offer to scan for a variety of protocols, including TCP, DNS, HTTP, SSL, File, Whois, Websocket, Headless, etc. With powerful and flexible templating, Nuclei can be used to model all kinds of security checks. Nuclei are a fast, template-based vulnerability scanner focusing on extensive configurability , massive extensibility, and ease of use. Installation & Demonstration Usage: CMD : nuclei -h Step 1: Download and install before use nuclei Go lang in kali linux CMD : sudo apt-get update & sudo apt-get upgrade CMD: sudo apt-get install -y golang Step 2: Download and in...
Comments
Post a Comment