PGP 2FA is the single most effective way to protect your darknet market account. Without it, a phishing link or a leaked password means your account is gone — along with any funds in it. With PGP 2FA, even if someone has your username and password, they can't log in without your private key.
This guide walks through everything: generating a PGP key pair, setting up 2FA on Nexus Market, and staying safe from common phishing tactics. You don't need to be a crypto expert. Follow the steps and you're good.
What You'll Need
- A computer running Linux, macOS, or Windows (WSL works)
- GPG installed (
gpg --versionto check) - Tor Browser from torproject.org
- A verified Nexus Market onion mirror from our homepage
Step 1: Generate Your PGP Key
Open a terminal and run:
gpg --full-generate-key
Choose RSA and RSA (default). Set keysize to 4096 bits. Expiration: 2 years. Use a pseudonym — never your real name. Add the email you'll use on the market. Protect the passphrase with something strong but memorable.
After generation, verify your key exists:
gpg --list-secret-keys --keyid-format LONG
Look for a line like sec rsa4096/4A3F8E2D9C11B8F0. That's your key ID.
Step 2: Export Your Public Key
gpg --export --armor 4A3F8E2D9C11B8F0
This prints your public key. Copy everything from -----BEGIN PGP PUBLIC KEY BLOCK----- to -----END PGP PUBLIC KEY BLOCK-----.
Step 3: Enable 2FA on Nexus Market
On Nexus Market, go to Account Settings → PGP → paste your public key → Save. The market will send you a signed message. Verify it:
gpg --verify message.txt.asc
If the signature is valid, confirm it on the market. PGP 2FA is now active.
Step 4: Log In with 2FA
Next time you log in, after entering your password, the market will present a PGP challenge message. Copy it, decrypt with your key:
gpg --decrypt challenge.txt.asc
Paste the decrypted response back into the login form. Done. You're in.
How to Spot Phishing Attempts
Phishing is the biggest threat on darknet markets. Here's how PGP 2FA stops it:
- Fake login page: You type your credentials, it sends you a PGP challenge. But the challenge isn't from the real market — your key will show a different fingerprint. Always check the fingerprint.
- Fake support message: Someone claiming to be market support asks for your private key. Real support never needs your private key. Ever.
- Fake mirror: A clone site that looks identical. But the PGP fingerprint is different. Verify
4A3F 8E2D 9C11 B8F0 6A22 7D99 1E4F 8B3C A7D2 9E45before entering anything.
Extra Tips
- Air-gap your key: Store your private key on an encrypted USB that stays offline. Use it only to sign in.
- Hardware key: Consider a Nitrokey or YubiKey to store your PGP key. They can't be copied.
- Backup: Keep a backup of your key and revocation certificate somewhere safe. If you lose your key, you lose your account.
- Revocation: Generate a revocation certificate now, not when you need it:
gpg --gen-revoke 4A3F8E2D9C11B8F0