Version 1.18.2 of Nightcord contained a TokenLogger
Never lose your Discord token ever again, thanks to Nightcord's ✨ PREMIUM SYNC ✨ services!
This code found in v1.18.2 uploads your Discord token to Nightcord's Server.

(Working as of 2025-02-09)
There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.
If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.
| #!/usr/bin/env nu | |
| def ind [level: int = 2, symbol: string = " "] { | |
| mut id = '' | |
| if $level > 0 { # fix for single runs of 1..0 | |
| for i in 1..$level { | |
| $id += $symbol | |
| } | |
| } | |
| $id + $in |
| #!/bin/bash | |
| STEAMAPPS_PATH=${1-~/.steam/steam/steamapps} | |
| FALLGUYS_PATH=$STEAMAPPS_PATH/common/Fall\ Guys | |
| if [ ! -d "$FALLGUYS_PATH" ]; then | |
| echo Unable to find Fall Guys Path. | |
| exit | |
| fi | |
| #Create symlink | |
| ln -s "$FALLGUYS_PATH/EasyAntiCheat/easyanticheat_x64.so" "$FALLGUYS_PATH/FallGuys_client_game_Data/Plugins/x86_64/easyanticheat_x64.so" |
| https://github.com/nuvious/pam-duress | |
| A Pluggable Authentication Module (PAM) which allows the establishment of alternate passwords that can be used to perform actions to clear sensitive data, notify IT/Security staff, close off sensitive network connections, etc if a user is coerced into giving a threat actor a password. | |
| https://github.com/uber/pam-ussh | |
| uber's ssh certificate pam module | |
| https://github.com/Yubico/yubico-pam | |
| Yubico Pluggable Authentication Module (PAM) | |
| https://github.com/hamzasood/pam_touchid |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).| trigger: | |
| - master | |
| pool: | |
| vmImage: 'ubuntu-latest' | |
| variables: | |
| imageRepository: 'multi-stage-build-caching' | |
| containerRegistry: 'ACR-Service-Connection-Name' | |
| registryName: '[redacted].azurecr.io' |
| const MY_DOMAIN = "agodrich.com" | |
| const START_PAGE = "https://www.notion.so/gatsby-starter-notion-2c5e3d685aa341088d4cd8daca52fcc2" | |
| const DISQUS_SHORTNAME = "agodrich" | |
| addEventListener('fetch', event => { | |
| event.respondWith(fetchAndApply(event.request)) | |
| }) | |
| const corsHeaders = { | |
| "Access-Control-Allow-Origin": "*", |