Skip to content

Instantly share code, notes, and snippets.

@hackermondev
hackermondev / research.md
Last active January 23, 2025 10:08
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

  1. install ollama

brew install ollama

  1. check you can run deepseek:

ollama run deepseek-r1:14b

(bigger model is better - if you can run 70B that is amazing!)

@rcy8
rcy8 / .Cloud.md
Created February 13, 2021 05:03 — forked from imba-tjd/.Cloud.md
☁️ 一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

@jiulongw
jiulongw / FastByteArrayCompare.cs
Created September 14, 2014 20:34
Fast Byte Array Compare
/// <summary>
/// Compare if given two byte arrays are identical.
/// </summary>
/// <param name="x">byte array to compare.</param>
/// <param name="y">byte array to compare.</param>
/// <returns>true if x and y are identical.</returns>
public unsafe static bool ByteArrayCompare(byte[] x, byte[] y)
{
if (x == null || y == null || x.Length != y.Length)
{
@bar-alex
bar-alex / colorize-tomcat-logs.sh
Created June 16, 2023 08:05 — forked from zakmac/colorize-tomcat-logs.sh
Add color to your Catalina output logs for [info, warn, error, severe, startup]
#!/bin/bash
# ABOUT
# Add color to your Catalina output logs for [info, warn, error, severe, startup]
# - This isn't the smartest, so if there is a match for any of the listed statuses in an
# output you can bet it'll be colorized
# USAGE
# catalina run 2>&1 | bash ~/colorize-tomcat-logs.sh
@notinmood
notinmood / IME.ahk
Last active January 23, 2025 09:58
功能:中、英、大小写输入状态提示
;功能:中、英、大小写输入状态提示
;环境:win10+搜狗输入法,输入法状态切换用默认的shift键。
;作者:傲慢与偏见zxc, [email protected]
;时间:20210822修正
; 按下 Shift 键切换输入法
; EN-英文, CN-中文, A-Caps On
CN := chr(20013)
EN := chr(33521)
@commonsensesoftware
commonsensesoftware / Cargo.toml
Last active January 23, 2025 09:56
JSON Streaming in Rust
[package]
name = "json-streaming"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "streamjson"
path = "main.rs"
[dependencies]
@selfawaresoup
selfawaresoup / uconsole.md
Last active January 23, 2025 09:52
Notes for Clockwork uConsole setup

uConsole Notes

Batteries

I use two XTAR 16850-3500 cells and I get about 8h of active usage out of them.

Get GNOME Shell and GDM3

sudo apt install gnome-shell gdm3
@eNV25
eNV25 / hp-bios-update.md
Last active January 23, 2025 09:49
Instructions to Update the BIOS/UEFI for an HP Laptop on Linux

Instructions to Update the BIOS/UEFI for an HP Laptop on Linux

To update the BIOS/UEFI firmware requires HP-specific files in the EFI System Partition, also referred to as ESP.

On a Linux system, the ESP is typically mounted on /boot/efi or /efi. Whithin you should also find a EFI directory, e.g. /boot/efi/EFI or /efi/EFI. This article assumes that the ESP is mounted on /efi and that the /efi/EFI directory exists. You can replace that with the mount point your system uses.

The HP-specific files are located in /efi/EFI/HP or /efi/EFI/Hewlet-Packard. These files typically come preinstalled in HP Windows PCs. If you have these files you could skip Install HP-specific files.

@seanhandley
seanhandley / docker-compose.yml
Last active January 23, 2025 09:49
How To Set Up Docker For Mac (Mojave) with Native NFS
version: '2'
services:
api:
volumes:
- "nfsmount:${CONTAINER_DIR}"
volumes:
nfsmount:
driver: local
driver_opts: