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...

C|EH (Practical) : Tips and Tricks to write Exam

About the Certified Ethical Hacker (Practical) C|EH Practical is a six-hour, rigorous exam that requires you to demonstrate the application of ethical hacking techniques such as threat vector identification, network scanning, OS detection, vulnerability analysis, system hacking, web app hacking, etc. to solve a security audit challenge. This is the next step after you have attained the highly acclaimed Certified Ethical Hacker certification. Professionals that possess the C|EH credential will be able to sit for exam that will test them to their limits in unearthing vulnerabilities across major operating systems, databases, and networks. You will be given limited time, just like in the real world. The exam was developed by a panel of experienced SMEs and includes 20 real-life scenarios with questions designed to validate essential skills required in the ethical hacking domains as outlined in the C|EH program. It is not a simulated exam but rather, it mimics a real corporate network thro...

Types of DBMS

 DBMS Types Hierarchical DBMS: Structure: Data organized in a tree-like structure with parent-child relationships. Example: IBM's Information Management System (IMS) Use case: Organizational charts, file systems Imagine a family tree: Grandparent Parent 1 Child 1 Child 2 Parent 2 Child 3 Network DBMS: Structure: Data organized in a graph-like structure allowing many-to-many relationships. Example: Integrated Data Store (IDS) Use case: Complex relationship modeling Think of a social network: Person A is friends with Person B and Person C Person B is friends with Person A and Person D Person C is friends with Person A and Person D Relational DBMS: Structure: Data organized in tables with rows and columns, using relationships between tables. Examples: MySQL, Oracle, PostgreSQL Use case: Most common type, used in various applications Imagine a library system: Books table: (ID, Title, Author, ISBN) Members table: (ID, Name, Address, Phone) Loans table...