SShortSingh.
Back to feed

Google Replaces Direct URLs in Search Results with Redirect Links

0
·2 views

Google has changed how URLs appear in its search results, moving away from providing direct links to websites. Instead of linking users straight to a destination page, Google now routes clicks through its own redirect system. This shift means users can no longer see or access a clean, direct URL simply by hovering over or clicking a search result. The change has drawn attention from developers and privacy-conscious users who prefer transparent, untracked links. Google has not publicly detailed the full reasoning behind the move, though it likely supports better click tracking and data collection.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds AWS IoT-Powered Sim Racing Pit Wall to Improve Lap Times

An AWS cloud developer at Cloudhesive built a digital pit wall for sim racing using AWS IoT Core to capture and process real-time telemetry data from the Assetto Corsa simulator. The project was motivated by the difficulty of improving driving performance without expert coaching, prompting the developer to engineer a technical alternative. The system reads live data from the simulator's Shared Memory feature — which normally disappears when the game closes — and securely transmits it to AWS for real-time analysis. The developer noted that the underlying architecture solves a universal IoT challenge: securely streaming data from edge devices, such as industrial sensors or medical wearables, into cloud infrastructure at scale. The project is set to be presented at AWS Community Day Argentina on September 12, 2026, with all code and slides published on GitHub.

0
ProgrammingDEV Community ·

OpenAI GPT-6 Astra Acts as Autonomous Operator, Raises Security Concerns

OpenAI announced GPT-6 Astra on September 3, 2026, describing it as its most intelligent and aligned model to date. Unlike previous AI models focused on answering queries, Astra can autonomously navigate software, execute code, browse the web, manage files, and complete multi-step tasks within enterprise environments. The model posts exceptional benchmark scores, including 99.9% on ARC-AGI-3 and 72.6% on OSWorld 2.0, and supports over one million tokens of context. OpenAI classifies Astra as the first widely deployed model to reach a critical cybersecurity capability threshold, as it demonstrated the ability to independently discover unknown vulnerabilities and build working exploits. While Astra shows improved behavioral alignment over its predecessor, experts note its chain-of-thought reasoning is harder to monitor, posing new challenges around oversight, security architecture, and enterprise accountability.

0
ProgrammingDEV Community ·

Researcher Reproduces PROFINET Protocol Behavior in Linux Lab to Study Security Surfaces

Security researcher RUGERO Tesla (@404Saint) documented a structured effort to reproduce PROFINET industrial protocol behavior in a controlled Linux lab environment. The setup used network namespaces to isolate controller and device sides, with the open-source p-net stack alongside custom Python and Scapy-based tools for traffic analysis. The research covered five phases, including DCP and LLDP discovery, DCE/RPC application-relation traffic, cyclic Real-Time frame analysis, Layer 2 traffic generation, and a review of PROFINET security mechanisms. A key finding was that observable packet behavior does not always confirm endpoint acceptance, as cyclic RT frames depend on implementation state rather than structure alone. The project aimed to clearly document where packet construction, implementation output, and verified endpoint behavior diverge as separate forms of evidence.

0
ProgrammingDEV Community ·

How to Make Database Audit Logs Truly Tamper-Proof, Not Just Trusted by Convention

Most audit logs rely on application-level promises to avoid edits or deletions, but bugs, rogue scripts, or compromised credentials can silently corrupt that history. A more reliable approach enforces immutability at the database layer itself, starting with granting the app role only INSERT and SELECT permissions on the audit table. Additional defenses include database triggers that reject any UPDATE or DELETE operations and hash-chained rows linked by foreign keys to make deletion structurally difficult. Each method has known bypass vectors — superusers can override permissions and disable triggers — so layering multiple techniques together provides stronger protection. For compliance scenarios requiring data erasure, appending a redaction event rather than deleting rows keeps the log tamper-evident while still satisfying legal obligations like GDPR.