<ai_reading_guide>
- Critical Rules - Protected paths, security model
- Decision Trees - Where code should go, which API to use
| // Per Apple developer forums (thread/650650) and DTS guidance: scan | |
| // CFNetworkCopySystemProxySettings's __SCOPED__ dict for keys whose | |
| // names contain tap/tun/ppp/ipsec. `utun` is deliberately excluded — | |
| // iOS publishes utun interfaces for iCloud Private Relay, Personal | |
| // Hotspot relay, Handoff, AirDrop, etc., so its presence does not | |
| // imply a user VPN. | |
| var interfaces: [String] = [] | |
| let tunnelTokens = ["tap", "tun", "ppp", "ipsec"] |
Source: Reverse-engineered from
cloud-drive-daemon(ARM64, macOS, version 4.0 build 17889) Binary path:~/Library/Application Support/SynologyDrive/SynologyDrive.app/Contents/MacOS/cloud-drive-daemonSource files referenced in debug strings://Users/fct/synosrc/dog-builder-4.0/source/synosyncfolder/lib/protocol/proto-common.cpp
| Hey, I'm m1guelpf-23558090 and I have contributed to the world-id-protocol MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (oprfkeygenproof13) | |
| Contributor # 2 | |
| Contribution Hash: 88ff4616 e9544091 d80fa253 960d6254 | |
| d3f3f72d 321158fb c4e3d11c 3440e336 | |
| ac3bb22d 24de4007 1d4ea3cb 887078d1 | |
| 2eff7ea1 54703146 7946e182 25e652ea |
| #!/bin/bash | |
| set -e | |
| BINARY_LOCATION="/Applications/Rewind.app/Contents/MacOS/Rewind" | |
| # Verify binary matches expected version | |
| expected_md5="47696bce0b31d3b4ecfca557d83fa5aa" | |
| actual_md5=$(md5 -q "$BINARY_LOCATION") | |
| if [ "$actual_md5" != "$expected_md5" ]; then | |
| echo -e "Error: MD5 mismatch.\nMake sure you're patching v15607.1\n\nExpected: $expected_md5\nFound: $actual_md5" >&2 |
| #if !DEBUG && (defined(__arm64__) || defined(__aarch64__)) | |
| void __attribute__((constructor)) security_setup(void) { | |
| long PTRACE_SYSCALL = 26; | |
| long PT_DENY_ATTACH = 31; | |
| asm volatile( | |
| "mov x0, %1\n" | |
| "mov x1, #0\n" | |
| "mov x2, #0\n" | |
| "mov x3, #0\n" |
| 'use client' | |
| import useMeasure from 'react-use-measure' | |
| import { ChangeEvent, FC, FormEvent, InputHTMLAttributes, useCallback, useState } from 'react' | |
| enum Status { Idle, Error, Loading, Animate, Success } | |
| const EmailInput = ({ onSubmit, ...props }) => { | |
| const [formRef, dimensions] = useMeasure() | |
| const [value, setValue] = useState<string>('') |
| Hey, I'm m1guelpf-23558090 and I have contributed to the Semaphore V4 Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (semaphorev4-1) | |
| Contributor # 96 | |
| Contribution Hash: bcd2a1d8 f5375fe8 a76fd474 f6a328ff | |
| 41c23ac8 4478fbc6 8b660da8 61a62c34 | |
| 25c1b73f d904d50d b0bc5065 d1d1fc54 | |
| 8e084d67 981dc462 42a981b8 ebc86eb5 |
| import SwiftUI | |
| extension Color { | |
| static var background: Color { | |
| return Color(uiColor: .systemBackground) | |
| } | |
| static var secondaryBackground: Color { | |
| return Color(uiColor: .secondarySystemBackground) | |
| } |
| import redis from '@/lib/redis' | |
| import { tap } from '@/lib/utils' | |
| import { NextResponse } from 'next/server' | |
| import { NowPlaying } from '@/types/activities' | |
| import { base64_encode, use } from '@/lib/utils' | |
| type SpotifyResponse = { | |
| is_playing: boolean | |
| progress_ms: number | |
| item: { |