-
Notifications
You must be signed in to change notification settings - Fork 0
/
CP2.html
69 lines (59 loc) · 3.73 KB
/
CP2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="icon" href="img/cycm.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Alex+Brush&family=Baloo+Tammudu+2&family=Open+Sans&family=Orbitron&family=Roboto:wght@300&display=swap" rel="stylesheet">
<title>CyberCrime Help Desk | GCESC CLASS 7 BOYS</title>
</head>
<body class="font-fav">
<style type="text/css">
.body{
padding: 0 100px;
margin-top: 100px;
text-align: center;
}
.body h1{
color: red;
}
.body h2{
color: green;
}
</style>
<div class="parent">
<div id="navbar">
<a class="active" href="index.html">Introduction</a>
<a href="qna.html">Back</a>
<a href="extra.html">Extra Problems?</a>
</div>
<div class="body">
<h1>Code: CP2- Cracking Passwords</h1>
<h2>Solution and precaution to these:</h2>
<p>• Use strong passwords. This means using a password that is at least 12 characters long and includes a mix of upper and lowercase letters, numbers, and symbols. Avoid using common words or phrases, as well as any personal information that could be easily guessed, such as your name, birthday, or address.<br>
• Use a passphrase. A passphrase is a string of random words that are strung together to form a password. Passphrases are generally easier to remember than traditional passwords, but they can be much more difficult to crack.<br>
• Use a password manager. A password manager is a software application that helps you to create and store strong passwords for all of your online accounts. Password managers can also generate random passwords for you, which can help to ensure that all of your passwords are unique and secure.<br>
• Enable two-factor authentication (2FA). 2FA adds an extra layer of security to your online accounts by requiring you to enter a code from your phone in addition to your password when logging in. 2FA can help to protect your accounts even if your password is compromised.<br>
• Be careful about where you enter your passwords. Avoid entering your passwords on public computers or unsecured Wi-Fi networks. If you do need to enter your password on a public computer, be sure to use a virtual private network (VPN) to encrypt your traffic.<br>
• Change your passwords regularly. It is a good idea to change your passwords every few months, or immediately if you suspect that your password may have been compromised.
</p>
</div>
<footer>
<p>Product Owner: Ghatail Cantonment English School And College, Class 7 Boys<br>
"Copyright©"</p>
</footer>
</body><script>
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script></html>