Skip to content

Instantly share code, notes, and snippets.

View akku1139's full-sized avatar
🔥
Translating Hono docs

Akari Tsuyukusa akku1139

🔥
Translating Hono docs
View GitHub Profile
@t3tra-dev
t3tra-dev / clockm-nullptr-deref.c
Created June 2, 2026 13:10
Deterministic Kernel Panic (NULL Pointer Dereference) via Race Condition in IOTimeSyncClockManager
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <pthread.h>
#include <stdatomic.h>
#include <IOKit/IOKitLib.h>
#define NCALLERS 6
#define NCLOSERS 4

こちらのポストを引用した際に、引用したポストと元ポストの両方が X ルール違反で消えてしまったので再掲します。このポストにより X アカウント @nakasyou0 において 12 時間アカウントがロックされました。

image

私の配慮不足により、ご心配をおかけしたことを深く反省しております。投稿には注意書きを添えており、実行もしておりません。 image image

@techfish-11
techfish-11 / dhcp-static.sh
Created December 19, 2025 10:26
DHCPでもらっていたIPをそのまま固定するシェルスクリプト
#!/bin/bash
set -e
echo "[*] Detecting interface (IPv4 default)..."
IFACE=$(ip -4 route show default | awk '{print $5}' | head -n1)
echo "[*] Detecting current IPv4 (non-secondary)..."
ADDR=$(ip -4 addr show "$IFACE" \
| awk '/inet / && $0 !~ /secondary/ {print $2}' \
| head -n1)
@LHazy
LHazy / find_shai_hulud_js.ps1
Last active January 28, 2026 05:30
Shai-Hulud Supply Chain Attack で配布された悪性ファイル (bundle.js) の検索スクリプト
# !!!注意!!!:
# このスクリプトはCドライブ配下のファイル・フォルダを探索するため「システムに負荷がかかる場合があります」
# 実行は自己責任でお願いします。
# 使い方:
# powershell -ExecutionPolicy Bypass -File .\Scan-Bundle.ps1 <start_directory>
param(
[Parameter(Mandatory = $true)]
[string]$TargetDirectory
)
@reindex-ot
reindex-ot / RemoveAppCloud.md
Last active April 7, 2026 11:35
Aura from Unity & Digital Turbine Blacklists. (Remove AppCloud/AppSelector/MobileServices/AppServices/AppManager)

AppCloud/AppSelector/MobileServices (Aura from Unity & Digital Turbine) Blacklists.

ADBを構築済みの環境でコマンドを流すことでAura from UnityとDigital Turbineをシステム上から擬似的に消し去ります。
ADBの環境構築はこちらを使えです。

これらのアプリはシステムアプリとして存在し、「AppCloud」「AppSelector」「MobileServices」「AppServices」と様々な名前になっているのが特徴になります。ただしパッケージ名には共通点が存在するので運営元の把握は可能になっています。

Aura from Unityについて

元々はイスラエルのIT企業、ironSourceが提供していたサービスです。
現在ironSourceはUnityに買収されており、Aura from Unityになっています。

@JonyBepary
JonyBepary / pcb_design_playlist.md
Created July 21, 2025 18:26
Hardware Design :: Phil's Lab PCB Design Tutorials - Beginner to Advanced Learning Path

Phil's Lab PCB Design Tutorials - Beginner to Advanced Learning Path

BEGINNER LEVEL

Start here if you're new to PCB design and electronics

Fundamental Concepts

  • How To Read A Datasheet - Phil's Lab #123
    🔗 Watch Video
  • How To Learn PCB Design (My Thoughts, Journey, and Resources) - Phil's Lab #87
    🔗 Watch Video
@Yuikawa-Akira
Yuikawa-Akira / AtomS3R_pixel-art_style_camera.ino
Last active February 17, 2026 06:19
AtomS3R Pixel-art style camera
#include <esp_camera.h>
#include <FastLED.h>
#include <SPI.h>
#include <SD.h>
#include <M5Unified.h>
#define KEY_PIN 1
#define LED_PIN 2
#define POWER_GPIO_NUM 18
@TomKing062
TomKing062 / ddrc
Last active December 21, 2025 10:04
compile_chipram
ddrc/rxp0: sprd ip
r1p0:sharkl3 9863a
r1p1:roc1 ud710
r1p1_orca:orca udx710
r2p0:sharkl5 ums312
r2p2:sharkl5pro ums512
r2p3:sharkl6/qogirl6 ums9230
r3p1:sharkl6pro/qogirn6pro ums9620
r3p3:qogirn6lite ums9621
@hackermondev
hackermondev / research.md
Last active May 30, 2026 17:23
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

@skikozou
skikozou / Country-specific_solutions_to_problems.go
Created December 11, 2024 10:56
Country-specific solutions to problems
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println("Country-specific solutions to problems")
fmt.Println("Some problems -> ?")