fingerprint

AppWizard
July 23, 2026
Device spoofing in Android applications allows developers to manipulate device information, primarily through altering android.os.Build attributes. Existing spoofer applications often fail to modify native system API calls that retrieve genuine device information. Tweaks is a per-app spoofer integrated into AOSP and LineageOS, which changes device properties by modifying memory-mapped files under /dev/properties. It uses a private mount namespace to bind-mount modified property-context files, ensuring only the targeted application receives spoofed values while the rest of the system remains unaffected. The Tweaks app, which is platform-signed, communicates with the TweaksManagerService to write configurations and manage property overrides. The core functionality is handled by propgen, which generates property context files with spoofed values by identifying and patching properties in place. The TweaksManagerService ensures secure interactions and content-addresses generated property areas to allow sharing among apps with identical overrides. The spawn path in ProcessList.startProcess determines whether to apply spoofing based on conditions evaluated by the TweaksLocalService. Security is maintained through SELinux policies, which restrict access to spoofable properties. However, certain elements, such as /proc/self/mountinfo and /system/build.prop, still reveal authentic device information despite the spoofing capabilities of Tweaks. The source code for Tweaks and related patches is available for public access.
AppWizard
July 13, 2026
Edwin is currently sidelined by an illness following TennoCon, and he is expected to submit stories on Soulframe and Warframe: Tau before fully resting. New PC games being released this week include: - Ascend to Zero: A sci-fi action-roguelike with temporal manipulation. - Forensics: Crime Scene Detective: A game focused on managing fingerprint and bullet comparisons. - Soulforge Lost Path: A Survivorslike/bullet heaven game with limited inventory management. - D-Topia: A puzzle adventure about maintaining an AI-managed society. - The Incident at Galley House: A visual novel remake of a murder mystery text adventure. - Happy's Humble Burger Cult: A cooking horror game for 1-4 players. - Moss: The Forgotten Relic: A 3D platformer available for non-VR PC players. - Storebound: A cooperative horror puzzler launching into version 1.0. - Wreck Runners: A multiplayer game set in a haunted Bermuda Triangle. - Fogpiercer: A tactical roguelike deckbuilder focused on defending a train. - Frozen Ship: A first-person survival game launching in early access on the 17th. Additionally, today marks RPS’s 19th birthday, and the team will be scattered in the coming days for various events and holidays.
Tech Optimizer
July 10, 2026
Advanced Persistent Threats (APTs) are a type of cyber threat characterized by long-term infiltration aimed at stealing sensitive data or surveilling communications, often orchestrated by well-funded groups. Unlike traditional malware, which seeks immediate disruption, APTs employ a methodical approach, spending weeks mapping out networks and identifying valuable credentials. Traditional antivirus solutions often fail to detect APTs because they rely on signature-based detection, which is ineffective against custom malware. APTs frequently use legitimate tools already present on systems, making detection challenging, and some forms of APTs operate directly from memory without writing to disk, evading traditional scans. To combat APTs, a multifaceted strategy is recommended, including behavioral detection, network monitoring for unusual patterns, and a mindset of skepticism towards all network activities.
Search