Skip to content

Instantly share code, notes, and snippets.

View Navia25's full-sized avatar
πŸ‡ͺπŸ‡Ί
Vigilia Pretium Libertatis

𝓝π“ͺ𝓿𝓲π“ͺ 𝓒π“ͺ𝓼𝓹π“ͺ𝓻 Navia25

πŸ‡ͺπŸ‡Ί
Vigilia Pretium Libertatis
View GitHub Profile
@hackermondev
hackermondev / research.md
Last active August 11, 2025 09:26
Unique 0-click deanonymization attack targeting Signal, Discord and hundreds of platform

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:

Cloudflare

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

@jogerj
jogerj / Genshin Impact Wish URL.md
Last active September 2, 2024 16:57
Get Wish History URL in Genshin Impact on PC from cache. Moved to https://github.com/jogerj/genshin-wish-url

genshin-wish-url

Further development has been moved to its own repository: https://github.com/jogerj/genshin-wish-url

Usage

  1. Win+R and open powershell (or pwsh if Powershell 6+ installed)
  2. Paste and run following
  • All versions (Global/China)
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force;
iex (irm 'https://github.com/jogerj/genshin-wish-url/raw/main/Get-WishUrl.ps1')
@MadeBaruna
MadeBaruna / README.md
Last active July 28, 2025 22:57
Get Genshin Impact wish history link
@jauderho
jauderho / Time Servers with NTS support.md
Last active May 24, 2025 01:37
A curated list of NTP time servers that support NTS
@githubcom13
githubcom13 / Protonmail.md
Last active June 25, 2025 14:00 — forked from ibaiul/Protonmail.md
Configure the protonmail bridge linux client on Ubuntu 20.04 and Debian 10 server

Protonmail on Ubuntu 20.04 and Debian 10 server

#protonmail #debian #linux

Before you start

Currently protonmail bridge for linux is distributed as part of an open beta program, but soon it will be made public (https://protonmail.com/bridge/install).

Consider that the bridge linux client requires a paid protonmail account to work.

Get the protonmail bridge linux installer

@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active August 11, 2025 04:05
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@zloynemec
zloynemec / adminer_setup.sh
Created April 15, 2015 12:29
Secure adminer nginx setup
# Secure adminer setup
# Author Taras Kozlov
# download adminer to separate directory
mkdir -p /var/www/admin
cd /var/www/admin
wget http://www.adminer.org/latest.php -O adminer.php
echo '<?php phpinfo(); >' > info.php
sudo -i