24 comments

  • steipete2 hours ago
    OpenClaw creator here.<p>This was a privilege-escalation bug, but not &quot;any random Telegram&#x2F;Discord message can instantly own every OpenClaw instance.&quot;<p>The root issue was an incomplete fix. The earlier advisory hardened the gateway RPC path for device approvals by passing the caller&#x27;s scopes into the core approval check. But the `&#x2F;pair approve` plugin command path still called the same approval function without `callerScopes`, and the core logic failed open when that parameter was missing.<p>So the strongest confirmed exploit path was: a client that ALREADY HAD GATEWAY ACCESS and enough permission to send commands could use `chat.send` with `&#x2F;pair approve latest` to approve a pending device request asking for broader scopes, including `operator.admin`. In other words: a scope-ceiling bypass from pairing&#x2F;write-level access to admin.<p>This was not primarily a Telegram-specific or message-provider-specific bug. The bug lived in the shared plugin command handler, so any already-authorized command sender that could reach `&#x2F;pair approve` could hit it. For Telegram specifically, the default DM policy blocks unknown outsiders before command execution, so this was not &quot;message the bot once and get admin.&quot; But an already-authorized Telegram sender could still reach the vulnerable path.<p>The practical risk for this was very low, especially if OpenClaw is used as single-user personal assistant. We&#x27;re working hard to harden the codebase with folks from Nvidia, ByteDance, Tencent and OpenAI.
    • machinecontrol1 hour ago
      The root issue is that OpenClaw is 500K+ lines of vibe coded bloat that&#x27;s impossible to reason about or understand.<p>Too much focus on shipping features, not enough attention to stability and security.<p>As the code base grows exponentially, so does the security vulnerability surface.
      • williamstein1 hour ago
        The current OpenClaw GitHub repo [1] contains 2.1 million lines of code, according to cloc, with 1.6M being typescript. It also has almost 26K commits.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw</a>
      • earnesti1 hour ago
        There are like 10 openclaw clones out there. If you prefer security over features, just pick up another one.
      • dyauspitr1 hour ago
        [flagged]
        • Retr0id1 hour ago
          Aside from &quot;exponentially&quot; being hyperbolic, which part is unsubstantiated?
        • pezo19191 hour ago
          This is a vibe based comment. It’s a generic attack with no meat.
    • rob1 hour ago
      Is this you?<p><a href="https:&#x2F;&#x2F;x.com&#x2F;steipete&#x2F;status&#x2F;2005451576971043097" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;steipete&#x2F;status&#x2F;2005451576971043097</a><p>&gt; Confession: I ship code I never read. Here&#x27;s my 2025 workflow.<p>Might want to start reading it I&#x27;d say.
      • rdtsc1 hour ago
        - &quot;OpenClaw, read the code&quot;<p>- &quot;You&#x27;re absolutely right. One should read and understand their own code. I did, and it looks great&quot;
      • TZubiri14 minutes ago
        I&#x27;m critical of OpenClaw and even the author to some extent, but I prefer to have nuanced and compartmentalized conversations, on a thread about a specific vulnerability, it&#x27;s much more productive to talk about the specific vulnerability rather than OpenClaw as a whole. Otherwise we would only have generic OpenClaw conversations and we would only be saying the same thing.
    • nightpool1 hour ago
      Can you speak a little bit more to the stats in the OP?<p>* 135k+ OpenClaw instances are publicly exposed * 63% of those run zero authentication. Meaning the &quot;low privilege required&quot; in the CVE = literally anyone on the internet can request pairing access and start the exploit chain<p>Is this accurate? This is definitely a very different picture then the one you paint
    • plestik1 hour ago
      There used to be a time where people who shipped CVEs took accountability.
      • inetknght1 hour ago
        &gt; <i>There used to be a time where people who shipped CVEs took accountability.</i><p>I see you haven&#x27;t heard of Microsoft...
      • orsorna18 minutes ago
        He took millions of dollars instead, it&#x27;s working out for him.
      • lp0_on_fire1 hour ago
        Have you met these AI companies yet?
      • ua70959 minutes ago
        What time was that and who do we get to blame for Log4j?
    • rossjudson37 minutes ago
      With respect...Security through obscurity is <i>dead</i>. We are approaching the point where only formally verified (for security) systems can be trusted. Every possible attack <i>will</i> be attempted. Every opening will be exploited, and every useful <i>combination</i> of those exploits will be done.<p>LLMs are patient, tireless, capable of rigorous opsec, and effectively infinite in number.
    • rybosome12 minutes ago
      According to this[1] your statement that practical risk was low is not accurate.<p><pre><code> &gt; The attacker acquires an account or session with operator.pairing scope. On the 63% of exposed OpenClaw instances running without authentication, this step requires no credentials at all — the attacker connects and is assigned base pairing rights. </code></pre> If that&#x27;s accurate, then this statement:<p><pre><code> &gt; This was a privilege-escalation bug, but not &quot;any random Telegram&#x2F;Discord message can instantly own every OpenClaw instance.&quot; </code></pre> ...is only true for the 37% of authenticated OpenClaw instances.<p>I&#x27;m sure it&#x27;s extremely stressful and embarrassing to face the prospect that your work created a widespread, significant vulnerability. As another software engineer and a human I empathize with the discomfort of that position. But respectfully, you should put your energy into addressing this and communicating honestly about what happened and the severity, not in attempting to save face and PR damage control. You will be remembered much better for the former.<p>EDIT: more from the source[2]<p><pre><code> &gt; The problem: 63% of the 135,000+ publicly exposed OpenClaw instances run without any authentication layer, according to a 2026 security researcher scan. On these deployments, any network visitor can request pairing access and obtain operator.pairing scope without providing a username or password. The authentication gate that is supposed to slow down CVE-2026-33579 does not exist. &gt; This is the intersection that makes this vulnerability particularly dangerous in practice. The CVSS vector already rates it PR:L (Privileges Required: Low) rather than PR:N — but on 63% of deployed instances, &quot;low privilege&quot; is functionally equivalent to &quot;no privilege.&quot; </code></pre> [1]: <a href="https:&#x2F;&#x2F;blink.new&#x2F;blog&#x2F;cve-2026-33579-openclaw-privilege-escalation-2026#what-does-the-attack-chain-look-like">https:&#x2F;&#x2F;blink.new&#x2F;blog&#x2F;cve-2026-33579-openclaw-privilege-esc...</a> [2]: <a href="https:&#x2F;&#x2F;blink.new&#x2F;blog&#x2F;cve-2026-33579-openclaw-privilege-escalation-2026#does-running-openclaw-without-authentication-make-cve-2026-33579-worse">https:&#x2F;&#x2F;blink.new&#x2F;blog&#x2F;cve-2026-33579-openclaw-privilege-esc...</a>
    • equasar37 minutes ago
      I am very skeptical about your real technical&#x2F;engineering abilities.<p>You might know how to ship products that sell fast, but that&#x27;s about it.<p>Your product is a cancer of AI sloppiness.
    • just_once31 minutes ago
      Nvidia, ByteDance, Tencent and OpenAI?! Wow!
    • LucidLynx46 minutes ago
      About time to read the code you ship now...
    • popalchemist1 hour ago
      The level of seriousness of your attitude here is not commensurate to the blatant security problem you are creating in the world.
    • mvdtnz1 hour ago
      What does Telegram&#x2F;Discord have to do with anything? The OP never mentioned either of these software suites. In fact the only mention of Telegram anywhere in the entire thread is you copy-pasting this exact message.
    • hmokiguess34 minutes ago
      Who are you replying to? The tone of your message seems to indicate you want to address some misinformation, but that isn&#x27;t found here or in OP&#x27;s link.<p>Did OpenClaw write this for you?
  • sunaookami2 hours ago
    Honest question: What do people actually USE OpenClaw for? The most common usage seems to be &quot;it reads your emails!&quot;, that&#x27;s the exact opposite of &quot;exciting&quot;...
    • sgillen1 hour ago
      I&#x27;ve only been playing with it recently ... I have mine scraping for SF city meetings that I can attend and public comment to advocate for more housing etc (<a href="https:&#x2F;&#x2F;github.com&#x2F;sgillen&#x2F;sf-civic-digest" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;sgillen&#x2F;sf-civic-digest</a>).<p>It also have mine automatically grabs a spot at my gym when spots are released because I always forget.<p>I&#x27;m just playing with it, it&#x27;s been fun! It&#x27;s all on a VM in the cloud and I assume it could get pwned at any time but the blast radius would be small.
      • gruez1 hour ago
        &gt;It also have mine automatically grabs a spot at my gym when spots are released because I always forget.<p>seems far more efficient&#x2F;reliable to get codex&#x2F;claude code to write and set up a bot that does this.
        • Sargos33 minutes ago
          &gt;set up a bot that does this<p>But he already did this. With a bonus of it will continue to work in the future if something breaks or changes. Human time is more precious than computing resources nowadays.
      • mvdtnz1 hour ago
        Am I understanding right that you&#x27;re leaving AI slop comments on public city meetings? Proudly doing so?
        • gruez1 hour ago
          No? The comment was admittedly ambiguous but if you go to repo it&#x27;s far clearer:<p>&gt;I use it to give me a weekly digest of what happened in my neighborhood and if there are any public hearings or trash pickups I might want to attend.
          • WhrRTheBaboons1 hour ago
            that does not seem like something you need an &#x27;autonomous&#x27; agent for.
            • Sohcahtoa821 hour ago
              What would you propose as an alternative?<p>Anything not relying on an LLM likely means having to write bespoke scripts. That&#x27;s not really worth the time, especially when you want summaries and not having to skim things yourself.<p>Going from doing it manually on a regular basis to an autonomous agent turns a frequent 5-15 minute task into a 30 second one.
              • mvdtnz1 hour ago
                &gt; Anything not relying on an LLM likely means having to write bespoke scripts.<p>The very first line in your readme is &quot;CivicClaw is a set of scripts and prompts&quot; though? And almost the entire repo is a bunch of python scripts under a &#x2F;scripts folder.<p>I looked at one randomly chosen script (scripts&#x2F;sf_rec_park.py) and it&#x27;s 549 lines of Python to fetch and summarise data that is available on an RSS feed ( <a href="https:&#x2F;&#x2F;sanfrancisco.granicus.com&#x2F;ViewPublisher.php?view_id=91" rel="nofollow">https:&#x2F;&#x2F;sanfrancisco.granicus.com&#x2F;ViewPublisher.php?view_id=...</a> )
                • Gracana59 minutes ago
                  Parent isn&#x27;t saying that bespoke scripts are bad, just that it&#x27;s not worth their time to write them. The value of the bot is that it can do that for you.
            • butlike1 hour ago
              They&#x27;ve created a public bulletin board for themselves, like a café&#x27;s blackboard, or a city telephone pole.
    • knights_gambit36 minutes ago
      I use it to manage a media server. And use natural language to download movies and series. Also I use to for homeassistant so I csn use natural language for vacuuming the house and things like that. I do use it for a number of other tasks but those are the most partical.
    • FrameworkFred4 minutes ago
      so far, I&#x27;ve used it to kill a bunch of time trying to get it to respond to &quot;Hi @Kirk&quot; in a private Slack channel.<p>...and to laugh a little every time it calls me &quot;commander&quot; or asks &quot;What&#x27;s the next mission?&quot; or (and this is the best one) it uses the catchphrase I gave it which is &quot;it&#x27;s probably fine&quot; (and it uses it entirely appropriately...I think there must have been a lot of sarcasm in qwen 3.5&#x27;s training data)<p>and I&#x27;ve treated it like it&#x27;s already been compromised the whole time.
      • globular-toast0 minutes ago
        So basically an eggdrop like we had in the 90s except, by the sounds of it, less useful and considerably less fun.
    • earnesti1 hour ago
      I use it for a side project. I just put it on VPS, and then it edits the code and tests it. The nice thing is that I can use it on the go whenever I have spare moment. It is addictive, but way better addiction than social media IMO.<p>The thing where you give it access to all your personal data and whatever I haven&#x27;t done and wouldn&#x27;t do.
    • franze1 hour ago
      my claw controls my old M2 mac, mostly my claw uses Claude code to code
      • operatingthetan36 minutes ago
        So you&#x27;re using a different llm to control claude code to get around the Anthropic TOS about openclaw usage?
        • paganel15 minutes ago
          At this point I&#x27;m personally lost, unless GP&#x27;s comment wasn&#x27;t some sort of satire (which would be valid, this being a topic about AI).
    • dyauspitr1 hour ago
      Agent based chron jobs mostly that work with other agents. It’s really nice if you want to tell your computer to do something repeatedly or in confluence with many other agents in a very simple way. Like check my email for messages from Nadia and send me a notification and turn on all the lights in my driveway when she gets there without having to actually get into the nuts and bolts of implementing it. It’s actually really powerful and probably what Siri should be.
    • _doctor_love1 hour ago
      Assuming you&#x27;re asking in good faith, IMHO the deeper story around OpenClaw is that it&#x27;s the core piece of a larger pattern.<p>The way I&#x27;m seeing folks responsibly use OpenClaw is to install it as a well-regulated governor driving other agents and other tools. It is effectively the big brain orchestrating a larger system.<p>So for instance, you could have an OpenClaw jail where you-the-human talk to OpenClaw via some channel, and then that directs OpenClaw to put lower-level agents to work.<p>In some sense it&#x27;s a bit like Dwarf Fortress or the old Dungeon Keeper game. You declare what you want to have happen and then the imps run off and do it.<p>[EDIT: I truly down understand sometimes why people downvote things. If you don&#x27;t like what I&#x27;m saying, at least reply with some kind of argument.]
      • j-bos1 hour ago
        So I neither downvoted nor upvoted you, but I think people may be downvoting, in addition to the fact that they just don&#x27;t like the thing, based on the fact that you didn&#x27;t directly answer the question. Specifically, what are you using it for, not what hypothetically it would be used for.
      • PKop1 hour ago
        First words out of your mouth are to accuse OP of not seriously asking the question. Then you write paragraphs saying nothing much at all. You could have simply answered the question in a simple straightforward manner.
      • mvdtnz1 hour ago
        You&#x27;re probably being downvoted because you didn&#x27;t answer the question. The questioner specifically asked what people are using it for and you answered by describing your technical setup. What we want to know is, what are you actually achieving with this tool?
    • browningstreet2 hours ago
      This question gets asked a lot, and then answered a lot, and then asked again.. why fill the cup if the cup has a hole?<p>EDIT:<p>Y&#x27;all can downvote me if you want, but parent poster couldn&#x27;t find clawhub.ai with 45K skills for OpenClaw.<p>Kinda belies the &quot;No one uses OpenClaw for anything&quot; line.<p><a href="https:&#x2F;&#x2F;clawhub.ai&#x2F;skills?sort=downloads&amp;nonSuspicious=true" rel="nofollow">https:&#x2F;&#x2F;clawhub.ai&#x2F;skills?sort=downloads&amp;nonSuspicious=true</a>
      • sunaookami1 hour ago
        Obviously I already searched the web (not specifically HN I must admit) and there were always incredibly generic non-answers that ultimately say nothing (and they assume you have 3000$ per month or 2000 Mac Minis on your desk (hyperbole)).
        • ziml771 hour ago
          Incredibly, one of the responses you got already is exactly one of those replies that says nothing. There&#x27;s a whole bunch of words that don&#x27;t actually answer the question.
        • emp173441 hour ago
          I think you’ve got your answer, then. If nobody can tell you what it’s really used for, it likely doesn’t have any real use cases.
      • freedomben1 hour ago
        yeah I don&#x27;t normally say &quot;read previous HN articles&quot; but it has been asked at least once in every article here.
    • emptysongglass1 hour ago
      I&#x27;m so tired of answering this question so I simply won&#x27;t.<p>Your best way of finding if it&#x27;s useful <i>for you</i> is to install it and explore, just like you would with any other software tool.
      • equasar34 minutes ago
        Dodged the question entirely. Makes OP point very valid. OpenClaw is just nothing exciting to be about, it is a YOLO&#x2F;FOMO experience for people so they can feel they are part of the &quot;AI world&quot;.
        • emptysongglass32 minutes ago
          Why don&#x27;t you try it yourself instead of making uninformed claims
          • DonHopkins30 minutes ago
            <p><pre><code> You&#x27;ve never could have thought or guessed That things could get so far out of hand hahahahaha I&#x27;m gonna see you coming down in a cold sweat running It&#x27;s gonna be a different tune that you will soon be humming</code></pre>
      • DonHopkins38 minutes ago
        Before I decide to shoot up smack, I like to ask junkies what the whole heroin experience is like, what they use it for, and how it has affected their lives.<p>Nina Hagen - Smack Jack<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=nIDnN34ZZaE" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=nIDnN34ZZaE</a><p>&gt;Smack Ist Dreck, Stop It Oder Verreck!
        • emptysongglass31 minutes ago
          So you&#x27;re comparing a generic tool you can tailor to your own needs to drugs?<p>This is exactly why I have zero interest in engaging with people over this topic.
          • DonHopkins29 minutes ago
            <p><pre><code> The devil has got his hooks on you You are racing his clock His plastic paradise won&#x27;t last you&#x27;ve got a no future and no past Anyone can see your eyes excuse me hell is full of lies</code></pre>
  • Meneth18 minutes ago
    Text of the post has been [removed]. Original saved here: <a href="https:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20260403163241&#x2F;https:&#x2F;&#x2F;old.reddit.com&#x2F;r&#x2F;sysadmin&#x2F;comments&#x2F;1sbdw29&#x2F;if_youre_running_openclaw_you_probably_got_hacked&#x2F;" rel="nofollow">https:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20260403163241&#x2F;https:&#x2F;&#x2F;old.reddi...</a>
  • petcat2 hours ago
    I don&#x27;t use OpenClaw, but I still run my Claude Code and Codex as limited macOS user accounts and just have a script `become-agent &lt;name&gt; [cmd ...]` that does some sudo stuff to run as the limited user so they don&#x27;t have any of my environment or directory access, or really any system-level admin access at all. They can use and write to their home directories as usual, which makes things easier to configure since those CLI harnesses really like when $HOME is configured and works as expected.<p>It&#x27;s a good compromise between running as me and full sandbox-exec. Multi-user Unix-y systems were designed for this kind of stuff since decades ago.
    • w10-11 hour ago
      Yes, if&#x2F;since that user have no access to your apple id and keychain...<p>Not too much harder is using a VM:<p>With Apple&#x27;s open-source container tool, you can spin up a linux container vm in ~100ms. (No docker root)<p>With Apple virtualization framework, you can run macOS in a VM (with a separate apple id).
      • petcat56 minutes ago
        &gt; Yes, if&#x2F;since that user have no access to your apple id and keychain...<p>Right, these are system accounts. They don&#x27;t have access to anything except their own home folder and whatever I put in their .bashrc. `sudo` is a pretty easy sandbox by itself and lets me manage their home folders, shell, and environment easily just with the typical Unix-isms. No need for mounting VM disks, persisting disk images, etc.<p>I don&#x27;t need virtualization to let Claude Code run. I just let it run as a &quot;claude&quot; user.
  • sva_2 hours ago
    &gt; 4. System grants admin because it never checks if you are authorized to grant admin<p>Shipping at the speed of inference for real.
  • niwtsol2 hours ago
    Title is a bit misleading, no? You have to have openclaw running on an open box. And the post even says &quot;135k open instances&quot; out of 500k running instances? so a bit clickbait-y
    • 0cf8612b2e1e2 hours ago
      1&#x2F;5 rounds to “probably” when discussing security.
      • nickthegreek2 hours ago
        The 135k number appears to be pulled out of thin air? No idea where the 65% comes from. The command the post gives to list paired devices isn&#x27;t correct. These are red flags.
        • TZubiri19 minutes ago
          It&#x27;s pretty reasonable though, a lot of OpenClaw instances are hosted on a VPS, this is not unsafe.<p>My interpretation is that 135k instances are vulnerable, but of those there&#x27;s more conditions that need to be met, specifically:<p>These need to be multi-user systems where there are users with &#x27;basic pairing&#x27; privileges. Which I don&#x27;t think is very common, most instances are single-user.<p>So way less than the 135k number. I think a more accurate title would have been &quot;If you&#x27;re running OpenClaw, you are probably vulnerable&quot; but not &quot;you probably got hacked&quot;, that&#x27;s just outright false and there&#x27;s no evidence that the exposed users were ALL hacked.
    • mey2 hours ago
      More than 25% of users seems like a pretty accurate &quot;probably&quot;.
      • DrewADesign2 hours ago
        You know you’re getting into zealot territory when people are arguing semantics over the headline pointing to a <i>zero authentication admin access vulnerability CVE that affects a double-digit percentage of users</i>.
        • earnesti2 hours ago
          Does it really? Digging up the data from example the 135k instances in the open reeks like bullshit, I would suspect several other claims are exaggerated as well.
          • DrewADesign1 hour ago
            &gt; Digging up the data from example the 135k instances in the open reeks like bullshit, I would suspect several other claims are exaggerated as well.<p>Do you so stringently examine most CVEs? I’ll bet you don’t. Are you a big fan of this project? I’ll bet you are. Do you have any actual data to counter what they said or do you just sort of generally not vibe with it? If so, now would be a great time to break it out while this is still fresh. If not…
            • nickthegreek1 hour ago
              They are pointing out the data provided does not appear to be real. There is no credible link to this 135k number. They do not need to provide a number, as one does not appear to exist.
      • peacebeard2 hours ago
        Today I learned nobody agrees on what the word &quot;probably&quot; means.
        • SequoiaHope2 hours ago
          Ya I thought it meant “more probable than not” ie 50+%.<p>Otherwise I would say “you may have been hacked” not “you probably have been hacked”.
          • lwansbrough2 hours ago
            That is what it means. Unless you&#x27;re losing an argument on the internet and you need a word to hide behind. ;)
        • zephen2 hours ago
          You&#x27;re probably right.
      • furyofantares2 hours ago
        Here&#x27;s a statement that&#x27;s about 3x as true then:<p>If you&#x27;re running OpenClaw, you probably didn&#x27;t get hacked in the last week.
    • yonatan807041 minutes ago
      This sounds like a classic case of &quot;35% of statistics are made up&quot;
    • earnesti2 hours ago
      The 135k instances is likely not true at all.
    • DrewADesign2 hours ago
      It’s also only 65% of those that have zero authentication configured, according to that post (which I have done nothing to confirm or challenge at all… Frankly I wouldn’t touch OpenClaw with a ten foot… cable?) That said, I think it’s far more important to get people’s attention who might otherwise not realize how closely they need to pay attention to CVEs than it is to avoid hyperbole in headlines.
      • codechicago2772 hours ago
        Not if this is crying wolf and causing those same people to ignore the very real security risks with using OpenClaw.
        • DrewADesign2 hours ago
          How is 20% of users getting pwned <i>”crying wolf”</i> by <i>any</i> reasonable measure? This is a <i>zero authentication admin access vulnerability.</i>
          • codechicago27747 minutes ago
            Because 20% is not “probably got hacked” and overstates the problem for most users.<p>That doesn’t mean this isn’t a critical vulnerability, and I think it’s insane to run OpenClaw in its current state. But the current headline will burn your credibility, because 80% of users will be fine with no action, and they’ll take future security issues less seriously as a result.
          • nickthegreek46 minutes ago
            All the numbers you are using appear to be made up by the reddit poster. I say that as they provided no citation to them (for all I know they got them from an AI). I attempted to verify any of the numbers he used and could not. By exaggerating the numbers he is crying wolf.
  • neya2 hours ago
    Someone has to say this, but - If you still continued to use OpenClaw despite multiple top news sites explaining the scope of the previous hacks and why you shouldn&#x27;t use it, you probably deserved to get hacked
    • pezo19191 hour ago
      “It’s OK to be hacked until everyone is getting hacked.”
  • reenorap55 minutes ago
    The threads on that &#x2F;r&#x2F;sysadmin post sound exactly like every sysadmin I&#x27;ve ever worked with in my career.
  • Leomuck2 hours ago
    Well, such things were to be expected. It&#x27;s easy to bash on all the people who haven&#x27;t gotten the necessary IT understanding of securing such things. Of course, it&#x27;s uber-dumb to run an unprotected instance. But at the same time, it&#x27;s also quite cool that so many people can do interesting IT stuff now. I&#x27;m thinking basically it&#x27;s a trade-off. Be able to do great stuff, live with the consequences of doing that without proper training. Like repairing your car yourself. You might have fun doing it, it might get you somewhere, but you have to accept that if you have no idea about cars, you just introduced a pretty big risk into your life (say if you replaced the brakes or something). But yea, security, privacy, fighting climate change, all very much on the decline - humans doing cool things, ignoring important things - we&#x27;ll have to live with the consequences.
    • paulhebert2 hours ago
      Gonna be honest. I&#x27;d rather fight climate change than have people run LLMs unsecured
      • Xunjin1 hour ago
        Yeah... The bill is already being paid. I wonder how the life quality of my nephew (and other children) of 5 years old today will be in the near future..
    • butlike1 hour ago
      With your car example, you also assume the risk unto others. If your &quot;chopper&quot; of a car hits and kills someone else, and you survive, you&#x27;re paying for the consequences of that. I don&#x27;t think it&#x27;s cool that untrained people can do interesting IT stuff now. I see it as a huge liability where some unsecured instance pwns the internet, then it&#x27;s some 12 year old that gets marched in front of congress and everyone goes: &quot;wtf?&quot; There&#x27;s essentially no accountability and the damage is still done.
  • n1tro_lab1 hour ago
    Authorization failed open when a parameter was missing. Same pattern as Langflow. They patched one endpoint, missed another calling the same function. Per-endpoint hardening doesn&#x27;t scale.
  • kube-system1 hour ago
    If someone could forward the SSH port from my VPS to access my instance, I already had bigger problems.
  • bigstrat200346 minutes ago
    If you&#x27;re running OpenClaw, you already threw security and reliability out the window by running LLMs on the command line. It&#x27;s a bit late to start worrying now.
  • Simon3212 hours ago
    Only if your openclaw instance is publicly exposed on the internet... which is not the case for most people
    • causal2 hours ago
      Until recently, this was default configuration<p>Edit: Default binding was to 0.0.0.0, and if you were not aware of this and assumed your router was keeping you safe, you probably should not be using OpenClaw. In fact some services may still default to 0.0.0.0: <a href="https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;issues&#x2F;5263" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;issues&#x2F;5263</a><p><a href="https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;commit&#x2F;5643a934799dc523ec2ef18c007e1aa2c386b670" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;commit&#x2F;5643a934799dc523...</a>
      • earnesti2 hours ago
        I have used openclaw pretty long but at no point it has proposed doing anything like that.
      • nickthegreek2 hours ago
        Not true. So many people love to come out of the woodwork on these openclaw posts who have no first hand knowledge of the software. It is stunning.
      • charcircuit2 hours ago
        Since pretty much the beginning it wasn&#x27;t and the documentation explicitly warned not to make it public, exposing it to the internet. It included information on how you can properly forward the gateway port to your machine without opening it up to the internet.
  • rvz2 hours ago
    OpenClaw has over 400+ security issues and vulnerabilities. [0]<p>Why on earth would you install something like that has access to your entire machine, even if it is a separate one which has the potential to scan local networks?<p>Who is even making money out of OpenClaw other than the people attempting to host it? I see little use out of it other than a way to get yourself hacked by anyone.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;security" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;openclaw&#x2F;openclaw&#x2F;security</a>
    • nickthegreek2 hours ago
      It does not need access to your full machine. It can literally run in a vps.
      • eloisant36 minutes ago
        The thing is that if you want it to do useful things, you kinda have to give it access to some of your accounts.
        • nickthegreek4 minutes ago
          This is not true. It is useful without having access to a single account of mine. My setup runs on its own accounts and hardware. Obviously it is not sending out emails from my inbox, but that is not a usecase of any value to me. And if it was, there are actually plenty of ways to do that safely as well.<p>If you think you need to give it the keys to your kingdoom to be useful, you are not actually experimenting with this stack but regurgitating the words of others. I really don&#x27;t understand the mindset of comments like this.
      • rob1 hour ago
        Most of the people using it probably don&#x27;t even know what SSH is, let alone using a VPS to maintain a personal bot for them for years with no maintenance. They know Vercel and Supabase. They will run it on their local machine and just keep clicking yes to everything until they get the result they want.
        • nickthegreek2 minutes ago
          That is not how the software works.. I take it you have no first hand knowledge with this stack? This isn&#x27;t a double click the exe and you are off the races. The hostinger vps is actually the easiest way for a normie to get this running.
      • fraywing2 hours ago
        How do you think the vibe-coding layman audience is using OpenClaw?
        • nickthegreek2 hours ago
          Hostinger vps if youtube is any indication. Also its actually hard for a layman to run this software.
        • butlike1 hour ago
          &quot;All you have to do is run the command `&#x2F;yolo` to start your instance of OpenClaw.&quot;<p>&#x2F;s
  • earnesti2 hours ago
    I don&#x27;t think enabling admin on open internet is a default behaviour by any means?
  • pym4n1 hour ago
    Guys, OpenClaw is a toy, that&#x27;s it!
  • throwatdem123112 hours ago
    Think of all the people that are too ignorant to even understand the basics of any of this that are running OpenClaw. They will be completely unaware and attackers can easily hide their tracks by changing system prompts (among plenty of other things).<p>This is bad.
  • gos92 hours ago
    Really? Posting AI generated Reddit post with no sources or anything?
    • hmokiguess2 hours ago
      The link mentions the CVE, here&#x27;s the link <a href="https:&#x2F;&#x2F;nvd.nist.gov&#x2F;vuln&#x2F;detail&#x2F;CVE-2026-33579" rel="nofollow">https:&#x2F;&#x2F;nvd.nist.gov&#x2F;vuln&#x2F;detail&#x2F;CVE-2026-33579</a>
      • dijksterhuis2 hours ago
        if would be good if we could have the submission including this link at the top
    • tgv2 hours ago
      The CVE seems to be real.
  • hyperlambda1 hour ago
    [dead]
  • fraywing2 hours ago
    Could anyone have predicted that giving an agent free reign of your personal hardware could have resulted in bad things happening? not I &#x2F;s
    • jstanley2 hours ago
      But this is nothing to do with the agent being tricked. This is ordinary old-fashioned code being tricked!
      • paulhebert2 hours ago
        But was the code written by an agent? It&#x27;s agents all the way down
      • fraywing2 hours ago
        [dead]
  • podgorniy2 hours ago
    lol
    • tgv2 hours ago
      Your comment is obviously against the rules, but I read it as: Why are people not more careful? This is some unknown, app, with unknown, unvetted depths, and you only like it because other people say it&#x27;s shiny and AI. It made you giddy, and you forgot that giving a tool permissions is an invitation to hackers. Well, you went ahead and ignored all common sense, and here we are.
  • deadbabe3 hours ago
    I have a theory OpenClaw was built deliberately for malicious reasons under the guise of being something cool and useful.
    • butlike1 hour ago
      Hanlon&#x27;s Razor<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Hanlon%27s_razor" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Hanlon%27s_razor</a>
    • EA-31672 hours ago
      In this case I&#x27;d say that it was made not to enable that, but in total disregard of its realistic uses and risks. In a sense this is less... deliberate poisoning, and more doing a bad job cutting heroin with fentanyl for distribution. Yeah the result is the same, but the cause is negligence to the point of parody rather than outright malice.
      • throwatdem123112 hours ago
        Some people are so stupid it is indistinguishable from evil.
    • cactusplant73742 hours ago
      What reason would Steinberger have for doing that? It was his hobby project.
      • crazy5sheep2 hours ago
        [dead]
      • throwatdem123112 hours ago
        You can’t think of a single reason?<p>Intelligence asset.<p>Useful idiot.<p>Plenty of reasons.
      • asdff2 hours ago
        He doesn&#x27;t need a reason. He could have been captured by intelligence after the fact.
  • blharr2 hours ago
    Hackernews is now posting links to reddit AI slop posts that I came here to get away from...
    • dgellow2 hours ago
      Flag then move to the next one
    • throwatdem123112 hours ago
      As if the non-Reddit links aren’t majority AI slop already.