Skip to main content

Password Security

Password Security is the first and most basic act of securing your information and data. Using strong passwords lowers the overall risk of a security breach.

Risks

• Weak Passwords

• Password Sharing

Risk Impact

• Week Passwords

o     Password can be easily guessed

o     Critical Information Loss

• Password Sharing

o     Personal / Company’s Information disclosure to other parties


How to Stop?

  •  Don’t use the same password for different applications.
  •  If password is stolen, all the information it protects is at risk and can be used to take over all your accounts
  • Don’t use personal information as password like name, birthday, driving license, passport number etc.,
  • Don’t use dictionary words in any language or abbreviations
  • Don’t use sequence or character patterns like ‘abcdef’ or adjacent letters of your keyboard
  • Don’t use sequences or repeated numbers. Examples 1234567, 44444, birthdate(11-04-72)
  • Don’t share passwords on Phones, SMS, email

Best Practices:

• The longer the password, the tougher it is to crack. Use at least 8 characters which should include Upper case, lower case letters, numbers, and special characters.

• Use a phrase /sentence for a password to easily memorize

• Make it personal or something only you can visualize.

• Remember or store code of capital letter, numbers and special characters to help you remember password. Keep your passwords code in a secure place, out of plain sight.

• Adopt strong passwords for System, Smart Phones, Applications, Soft copy Files.


Comments

Popular posts from this blog

ORACLE Express Edition: Getting Started

1. Introduction to Oracle Database 21c Express Edition (XE) - Free, lightweight version of Oracle Database - Ideal for learning and small-scale applications - Limited to 12GB of user data and uses up to 2GB of RAM 2. Installation and Setup 2.1 Installing Oracle 21c XE 1. Download Oracle 21c XE from: https://www.oracle.com/database/technologies/xe-downloads.html 2. Run the installer:    - Windows: Double-click the .exe file    - Linux: Use `rpm` or `yum` command 3. Follow the installation wizard:  Accept the license agreement Choose an installation location (default is usually fine) Set a password for the SYS, SYSTEM, and PDBADMIN accounts (write this down!) Select the option to start the database service automatically (recommended)  4. Complete the installation: Wait for the installation process to finish Note down the database connection details provided at the end The default container database (CDB) name is XE The default pluggable database (PDB) nam...

Practical 1: Getting Started with MYSQL

 Getting Started with MySQL Introduction to MySQL Definition: MySQL is an open-source relational database management system (RDBMS) Uses: Web applications, data warehousing, e-commerce, logging applications Key features: Speed, reliability, scalability, and ease of use Installing MySQL Download MySQL Community Server from official website Follow installation wizard for your operating system Set root password during installation Verify installation: mysql --version MySQL Command-line Client Accessing MySQL: mysql -u root -p Basic commands: SHOW DATABASES ; CREATE DATABASE mydb ; USE mydb ; SHOW TABLES ; MySQL Workbench Introduction: Visual tool for database design and management Key features: SQL development Data modeling Server administration Example: Creating a new connection New Connection > Enter details (hostname, username, password) PHPMyAdmin Web-based MySQL administration tool Often comes pre-installed with web hosting packag...

MYSQL Constraints

 PK - Primary Key: Uniquely identifies each record in a table. NN - Not Null: Ensures a column cannot have a NULL value. UQ - Unique: Ensures all values in a column are different. B - Binary: Stores binary byte strings. UN - Unsigned: For numeric types, allows only non-negative values. ZF - Zero Fill: Pads numeric values with zeros to the left. AI - Auto Increment: Automatically generates a unique number for new records. G - Generated Column: Value is computed from an expression. PK - Primary Key A primary key uniquely identifies each record in a table. It must contain unique values and cannot have NULL values.  Example: CREATE TABLE Students ( StudentID INT PRIMARY KEY , Name VARCHAR ( 50 ) , Age INT ) ; Here, StudentID is the primary key. NN - Not Null  This constraint ensures that a column cannot have NULL values.  Example: CREATE TABLE Employees ( EmployeeID INT PRIMARY KEY , Name VARCHAR ( 50 ) NOT NULL , Email VA...