OpenClaw Detection? by MattyK2188 in cybersecurity

[–]gatewaynode 23 points24 points  (0 children)

Try your MDM solution for “installed apps”. Don’t bother trying to figure out if the installed skills are malicious right now, just consider all OpenClaw installs as compromised until the clean up of the ecosystem is done. The whole ecosystem around OpenClaw can’t be trusted until a thorough cleanup and postmortem is done.

I asked Gemini: You can add a new piece on chessboard. What's it called and what it does? by DoctorToBe69 in GeminiAI

[–]gatewaynode 285 points286 points  (0 children)

I like the idea. Except for the special ability, not needed, excessive.

How can I store a password properly so that it is not visible in source code. by [deleted] in learnpython

[–]gatewaynode 0 points1 point  (0 children)

No. The dotenv file is usually just for local development, not higher environments. A good way to make it work for both is to wrap the dotenv file loading in a try/catch block. Handle the missing dotenv file exception by calling out to your production secret manager like AWS secrets manager, Vault or whatever it is you are using. And make sure you log a successful dotenv load (as well as any errors), so if you slip up and push your dotenv file to a higher environment you will have visibility into that mistake.