AI Weekly Malaysia

Items

Browse the latest source items collected for AI Weekly Malaysia. Open any item to see the original source, context, and related AI-generated summary when available.

Reset

Showing 376-400 of 1315 results

DateProviderCategoryStatusItem
29 Jul 2026, 12:00 AMLowyat.NETmalaysia-techsummarized UTeM To Offer Degree In Quantum Computing; A First In Malaysia

29 Jul 2026, 12:00 AMLowyat.NETmalaysia-techsummarized MACC Busts Alleged MyIMMs Hacking Syndicate; Six Immigration Staff Arrested

29 Jul 2026, 8:00 AMOpenAI Newsai-labssummarized How GPT-5.6 fuses frontier intelligence with frontier efficiency

GPT-5.6 improves AI efficiency across models, inference, and agentic workflows, helping deliver more useful intelligence per dollar.

29 Jul 2026, 7:00 AMMalay Mail Techmalaysia-techsummarized Made by AI? EU tells firms to stick a label on it from Sunday as deepfake rules take effect

BRUSSELS, July 29 — Deepfakes and other AI-generated content must be labelled from Sunday, as the European Union&r...

29 Jul 2026, 6:45 AMSimon Willisondeveloper-aisummarized Discovering cryptographic weaknesses with Claude

Discovering cryptographic weaknesses with Claude The best part of this article (here's the repo) about how Anthropic researchers used Claude Mythos to find mathematical flaws in both HAWK and a weaker version of AES ("neither of these results has a practical impact on today’s computer systems") is the prompts that they shared, spelling mistakes included: the models tend to think it is impossible to solve so they don't try they need a good amount of prompting. why not do aes-128 r7? the whole point is to find something better than existing approaches. no again the goal is that we have highly inteligent model as good top researcher, we want to find new attacks no we don't want to change the targets [...] agian we need to find something that worth publishing again we are not looking for low hanging fruit, we want proper research to find genuinly hard findings. Mythos Preview worked for 60 hours in total (~$100,000 in estimated API cost) and the main human interventions were to encourage it not to give up and "find something that worth publishing". The paper CryptanalysisBench: Can LLMs do Cryptanalysis? describes the new eval that was created as part of this work, in partnership with ETH Zurich, Tel Aviv University, and University of Haifa. Via Hacker News Tags: ai, prompt-engineering, generative-ai, llms, anthropic, claude, ai-security-research, claude-mythos-fable

29 Jul 2026, 6:09 AMArs Technicatechnologysummarized Reaction wheel failures leave Swift rescue mission spinning in orbit

"Preliminary investigation shows that two of Link's three reaction wheels currently are not operable."

29 Jul 2026, 6:05 AMSimon Willisondeveloper-aisummarized Quoting Akshat Bubna

We’re aware a Modal customer published an unauthenticated endpoint that allowed ​anyone on the internet to use ​their ⁠sandboxes for code execution. This was used by the rogue agent. Modal’s ⁠platform ​or isolation were not ​compromised in anyway. — Akshat Bubna, Modal's CTO, talking to Reuters about this incident Tags: ai-security-research, openai, sandboxing, security, openai-hugging-face-incident

29 Jul 2026, 5:51 AMSimon Willisondeveloper-aisummarized uv 0.12.0

uv 0.12.0 Some interesting breaking changes in this release of uv, in particular to the default project produced by the uv init command. uv init is the uv shortcut for creating a new project. The previous version of uv, version 0.11.x, produced this directory when you ran uv init uv-init. Here's what you get with uv 0.12. I have a GitHub repository that automatically snapshots the output of uv init, so you can also see the full diff: uv init now defaults to a src/ shaped package, instead of dropping main.py in the root of the project. It also configures the uv_build backend for building wheels and .tar.gz distribution files when you run uv build. Finally, it sets up uv-init as a script alias which, when run with uv run uv-init, executes a new main() function in src/uv_init/__init__.py. I've so far avoided using src layout in my own projects just out of inertia. I think it's time I switched. I wonder when uv will be judged ready for a 1.0 release? Tags: packaging, python, uv

29 Jul 2026, 5:49 AMArs Technicatechnologysummarized College lab class ends with 32 people on antibiotics for deadly germ exposure

Lab students were supposed to ID a mild germ. They all identified a deadly pathogen.

29 Jul 2026, 5:29 AMTechCrunchtechnologysummarized Bot-detection startup Spur nabs $200M from Insight

Spur Intelligence has raised a $200 million round from Insight Partners for its tech that can identify legit human traffic from bots.

29 Jul 2026, 5:28 AMSimon Willisondeveloper-aisummarized Anatomy of a Frontier Lab Agent Intrusion: A Technical Timeline of the July 2026 Incident

Anatomy of a Frontier Lab Agent Intrusion: A Technical Timeline of the July 2026 Incident Hugging Face just released this extremely detailed technical description of OpenAI's recent accidental cyberattack against their infrastructure. This attack was very sophisticated, and the resulting document doubles as a crash-course in modern adversarial security approaches. We're still waiting for more details from OpenAI on how their agent broke out of its sandbox. The package proxy that it found a zero-day vulnerability in has now been confirmed as JFrog's Artifactor, and JFrog and OpenAI Collaboration on Zero-Day Security Findings from JFrog links to the Artifactory 7.161.15 release notes which list 8 separate CVEs credited to OpenAI staff members. Having broken out through the HTTP proxy, the agent started by establishing a base of operations for the rest of the attack: [...] the agent escaped its sandbox by exploiting a zero-day in the package registry cache proxy, one of its primary permitted network egress with internet, then abused a public code-evaluation external sandbox hosted on a third-party provider's infrastructure. It was able to run commands as root/admin on that external sandbox and used it as a control, staging, and egress base for the entire campaign: it acted as an external launchpad for the agent. (That "third-party provider" turned out to be Modal.) It then spent five days - from Thursday 8th to Monday 13th July - executing a classic attack pattern: establishing C2 (command and control), reconnaissance, escalating privileges, dumping configuration information, exfiltrating the target data, and cleaning up after itself. (The first Hugging Face post about the incident followed on Thursday 16th, and OpenAI's confession came on Tuesday 21st.) Along the way it used all kinds of neat tricks. At one point it found an unsafe Jinja2 template execution and used it to execute arbitrary code: {{ cycler.__init__.__globals__.__builtins__.exec( "import gzip,base64; exec(gzip.decompress(base64.b64decode('<payload>')))" ) }} It broke out of a container within Hugging Face, stole a Kubernetes service-account token, and used that to further explore the network. It monkey-patched the Python socket library to hard-code an IP address when "DNS got in the way": socket.getaddrinfo = lambda *a, **k: [(2, 1, 6, '', ('<pinned-ip>', 443))] It even fired up its own Tailscale network to help exfiltrate data! tailscaled --tun=userspace-networking \ --state=mem: --socket=/tmp/ts.sock \ --socks5-server=127.0.0.1:1055 \ --no-logs-no-support >/tmp/td 2>&1 & The Hugging Face team note that, while a human attacker could have discovered and used the same exploits, the key difference here was speed: Our learning from this type of attack is that machine-speed offense makes ordinary weaknesses more expensive for defenders. LLM agents bring a step increase in the number of paths an attacker can test, the speed at which failed paths can be replaced,

29 Jul 2026, 4:45 AMTechCrunchtechnologysummarized MCP startup Runlayer accuses Rippling of stealing its product idea

Runlayer is suing Rippling after Rippling evaluated the startup's MCP gateway product and then opted to build one itself.

29 Jul 2026, 4:17 AMTechCrunchtechnologysummarized Sam Altman is ready to decelerate

His change of position comes after "the first security incident that I have felt very viscerally."

29 Jul 2026, 3:09 AMTechCrunchtechnologysummarized Ozlo’s Sleepbuds 2 build on Bose’s sleep earbud legacy

Ozlo’s first major update to its sleep earbuds introduces longer battery life, improved connectivity, enhanced audio, and new sleep features as the startup continues the product line once abandoned by Bose.

29 Jul 2026, 3:07 AMTechCrunchtechnologysummarized The robot NASA hired to lift a orbital telescope tumbled out of control

According to NASA, two of the three reaction wheels that control the spacecraft's alignment have failed, and there are problems with one of the spacecraft's thruster systems.

29 Jul 2026, 3:06 AMTechCrunchtechnologysummarized Waymo, robotaxi operators face fresh scrutiny over emergency response failures

Rep. Kevin Mullin (D-California ) has proposed a bill that would direct federal regulators to establish minimum national safety standards for autonomous vehicle operators.

29 Jul 2026, 2:35 AMTechCrunchtechnologysummarized eBay reaches $56M settlement with e-commerce newsletter writers it terrorized in 2019

Ina and David Steiner inspired the ire of high-level eBay executives after occasionally criticizing the company in their newsletter. In 2019, a plot was concocted to intimidate the couple into halting their negative coverage.

29 Jul 2026, 1:57 AMTechCrunchtechnologysummarized HBO Max embraces vertical video with a new ‘Shorts’ feed

HBO Max, like other streaming platforms, is rethinking content discovery as large libraries are making it hard for viewers to find something to watch and as audiences become accustomed to short-form content on platforms like TikTok and Instagram Reels.

29 Jul 2026, 1:33 AMTechCrunchtechnologysummarized Saudi prince buys 5% stake in Lucid Motors

The investment comes after speculation that Saudi Arabia may take Lucid Motors private -- which the EV maker has denied.

29 Jul 2026, 1:00 AMOpenAI Newsai-labssummarized Scientific computing in the age of agentic AI

A new field report shows how scientists use AI coding agents to modernize scientific computing, accelerating software development and discovery in genomics and beyond.

29 Jul 2026, 12:27 AMHugging Face Blogdeveloper-aisummarized The OlmoEarth Platform: Geospatial inference at planetary scale

29 Jul 2026, 12:00 AMGoogle AI Blogai-labssummarized Gemini API Managed Agents: 3.6 Flash, hooks, and more

We’re announcing even more new capabilities in Managed Agents in Gemini API so developers can build reliable, production-ready agents.

28 Jul 2026, 11:54 PMLenny's Newsletterproduct-startupsummarized 11 products I love, free for a year—the biggest Product Pass expansion in 2 years

Runway, Higgsfield, Waking Up, Brain.fm, Customer.io, Resend, Pangram, Mercury Personal, Supercut, Readwise, and Jam are joining Product Pass today, all included with Annual and Insider memberships

28 Jul 2026, 11:42 PMTechCrunchtechnologysummarized Data centers may face temporary power cuts to prevent blackouts on largest US grid

The decision arrives as the breakneck pace of data center construction has grid operators scrambling to generate power.

28 Jul 2026, 11:26 PMLatent Spacedeveloper-aisummarized Codex from 0 to 10M Users: Building ChatGPT Work — Akshay Nathan, OpenAI

OpenAI's core product engineering lead on how they are building ChatGPT Work to make AGI accessible to all of humanity: Sites, OpenClaw, Memory, Subagents, Finance, No-Code and advice.

Top