-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
133 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
Guide to securing your accounts. | ||
|
||
https://securing.guide/ | ||
https://securing.guide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html dir="ltr" lang="en-US"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> | ||
|
||
<title>Discord securing.guide</title> | ||
<meta name="title" content="securing.guide" /> | ||
<meta name="description" content="A Discord account securing guide." /> | ||
<meta name="theme-color" content="#ffffff" /> | ||
|
||
<meta property="og:type" content="website"> | ||
<meta property="og:url" content="https://securing.guide" /> | ||
<meta property="og:image" content="https://securing.guide/icons/discord.png" /> | ||
<meta property="og:title" content="securing.guide" /> | ||
<meta property="og:site_name" content="securing.guide" /> | ||
<meta property="og:description" content="A Discord account securing guide." /> | ||
|
||
<meta property="twitter:url" content="https://securing.guide" /> | ||
<meta property="twitter:title" content="securing.guide" /> | ||
<meta property="twitter:description" content="A Discord account securing guide." /> | ||
<meta property="twitter:image" content="https://securing.guide/icons/discord.png" /> | ||
|
||
<link rel="stylesheet" href="./css/style.css"> | ||
<link rel="preconnect" href="https://cdnjs.cloudflare.com"> | ||
<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=Inconsolata:[email protected]&display=swap" rel="stylesheet"> | ||
|
||
<link rel="icon" href="/favicon.ico"> | ||
<link rel="apple-touch-icon" href="/favicon.ico"> | ||
|
||
<script src="./guides/discord.js"></script> | ||
<script src="./js/generate.js" defer></script> | ||
</head> | ||
|
||
<body> | ||
<a rel="nofollow" href="https://github.com/bribes/securing.guide" target="_blank" title="GitHub Repository" | ||
class="github"><img src="./icons/github.png" alt="GitHub"></a> | ||
<div class="container"> | ||
<h1><a href="/">securing.guide</a><i>/discord</i></h1> | ||
<div class="info discord"> | ||
<img src="./icons/discord.png" width="48" alt="Discord" /> | ||
<ul id="list"> | ||
</ul> | ||
</div> | ||
<div class="paginate"> | ||
<a id="prevEl" href="javascript:prevPage()" disabled><</a> | ||
<p id="stepDisplay">step 1 of 1</p> | ||
<a id="nextEl" href="javascript:nextPage()">></a> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
window.steps = [ | ||
{ | ||
"points": [ | ||
"Sign in to your account [here](https://discord.com/login)", | ||
"Go to User Settings > My Account", | ||
"Change the email if not on OGE" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Secure the OGE if provided", | ||
"Find the account creation email", | ||
"Ensure the creation dates match" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Change the password", | ||
"Make sure your password is secure", | ||
"Click [here](https://bitwarden.com/password-generator) to generate a password" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Check for a linked phone number", | ||
"If a number exists, change it", | ||
"Use your own number if possible" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Turn off 2FA", | ||
"Remove SMS backup and security keys", | ||
"Enable 2FA with an [authenticator](https://securing.guide/2fa)" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Go back to User Settings", | ||
"Click on 'Authorized Apps'", | ||
"Remove all third-party apps" | ||
] | ||
}, | ||
{ | ||
"points": [ | ||
"Go to User Settings > Devices", | ||
"Remove any existing sessions", | ||
"Click on 'Log out all known devices'" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters