Skip to content
DevMeme
6612 of 7435
Gaming Mouse Vulnerability Mic-E-Mouse Could Enable Acoustic Eavesdropping via Surface Vibrations
Security Post #7245, on Oct 9, 2025 in TG

Gaming Mouse Vulnerability Mic-E-Mouse Could Enable Acoustic Eavesdropping via Surface Vibrations

Why is this Security meme funny?

Level 1: Give a Mouse a Mic

Imagine you have a regular computer mouse that you use to play games. Now, picture that this mouse is so sensitive and so fast that it can feel tiny shakes from people talking in the room. It’s almost like your mouse has very good ears! This funny meme says, “What if the people who make games decide to use that to spy on cheaters?” In simple terms: your mouse could act like a little microphone, picking up your voice without you knowing. It’s a silly and slightly scary idea — kind of like if your toy car could secretly listen to your conversations. People find it funny because it’s so extreme and cartoonish: a mouse that listens to you, and game police trying to catch cheaters by overhearing them. It’s joking that something meant for playing (your mouse) might be used for sneaking around. The idea is so out-there that it makes us laugh, but it also makes us think, “Wow, technology can be weird in unexpected ways!” In the end, it’s like a spy story starring your computer mouse, and that mix of surprise and humor is why everyone is chuckling about it.

Level 2: Sensors Gone Spy

For those newer to these concepts, let’s break down what’s going on. This meme is joking about a security vulnerability that turns a regular gaming mouse into an eavesdropping device. A “side channel” in cybersecurity is like an unintended path for information. Imagine you lock a box but the hinges squeak in different ways depending on the key – a spy could listen to the squeaks to figure out the key. Similarly, a side-channel attack doesn’t break the main security of a system (we’re not hacking the microphone or the game directly) but uses side information (in this case, data from a mouse sensor) to deduce something secret (your speech). The tag side_channel_audio literally means using some non-microphone gadget to capture audio.

Now, why a mouse? Gaming mice have gotten super fancy. They often advertise high DPI (dots per inch sensitivity) and high polling rates. Polling rate is how often the mouse reports its position to the computer. Standard USB mice poll at 125 Hz (125 times per second) which is fine for normal use. But competitive gamers crave ultra responsiveness, so you get mice polling at 1000 Hz (1 kHz) and even 8000 Hz (8 kHz) on top-tier models. Brands like SteelSeries, Logitech, Razer and sensor makers like PixArt push these specs as selling points. For example, the PixArt PAW3395 sensor is known in enthusiast circles for supporting up to 8 kHz polling, which many OEMs (original equipment manufacturers) put in their flagship mice. The infographic’s pink chart lists sensors: it shows models (PAW3395, PAW3399) going from 1–8 kHz, and more common ones like “Sensei 310” or “Model O” at 1 kHz. The IntelliMouse (a famous Microsoft mouse, originally 90s tech revived as a modern version) is also at 1 kHz. The graph suggests higher polling rates = more vulnerability (the plotted curve going upward). Essentially, the faster the mouse gathers data, the more it can pick up unintended signals like tiny vibrations.

So, if your mouse is sampling movement thousands of times a second, it might pick up vibrations from your environment — including sound. Sound is just vibration through air (which can also make solid surfaces vibrate). Put a sensitive device on a desk, speak near it, and the sound waves cause teeny movements of the device relative to the desk. A high_polling_rate_sensor can accidentally record those teeny movements as if they were part of your mouse movements. Security researchers discovered they could decode those signals back into actual audio (speech). They cheekily named the vulnerability “Mic-E-Mouse” (pronounced like Mickey Mouse, the cartoon, but with “Mic” as in microphone). The name implies your mouse turned into a microphone like a little cartoon mouse with big ears. 🐭🎤

The meme then jokes: game companies that make anti-cheat software will rush to use this by tomorrow. Anti-cheat software is what games use to detect if players are cheating (using aimbots, wallhacks, or other unauthorized mods that give unfair advantage). Some anti-cheat runs in the kernel, meaning it has very deep access to your system (basically the highest level of privilege on your computer). For example, Riot’s Vanguard (for Valorant) and some others start when your computer boots and keep a watchful eye on everything to prevent cheating programs from hiding. People often find this creepy or too invasive, but game makers argue it’s necessary to stop cheaters who can be very sneaky. The meme’s caption, “they’re gonna add this to kernel level anticheat and listen for cheating related hotwords by tomorrow,” is satirizing how quick these anti-cheat devs might be to adopt any new tool, no matter how invasive, if it could possibly help catch cheaters.

Think about “cheating related hotwords” – that means specific words or phrases associated with cheating. For instance, if someone says “trigger bot on” or “enable hack now” into their mic while gaming, those could be hotwords. It’s a silly idea because real cheaters wouldn’t broadcast that, but anti-cheat companies sometimes seem desperate for any telltale sign. The meme humorously suggests they’d go so far as to listen to your room audio through your mouse just to catch a whiff of cheating. And doing it at the kernel level means it’s very low-level and hard to detect or block. It’s an extreme form of surveillance under the banner of stopping cheaters.

Let’s clarify a few terms and elements for clarity:

  • Kernel level: The kernel is like the core of your operating system (Windows, Linux, etc.), managing hardware and critical stuff. Kernel-level programs have complete control (like drivers or core system services). An anti-cheat running at this level can access hardware directly (like reading your mouse input without you knowing) and even filter or modify system calls. It’s powerful but dangerous if misused.
  • Wiener filtering: This was mentioned as part of processing the signal. For a junior dev or student, just know it’s a type of smart noise reduction. It’s like a very advanced hiss-remover that tries to guess the true signal behind messy data. Not something you’d code from scratch on your first project, but it’s standard in signal processing toolkits.
  • Machine-learning signal processing: This indicates they likely trained a machine learning model to recognize speech features from the noisy data. For example, an ML algorithm could learn how the word “cheat” looks in the spectrogram of the mouse data. It’s the kind of pattern recognition task ML excels at these days.
  • OSS software → adversary → attack injection: This part of the infographic is saying the attacker could use open-source software as a vehicle. Perhaps the mouse’s driver or software is open-source (or uses open components), and an adversary sneaks malicious code into it (attack injection). This is how supply chain attacks happen: the bad code gets into software that hardware vendors or users trust, and then it gets “deployed” onto systems, enabling the exploit. In simpler terms, the hacker hides the spying code in a software update or a plugin that people install as part of their mouse configuration software.
  • Recovered Audio vs Noisy Patterns: They show a comparison of before and after processing. Initially, the captured data is practically gibberish (“unintelligible”). After using filtering techniques, you can see recognizable patterns (still noisy, but with clear streaks that correspond to sound frequencies of speech). It’s like taking a blurry image and sharpening it just enough to make out what it is.

In plain development terms, think of it like this: the mouse gives a stream of x/y movement data. Normally, that just moves your cursor. But hidden in that stream is a faint imprint of the audio around you. By crunching a lot of numbers (fast Fourier transforms, filters, and ML), you can extract a secondary signal (voice) from that data. It’s akin to finding a radio station embedded in static. The meme exaggerates that anti-cheat devs might repurpose this technique to actually enforce game rules.

It’s funny to techies because it combines a serious bug with a bit of science fiction-sounding solution. In reality, no game company has announced doing this (as of the meme’s post). But the joke lands because anti-cheat measures have been getting more hardcore. There’s even been talk of some games wanting to monitor voice chat for toxic behavior (with permission), so the idea of them not even asking permission and just pulling audio via a hardware hack is a sarcastic slippery slope.

To a junior dev or someone new: don’t worry, your mouse isn’t literally spying on you out-of-the-box. This requires someone actively exploiting the vulnerability (like malicious code running on your PC that knows how to interpret mouse data this way). It’s not something that just “happens” by itself. The meme is more of a commentary on the state of tech: we create super-complex hardware for fun and profit (high-end gaming gear), clever researchers find a bizarre security hole in it, and then industry folks joke about what extreme use (or misuse) might come next. It’s a mix of Security, Hardware, and dark comedy about Bugs in our devices.

Level 3: Little Mouse, Big Brother

Why is this funny to experienced folks? It’s mixing two worlds: cutting-edge cybersecurity research and the ridiculous lengths gaming companies go for anti-cheat. The meme plays on a shared sentiment in the tech community: whenever a wild vulnerability is discovered, someone out there (cough anti-cheat or surveillance vendors cough) will find a way to misuse it almost immediately. Here we have a gaming mouse vulnerability (gaming_mouse_vulnerability) that turns an innocuous peripheral into a bugging device. The tweet caption jokes that anti-cheat developers will be scrambling to integrate this into their kernel-level anti-cheat by tomorrow. This resonates because gamers know how invasive anti-cheat systems have become – some, like Valorant’s Vanguard or Battleye, run with kernel privileges (deep in the operating system) and monitor all sorts of behaviors to catch cheaters. It’s a point of contention in GamingCulture and privacy circles. So the punchline is essentially: “You bet those overzealous anti-cheat devs would happily snoop on your actual conversations if they could, all in the name of stopping cheaters.” It’s humor with a side of paranoia – because it’s just plausible enough to imagine!

From a senior developer or security engineer perspective, this scenario is a goldmine of HardwareHumor and infosec irony. You’ve got high-end mouse sensors (like the PixArt series mentioned) engineered for ultra-responsive gaming, which is a selling point for gamers wanting every millisecond advantage. But push that envelope too far, and oops – you’ve accidentally created a surveillance device. It’s like building a sports car so fast that it doubles as a lie detector because your heartbeat shakes it. Seasoned devs see the pattern: one team (hardware engineers) optimizes a spec (polling rate) for one reason, and another team (security researchers) later discovers a totally off-label use for it. It echoes earlier industry tales, like when 90s CRT monitors’ electromagnetic emissions were readable from next door (Van Eck phreaking), or when laptop motion sensors were leveraged to sense keystroke vibrations. The absurdity is that smart people keep making the same mistake of underestimating side channels. We’ve learned to secure networks and software, so attackers turn to the “physically impossible” angles – until they’re proven possible. This mouse story is just the latest chapter, and seniors who’ve seen a few crazy hacks can’t help but chuckle and shake their heads: of course someone figured out how to turn a fast mouse into a creepy little eavesdropper.

The collage in the meme humorously presents the whole attack chain as if it were a product brochure. There’s an attack injection diagram: it shows OSS software (open-source software) being subverted by an adversary to deploy this exploit. This nods to how such an attack might actually reach users: maybe as a malicious library in a mouse driver or a trojanized game mod that secretly reads raw mouse data. Security folks know that adding new spyware is often easiest via the supply chain or driver vulnerabilities. The infographic’s right side draws a parallel between a “Secure Environment” and the attacker’s pipeline. The secure side presumably represents a locked-down system (maybe an air-gapped “sanitized computer” used to run the exploit in a lab for research), while the attacker’s side has a database and data collection server. It’s painting the picture of how an adversary could remotely gather this data once the mouse is compromised, sending those (Δx, Δy) readings off for analysis. It’s all tongue-in-cheek in presentation (cute mouse emoji and punny name included), but technically this is exactly how a real attack would flow: compromise machine → capture high-freq sensor data → exfiltrate → process into audio → profit (or in this case, pwn privacy). Senior devs recognize the familiar elements of a SecurityVulnerabilities writeup: a list of affected models, diagrams of exploit flow, and even mention of a price for sensors (the left graph shows sensor model vs. cost and polling rate). It reads like the highlights of a conference paper from DEF CON or Black Hat. The humor is partly in the authenticity – if you didn’t know better, you’d think this was a real slide deck from International Cyber Digest on “Mic-E-Mouse”. Honestly, it might be!

Now, why drag kernel development into it? Kernel-level anti-cheat hooking into devices is a contentious practice that experienced devs often criticize. Running code in the kernel (Ring-0 on Windows) means if it misbehaves, it can crash your system or open up serious vulnerabilities. It’s literally how rootkits operate. So the meme suggests an anti-cheat vendor might see this research and go, “Great, we can detect cheaters by listening in through their own mouse movements!” The cat avatar user quips “by tomorrow” – exaggerating how quick and dirty such a feature might be rushed out. That’s a jab at both the eagerness and recklessness of some anti-cheat updates. We can imagine a panicked late-night meeting: “Hackers are using voice comms to coordinate cheating? Let’s quietly enable mouse-audio monitoring in our next patch. No time to ask permission!” It’s absurd, but game dev veterans know truth can be stranger than fiction when the pressure to curb cheats is high. We’ve seen anti-cheats access players’ entire file systems, scan background processes, even accidentally flag system DLLs – so spying on your room audio via your mouse? Why not add it to the list of dystopian features. One can almost hear the sarcasm dripping: sure, let’s just violate privacy at the hardware level now. 😏

Importantly, the meme also touches on the privacy nightmare angle that senior folks are sensitive to. If a kernel anti-cheat did implement this, it would completely bypass normal privacy controls. Your OS might show a red dot or permission prompt when the microphone is accessed, but it has no clue if some driver is vacuuming up mouse sensor data (which, to the OS, is innocuous movement info) and converting it to audio. That’s horrifying from a security standpoint – a total side-channel snoop that’s practically invisible to standard safeguards. It raises the question: how do you even fix this? Aside from firmware updates to rate-limit the sensor or dampen vibrations, it’s not trivial. A veteran dev might recall similar debates: when researchers showed smartphone sensors (like accelerometers) could spy, phone OS vendors had to consider permission controls for sensors we never thought of as microphones. Will we need a “mouse listening” indicator light now? This comedic meme hints at real discussions in security engineering circles.

The combination of infosec and gaming culture references also adds layers of humor for senior devs. For example, “cheating related hotwords” implies scanning for spoken words like “wallhack” or “aimbot” in a player’s room. It’s a hilarious image: a gamer mutters “I’ll just enable the aimbot” under their breath, and suddenly an automated system bans them because their mouse heard it. This is obviously over-the-top — real cheaters aren’t kindly announcing it out loud — but it satirizes the idea of over-engineering a solution. In software, we joke that sometimes the cure is worse than the disease. Here, the “cure” (mic-listening anti-cheat) would invade privacy far more than the “disease” (some teenage cheater). The meme exaggerates to make that point.

To seasoned developers, the tags like side_channel_audio and anti_cheat_kernel hint at deeper battles between attackers and defenders. Side channels are the sneaky backdoors of data leakage, while kernel anti-cheats are the brute-force guardians of fair play. Seeing them collide in one meme is delightfully chaotic. It’s as if someone crossed wires between a Black Hat talk and a gaming forum rant. The experienced crowd finds it funny because it’s a collision of worlds: the uber-geeky realm of hardware side-channel exploits and the everyday reality of online games, where if something can be abused or weaponized, it probably will be (maybe not literally “by tomorrow,” but give it time!).

And let’s not miss the self-referential jab: the meme originates from a user with a remarkably high claimed IQ and a cat avatar (classic hacker aesthetics), sharing an “International Cyber Digest” alert with a mouse emoji and exclamation mark. It’s layering internet culture on top of security humor. Many devs follow accounts like that for the latest crazy bug news. It’s almost a meme of a meme: the sensational vulnerability announcement (“Your gaming mouse might be eavesdropping!”) plus the snarky commentary. CyberSecurityMemes often thrive on exactly this formula — take a real vulnerability, give it a catchy name and logo (I can totally see a Mic-E-Mouse logo with a tiny rodent holding a microphone), and then exaggerate how the industry will react. Senior folks are nodding and laughing because they’ve seen this cycle dozens of times: today’s proof-of-concept hack becomes tomorrow’s marketing bullet point or compliance headache.

We can distill the senior humor in a quick pseudo-code snippet. It’s like something an overzealous dev might hack together overnight after reading about Mic-E-Mouse:

// Kernel-level pseudo-code for anti-cheat using Mic-E-Mouse
mouse_stream = open("/dev/mouse0", O_RDONLY);
while (game_is_running) {
    data_point = read(mouse_stream);            // Raw Δx, Δy sample from sensor
    double audio_signal = wiener_filter(data_point);
    // Check for secret cheat words in the pseudo-audio signal
    if (detect_hotword(audio_signal, "aimbot") || detect_hotword(audio_signal, "wallhack")) {
        printf("Cheat detected via mouse audio! Banning player...\n");
        ban_player();
    }
}

Because nothing says fair play like reading your analog sticks for whispering the word "aimbot," right? 😅

Of course, this is a tongue-in-cheek dramatization. But it’s funny because it’s only a half-step more ridiculous than things we’ve actually seen. The code above jokes about implementing hotword detection on mouse data – a senior dev knows that’s far-fetched to do reliably, but not impossible. And given some anti-cheat systems’ reputations, the idea of printing “Cheat detected via mouse audio!” isn’t too much crazier than some real false-positive messages gamers have seen. The wiener_filter in code is a playful nod to the DSP step, and using /dev/mouse0 suggests direct device access typical in kernel modules or drivers. That little snippet encapsulates the meme’s satire: a quick-and-dirty kernel hack abusing a hardware quirk to spy on the user in service of catching cheats.

In summary, at the senior level this meme is hilarious and thought-provoking because it exaggerates a real technical finding to critique industry behavior. It combines serious infosec insight (hardware side-channel attacks) with absurd practical implications (Big Brother-esque anti-cheat). It pokes fun at both the researchers who come up with fanciful hacks and the companies that might misuse them. Seasoned developers appreciate how each element connects: the high_polling_rate_sensors (an engineering arms race in gaming gear) inadvertently enabling a mic_e_mouse_attack (a novel exploit), which then gets scooped up by a kernel-level solution that’s arguably worse than the original problem (a familiar scenario in tech, where the reaction overshoots the issue). It’s a perfect storm of hardware, software, security, and gamer paranoia – delivered with a wink and a nod.

Level 4: From DPI to dB

What’s happening here is an acoustic side-channel attack hidden in a gamer’s mouse. At the highest technical level, this meme references turning a high-resolution mouse sensor into a crude microphone by exploiting its extreme polling rate. Modern gaming mice boast polling frequencies up to 8 kHz (8000 reports per second) — far beyond the old 125 Hz or 1 kHz of standard mice. An 8 kHz polling rate means the mouse is sampling movement data roughly every 0.125 milliseconds. By the Nyquist–Shannon theorem, an 8 kHz sample rate can capture vibrations up to ~4 kHz in frequency, which is smack in the range of human speech components (telephone audio is typically in the 300 Hz–3.4 kHz range). In other words, an ultra-fast mouse isn't just tracking headshots in Counter-Strike; it’s inadvertently sampling the tiny vibrations in your desk caused by sounds in the room. The result? The mouse can act like a seismograph for audio. If you talk while using your PC, your voice’s vibrations hit the desk and the mouse’s sensor picks up minuscule jitters corresponding to that sound. This is the essence of the mic_e_mouse_attack – using high-frequency input sensors as an unexpected audio capture device.

This side-channel is all about reading unintended signals. Traditional mics convert air pressure waves to electrical signals; here, surface vibrations (induced by sound) become fake “cursor movements” that encode audio patterns. The meme’s infographic highlights this with a pipeline: surface vibrations → Mic-E-Mouse Program → signal processing → “recovered audio.” The attackers apply heavy-duty signal processing and machine learning to tease human voices out of the noise. A key tool mentioned is Wiener filtering – an advanced DSP technique (named after mathematician Norbert Wiener) for denoising signals. A Wiener filter statistically separates the true audio signal from random jitter, boosting the signal-to-noise ratio. It’s essentially mathematical magic that can make an almost unintelligible signal much clearer by filtering out noise frequencies. In the collage’s heatmaps, the left one labeled "Unintelligible" is the raw spectrogram of the mouse data (a blurry mess of color). After applying Wiener filtering and other processing, the "Noisy Patterns" spectrogram on the right shows distinct streaks – those are recognizable frequency patterns of speech! Machine learning algorithms then further analyze these patterns, perhaps training on known phrases to reconstruct what was said. This is like turning random-looking mouse movements (Δx, Δy data points) into waveforms that approximate the sound wave of your voice. It’s part science, part sorcery – signal alchemy converting dots-per-inch into decibels.

Under the hood, the optical sensor in many mice (like the PixArt PAW3395 or PAW3399) works by taking thousands of tiny images of the surface per second and calculating movement from frame-to-frame differences. If the mouse is stationary and you speak, those images still subtly shift due to the surface vibrating. The faster and more sensitive the sensor (higher DPI and polling rate), the more granular those tiny shifts it can detect. It’s not designed as a microphone, but physics doesn’t care – it’s capturing motion that happens to include acoustic vibrations. Researchers in hardware security have a history of leveraging such unintended leaks: from monitoring the faint whine of CPU capacitors to steal encryption keys, to using smartphone gyroscopes as makeshift mics (despite gyros being meant for orientation, not sound). This side_channel_audio approach with a mouse is cut from the same cloth. They even gave it a cheeky name, Mic-E-Mouse, riffing on the iconic cartoon rodent Mickey Mouse and emphasizing the “mic” (microphone) hidden in your mouse. It’s a perfect SecurityVulnerabilities moniker: cute but concerning. And it’s fundamentally possible because high-end hardware pushed to extreme specs can bleed into each other’s domains – here, input devices invading the territory of audio sensors.

At a theoretical level, this reveals a lot about unintended information leakage. In security, whenever you have a high-bandwidth signal source (an ~8,000 Hz data stream, in this case) and some coupling to the environment, you’ve got a potential covert channel. The signal processing diagram in the meme shows how an attacker could systematically exploit this: first isolate the relevant vibration signal (perhaps by high-pass filtering the mouse input to remove low-frequency actual movements like hand motion, leaving just the high-frequency tremors), then apply techniques like Fourier transforms to analyze frequency content, and use machine learning models trained to recognize speech features. The endgame is that an adversary could reconstruct spoken words or at least detect hotwords (specific keywords) from nothing more than your mouse’s “random” data noise. It’s both impressive and a bit scary: advanced math and KernelDevelopment know-how turn a simple hardware quirk into an espionage tool. The meme leans into how absurd and ingenious this is, implying that by tomorrow someone will repurpose it into a product or, humorously, into anti-cheat software. After all, the hardest part of such an exploit might already be solved by research – implementing it in the wild is just engineering (albeit very low-level, kernel-hacking engineering). Once you grasp the core physics and math, the rest is straightforward data plumbing: read the sensor, run the algorithms, and voila – your mouse is spilling your secrets.

Description

A tweet from maia arson crimew (@awawawhoami) commenting on a post from International Cyber Digest (@IntCyberDi) about a critical vulnerability named Mic-E-Mouse affecting gaming mice. The tweet reads 'they're gonna add this to kernel level anticheat and listen for cheating related hotwords by tomorrow.' The embedded article shows technical diagrams of vulnerable mice (PAW3395, PAW3399, Sensei 310, Model O, IntelliMouse) with a price/frequency chart, the Mic-E-Mouse Pipeline showing how surface vibrations from a 'Sanitized Computer' are processed through recovered audio, machine learning, and signal processing to reconstruct speech. Additional diagrams show an OSS software attack injection workflow, mouse sensor Wiener filtering process, and deployment flow from extracted speech through processing to PAW3395/PAW3399 sensors

Comments

22
Anonymous ★ Top Pick Your gaming mouse now has better audio fidelity than your webcam mic -- attackers are literally reading your keystrokes through desk vibrations at 8KHz polling rate
  1. Anonymous ★ Top Pick

    Your gaming mouse now has better audio fidelity than your webcam mic -- attackers are literally reading your keystrokes through desk vibrations at 8KHz polling rate

  2. Anonymous

    Awesome - now the same driver that drops frames in Valorant can also drop transcripts in /var/log/snitches.log

  3. Anonymous

    The real vulnerability isn't that your gaming mouse can spy on you - it's that game companies will now demand kernel-level access to your mouse driver just to make sure you're not using voice commands to activate your aimbot. Next patch notes: 'Fixed exploit where players could whisper sweet nothings to their Razer DeathAdder for competitive advantage.'

  4. Anonymous

    Ah yes, the natural evolution of anti-cheat: from scanning your RAM to literally listening to your desk vibrations through your $85 gaming mouse. Can't wait for the false positive when my mechanical keyboard's thock pattern gets flagged as 'aimbot_detected.wav'. At least now we know why that 8KHz polling rate was 'essential for competitive gaming' - turns out it was essential for turning your peripheral into a wiretap. Nothing says 'trusted computing base' quite like giving kernel-level access to software that thinks your mouse double-clicking is a confession

  5. Anonymous

    Kernel anticheat's holy grail: hardware mics for hotword betrayal, because trusting peripherals was always the real cheat code

  6. Anonymous

    Waiting for kernel anti‑cheat to ship a ring‑0 mic‑service that runs speech‑to‑cheat on HID Δt,Δx,Δy and calls it “telemetry.”

  7. Anonymous

    Can't debug a race in our I/O stack, but sure - ship a kernel-mode HID hook sampling PAW3395 at 8 kHz, run a Wiener filter, and call it anti-cheat; congrats, your mouse is now the SOC's hottest microphone

  8. @Daonifur 9mo

    Wiener filtering

  9. @RiedleroD 9mo

    I'm using a touchpad for everything so idc :3

    1. @TheFloofyFloof 9mo

      Device fingerprinting based on you you finger the touchpad

      1. @RiedleroD 9mo

        as if my everything isn't already insanely fingerprintable I mean I'm using arch linux on a 16:10 laptop with sway, stock firefox and my system font is Libertinus Sans. if there's a single fingerprinting service out there that can't 100% tell that it's me every time then they're doing something wrong. don't need my touchpad info for that

  10. Алексей 9mo

    Explain pls 😢

    1. @RiedleroD 9mo

      you can use an optical mouse as a microphone by detecting how speech vibrates the mouse, aparrently.

      1. @RiedleroD 9mo

        the mouse needs to be pretty sensitive to be able to do that tho, hence "gaming mouse"

        1. @RiedleroD 9mo

          there was a similar thing of "you can listen in to private convos buildings away using just a high-speed camera and a potted plant near a window" a few years ago, which worked pretty well. I'm sure intelligence agencies were using this tactic way before it came out publicly.

          1. @Art3m_1502 9mo

            Wow

  11. @RiedleroD 9mo

    the unfortunate reality is that nowadays, if someone has enough time and budget, they will be able to listen in to all your secrets. best way to avoid that is to not be a target in the first place. anything beyond basic IT security is mostly irrelevant for most individuals

  12. @hyena_stuff 9mo

    My favorite is Van Eck Phreaking, where someone can recreate the contents of your screen using the radio waves your computer gives off: https://en.wikipedia.org/wiki/Van_Eck_phreaking Conceptually super neat - but it does require proximity and expensive hardware, so it's not something you gotta realistically worry about

  13. @SwedishSock 9mo

    Not my mouse wiener filtering me, I'm getting enough cockblocking in my life as it is

  14. @Vlasoov 9mo

    Oh, yes, gonna be next update in Vanguard that will kick me in the middle of the ranked match

    1. @hur7m3 9mo

      You should be thankful. It doesn't want you to play modern CoD

  15. @hur7m3 9mo

    Fucking clanker

Use J and K for navigation