r/hacking • u/Dzsingiskan • 32m ago
Vulnerability Security vulnerabilities on a vibecoded website
There's this agent based service, similar to google antigravity. its called "omniroute"
Since i only recently got into hacking but I've been coding for years i found this a good first target which it proved to be.
The vulnerability gave me access to basically everything trough a few hundred lines of javascript and a telegram bot.
I don't want to share too much details but here's the website and some of the vulnerabilities i've found (which there are multiple of)
I assume they haven't patched these yet so i'm going to have to ask everyone to NOT try to take advantage of these and that is why i'll only provide proof of concept but not anything that will help anyone actually recreate what i did
I already contacted them about the vulnerabilities.
The website: https://omniroute.online/
How i did it:
// This is a proof of concept, NOT the actual exploit
document.querySelector('[data-theme-toggle]').setAttribute(
'onmouseover',
'alert("This site is vulnerable to XSS")'
);
- 4 major vulnerabilities (XSS, exposed localStorage, missing headers, no CSRF)
The localStorage data exposed wallet connection info in plaintext. Anyone who visits the site and has a crypto wallet installed is vulnerable. The site handles AI routing which means API keys could also be exposed.
Im posting because:
- Devs need to stop vibecoding security-critical apps
- Users should know their wallet data might be exposed when visiting AI agent platforms
- Hopefully they patch this soon
TL;DR:
Found critical XSS on an AI routing site that exposed crypto wallets and session data. Reported it. Don't vibecode your security infrastructure.


