{"id":92391,"date":"2026-05-23T16:57:44","date_gmt":"2026-05-23T16:57:44","guid":{"rendered":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/"},"modified":"2026-05-23T16:57:44","modified_gmt":"2026-05-23T16:57:44","slug":"perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints","status":"publish","type":"post","link":"https:\/\/youzum.net\/de\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/","title":{"rendered":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Attackers increasingly target the packages, editor extensions, and AI tool configs on developer machines and not just production systems. Perplexity has open-sourced an internal tool it uses to address this problem.<\/p>\n<p class=\"wp-block-paragraph\">Perplexity released <a href=\"https:\/\/github.com\/perplexityai\/bumblebee\" target=\"_blank\" rel=\"noreferrer noopener\">Bumblebee on GitHub<\/a>. The tool is a read-only inventory collector for macOS and Linux developer endpoints. It is written entirely in Go and carries zero non-stdlib dependencies. Perplexity already uses it internally to protect developer systems behind its search product, Comet browser, and Computer agent.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Problem that Bumblebee Solves<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">If you are a software engineer or data scientist, you likely have dozens of packages installed locally. You have editor extensions, browser add-ons, and possibly MCP (Model Context Protocol) configs on your machine. When a new vulnerability surfaces, your security team faces one urgent question: which developer machines are exposed right now?<\/p>\n<p class=\"wp-block-paragraph\">Existing tools do not fully answer this. SBOMs (Software Bills of Materials) and vulnerability scanners cover build artifacts and repositories. EDR (Endpoint Detection and Response) products track what processes ran or touched the network. Neither checks local developer state \u2014 lockfiles, package metadata, extension manifests, and AI tool configs scattered across a laptop\u2019s filesystem.<\/p>\n<p class=\"wp-block-paragraph\">Bumblebee fills that gap. When an advisory names a package, extension, or version, it answers which machines show a match in their on-disk metadata right now. The ecosystem scope was also deliberate: the covered ecosystems map to recent active supply-chain campaigns, including the Mini Shai-Hulud series, which hit npm, PyPI, RubyGems, Go modules, and Composer packages across companies including TanStack, SAP, and Zapier.<\/p>\n<h2 class=\"wp-block-heading\"><strong>How Bumblebee Works<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Bumblebee is a one-shot scanner. Each invocation performs a single scan and exits. Cadence is the operator\u2019s responsibility \u2014 cron, launchd, systemd, or MDM fleet tooling. It outputs structured records as NDJSON (newline-delimited JSON), one per line, with diagnostics going to stderr.<\/p>\n<p class=\"wp-block-paragraph\">The tool supports three scan profiles. The <code>baseline<\/code> profile scans common global and user package roots, language toolchains, editor extensions, browser extensions, and MCP configs. The <code>project<\/code> profile targets configured development directories such as <code>~\/code<\/code> or <code>~\/src<\/code>. The <code>deep<\/code> profile sweeps operator-supplied roots, typically a bare home directory during an active incident.<\/p>\n<p class=\"wp-block-paragraph\">Internally, Perplexity uses Bumblebee inside a five-step workflow. A threat signal arrives from public disclosures or third-party intel feeds. Perplexity Computer then drafts a catalog update, entering the signal as a structured entry with ecosystem, package name, and version \u2014 and opens a GitHub PR with source links. A human dev reviews and merges the PR. Bumblebee then runs on endpoints with the updated catalog, and findings are shared with the security team.<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"2352\" height=\"1426\" data-attachment-id=\"80059\" data-permalink=\"https:\/\/www.marktechpost.com\/2026\/05\/23\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/screenshot-2026-05-23-at-1-20-14-am-2\/\" data-orig-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1.png\" data-orig-size=\"2352,1426\" data-comments-opened=\"0\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\",\"alt\":\"\"}' data-image-title=\"Screenshot 2026-05-23 at 1.20.14\u202fAM\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-1024x621.png\" src=\"https:\/\/www.marktechpost.com\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1.png\" alt=\"\" class=\"wp-image-80059\" \/><figcaption class=\"wp-element-caption\">Image source: https:\/\/www.perplexity.ai\/hub\/blog\/perplexity-is-open-sourcing-bumblebee<\/figcaption><\/figure>\n<\/div>\n<h2 class=\"wp-block-heading\"><strong>What Bumblebee Scans<\/strong><\/h2>\n<p class=\"wp-block-paragraph\"><strong>Bumblebee covers four surface areas that existing tools typically handle separately.<\/strong><\/p>\n<p class=\"wp-block-paragraph\">For language package managers, it reads from npm, pnpm, Yarn, Bun, PyPI, Go modules, RubyGems, and Composer. It reads lockfiles and installed package metadata directly \u2014 sources like <code>package-lock.json<\/code>, <code>pnpm-lock.yaml<\/code>, <code>go.sum<\/code>, and <code>*.dist-info\/METADATA<\/code>. Note that <code>bun.lockb<\/code>, Bun\u2019s binary lockfile format, is not parsed in v0.1; only the text <code>bun.lock<\/code> format is supported.<\/p>\n<p class=\"wp-block-paragraph\">For AI agent configs, Bumblebee reads MCP JSON host configuration files: <code>mcp.json<\/code>, <code>.mcp.json<\/code>, <code>claude_desktop_config.json<\/code>, <code>mcp_config.json<\/code>, <code>mcp_settings.json<\/code>, <code>cline_mcp_settings.json<\/code>, and <code>~\/.gemini\/settings.json<\/code> for Gemini CLI. Non-JSON MCP configs such as Codex <code>config.toml<\/code> and Continue YAML are not parsed in v0.1. It parses these files for server inventory but does not emit environment values or environment key names found in <code>env<\/code> blocks.<\/p>\n<p class=\"wp-block-paragraph\">For editor extensions, it reads manifests from VS Code, Cursor, Windsurf, and VSCodium. For browser extensions, it covers Chromium-family browsers \u2014 Chrome, Comet, Edge, Brave, and Arc \u2014 plus Firefox.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Why Read-Only<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">npm packages can carry <code>postinstall<\/code> scripts that execute automatically on <code>npm install<\/code>. A scanner that invokes npm to check exposure has already triggered the attack it was looking for. Bumblebee avoids this entirely by never running install scripts or lifecycle hooks, never invoking npm, pnpm, bun, or pip, never reading application source files, and performing no process or network monitoring. It is not an EDR.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Output and Exposure Catalog<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Each package record includes the hostname, OS, architecture, ecosystem, package name, version, source file, and a <code>confidence<\/code> field. Confidence is <code>high<\/code> when exact identity and version came from canonical metadata, <code>medium<\/code> when identity is reliable but version or source is partial, and <code>low<\/code> when only a config path or spec reference is found.<\/p>\n<p class=\"wp-block-paragraph\">Security teams supply their own exposure catalogs \u2014 simple JSON files specifying ecosystem, package name, and affected versions. When Bumblebee finds a match, it emits a finding record including severity, catalog ID, and evidence. Each finding is fully traceable back to which catalog entry triggered it. The repo also includes a <code>threat_intel\/<\/code> directory with maintained exposure catalogs built from public supply-chain campaign reporting.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Getting Started<\/strong><\/h2>\n<p class=\"wp-block-paragraph\"><strong>Bumblebee requires Go 1.25 or later. Install with:<\/strong><\/p>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\">go install github.com\/perplexityai\/bumblebee\/cmd\/bumblebee@latest<\/code><\/pre>\n<\/div>\n<\/div>\n<p class=\"wp-block-paragraph\">After install, <code>bumblebee selftest<\/code> verifies the binary works correctly against embedded fixtures. The tool is licensed under Apache License 2.0. The current release is v0.1.1.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li>Bumblebee is Perplexity\u2019s open-sourced, read-only developer endpoint scanner for supply-chain exposure checks.<\/li>\n<li>It covers npm, pnpm, Yarn, Bun, PyPI, Go modules, RubyGems, Composer, MCP configs, editor extensions, and browser extensions.<\/li>\n<li>Three scan profiles \u2014 <code>baseline<\/code>, <code>project<\/code>, and <code>deep<\/code> \u2014 support routine inventory and active incident response.<\/li>\n<li>The tool never executes install scripts or invokes package managers, preventing scan-triggered attacks.<\/li>\n<li>Built in Go with zero non-stdlib dependencies; available now on GitHub under Apache 2.0.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<\/p><p class=\"wp-block-paragraph\">\n<\/p><p class=\"wp-block-paragraph\">Check out\u00a0the <strong><a href=\"https:\/\/github.com\/perplexityai\/bumblebee\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub Repo<\/a><\/strong> and\u00a0<strong><a href=\"https:\/\/www.perplexity.ai\/hub\/blog\/perplexity-is-open-sourcing-bumblebee\" target=\"_blank\" rel=\"noreferrer noopener\">Technical details<\/a>.\u00a0<\/strong>Also,\u00a0feel free to follow us on\u00a0<strong><a href=\"https:\/\/x.com\/intent\/follow?screen_name=marktechpost\" target=\"_blank\" rel=\"noreferrer noopener\"><mark>Twitter<\/mark><\/a><\/strong>\u00a0and don\u2019t forget to join our\u00a0<strong><a href=\"https:\/\/www.reddit.com\/r\/machinelearningnews\/\" target=\"_blank\" rel=\"noreferrer noopener\">150k+ ML SubReddit<\/a><\/strong>\u00a0and Subscribe to\u00a0<strong><a href=\"https:\/\/www.aidevsignals.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">our Newsletter<\/a><\/strong>. Wait! are you on telegram?\u00a0<strong><a href=\"https:\/\/t.me\/machinelearningresearchnews\" target=\"_blank\" rel=\"noreferrer noopener\">now you can join us on telegram as well.<\/a><\/strong><\/p>\n<p class=\"wp-block-paragraph\">Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0<strong><a href=\"https:\/\/forms.gle\/MTNLpmJtsFA3VRVd9\" target=\"_blank\" rel=\"noreferrer noopener\"><mark>Connect with us<\/mark><\/a><\/strong><\/p>\n<p>The post <a href=\"https:\/\/www.marktechpost.com\/2026\/05\/23\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\">Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints<\/a> appeared first on <a href=\"https:\/\/www.marktechpost.com\/\">MarkTechPost<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Attackers increasingly target the packages, editor extensions, and AI tool configs on developer machines and not just production systems. Perplexity has open-sourced an internal tool it uses to address this problem. Perplexity released Bumblebee on GitHub. The tool is a read-only inventory collector for macOS and Linux developer endpoints. It is written entirely in Go and carries zero non-stdlib dependencies. Perplexity already uses it internally to protect developer systems behind its search product, Comet browser, and Computer agent. Problem that Bumblebee Solves If you are a software engineer or data scientist, you likely have dozens of packages installed locally. You have editor extensions, browser add-ons, and possibly MCP (Model Context Protocol) configs on your machine. When a new vulnerability surfaces, your security team faces one urgent question: which developer machines are exposed right now? Existing tools do not fully answer this. SBOMs (Software Bills of Materials) and vulnerability scanners cover build artifacts and repositories. EDR (Endpoint Detection and Response) products track what processes ran or touched the network. Neither checks local developer state \u2014 lockfiles, package metadata, extension manifests, and AI tool configs scattered across a laptop\u2019s filesystem. Bumblebee fills that gap. When an advisory names a package, extension, or version, it answers which machines show a match in their on-disk metadata right now. The ecosystem scope was also deliberate: the covered ecosystems map to recent active supply-chain campaigns, including the Mini Shai-Hulud series, which hit npm, PyPI, RubyGems, Go modules, and Composer packages across companies including TanStack, SAP, and Zapier. How Bumblebee Works Bumblebee is a one-shot scanner. Each invocation performs a single scan and exits. Cadence is the operator\u2019s responsibility \u2014 cron, launchd, systemd, or MDM fleet tooling. It outputs structured records as NDJSON (newline-delimited JSON), one per line, with diagnostics going to stderr. The tool supports three scan profiles. The baseline profile scans common global and user package roots, language toolchains, editor extensions, browser extensions, and MCP configs. The project profile targets configured development directories such as ~\/code or ~\/src. The deep profile sweeps operator-supplied roots, typically a bare home directory during an active incident. Internally, Perplexity uses Bumblebee inside a five-step workflow. A threat signal arrives from public disclosures or third-party intel feeds. Perplexity Computer then drafts a catalog update, entering the signal as a structured entry with ecosystem, package name, and version \u2014 and opens a GitHub PR with source links. A human dev reviews and merges the PR. Bumblebee then runs on endpoints with the updated catalog, and findings are shared with the security team. Image source: https:\/\/www.perplexity.ai\/hub\/blog\/perplexity-is-open-sourcing-bumblebee What Bumblebee Scans Bumblebee covers four surface areas that existing tools typically handle separately. For language package managers, it reads from npm, pnpm, Yarn, Bun, PyPI, Go modules, RubyGems, and Composer. It reads lockfiles and installed package metadata directly \u2014 sources like package-lock.json, pnpm-lock.yaml, go.sum, and *.dist-info\/METADATA. Note that bun.lockb, Bun\u2019s binary lockfile format, is not parsed in v0.1; only the text bun.lock format is supported. For AI agent configs, Bumblebee reads MCP JSON host configuration files: mcp.json, .mcp.json, claude_desktop_config.json, mcp_config.json, mcp_settings.json, cline_mcp_settings.json, and ~\/.gemini\/settings.json for Gemini CLI. Non-JSON MCP configs such as Codex config.toml and Continue YAML are not parsed in v0.1. It parses these files for server inventory but does not emit environment values or environment key names found in env blocks. For editor extensions, it reads manifests from VS Code, Cursor, Windsurf, and VSCodium. For browser extensions, it covers Chromium-family browsers \u2014 Chrome, Comet, Edge, Brave, and Arc \u2014 plus Firefox. Why Read-Only npm packages can carry postinstall scripts that execute automatically on npm install. A scanner that invokes npm to check exposure has already triggered the attack it was looking for. Bumblebee avoids this entirely by never running install scripts or lifecycle hooks, never invoking npm, pnpm, bun, or pip, never reading application source files, and performing no process or network monitoring. It is not an EDR. Output and Exposure Catalog Each package record includes the hostname, OS, architecture, ecosystem, package name, version, source file, and a confidence field. Confidence is high when exact identity and version came from canonical metadata, medium when identity is reliable but version or source is partial, and low when only a config path or spec reference is found. Security teams supply their own exposure catalogs \u2014 simple JSON files specifying ecosystem, package name, and affected versions. When Bumblebee finds a match, it emits a finding record including severity, catalog ID, and evidence. Each finding is fully traceable back to which catalog entry triggered it. The repo also includes a threat_intel\/ directory with maintained exposure catalogs built from public supply-chain campaign reporting. Getting Started Bumblebee requires Go 1.25 or later. Install with: Copy CodeCopiedUse a different Browser go install github.com\/perplexityai\/bumblebee\/cmd\/bumblebee@latest After install, bumblebee selftest verifies the binary works correctly against embedded fixtures. The tool is licensed under Apache License 2.0. The current release is v0.1.1. Key Takeaways Bumblebee is Perplexity\u2019s open-sourced, read-only developer endpoint scanner for supply-chain exposure checks. It covers npm, pnpm, Yarn, Bun, PyPI, Go modules, RubyGems, Composer, MCP configs, editor extensions, and browser extensions. Three scan profiles \u2014 baseline, project, and deep \u2014 support routine inventory and active incident response. The tool never executes install scripts or invokes package managers, preventing scan-triggered attacks. Built in Go with zero non-stdlib dependencies; available now on GitHub under Apache 2.0. Check out\u00a0the GitHub Repo and\u00a0Technical details.\u00a0Also,\u00a0feel free to follow us on\u00a0Twitter\u00a0and don\u2019t forget to join our\u00a0150k+ ML SubReddit\u00a0and Subscribe to\u00a0our Newsletter. Wait! are you on telegram?\u00a0now you can join us on telegram as well. Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0Connect with us The post Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints appeared first on MarkTechPost.<\/p>","protected":false},"author":2,"featured_media":92392,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-92391","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/de\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/de\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-23T16:57:44+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints\",\"datePublished\":\"2026-05-23T16:57:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\"},\"wordCount\":941,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png\",\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\",\"url\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\",\"name\":\"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png\",\"datePublished\":\"2026-05-23T16:57:44+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png\",\"width\":2352,\"height\":1426},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/de\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youzum.net\/de\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/","og_locale":"de_DE","og_type":"article","og_title":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/de\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2026-05-23T16:57:44+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"admin NU","Gesch\u00e4tzte Lesezeit":"5\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints","datePublished":"2026-05-23T16:57:44+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/"},"wordCount":941,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"image":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png","articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/","url":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/","name":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage"},"image":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage"},"thumbnailUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png","datePublished":"2026-05-23T16:57:44+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#primaryimage","url":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png","width":2352,"height":1426},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/perplexity-open-sources-bumblebee-a-read-only-supply-chain-scanner-for-developer-endpoints\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"Perplexity Open-Sources Bumblebee: A Read-Only Supply-Chain Scanner for Developer Endpoints"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/de\/members\/adminnu\/"}]}},"rttpg_featured_image_url":{"full":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png",2352,1426,false],"landscape":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png",2352,1426,false],"portraits":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb.png",2352,1426,false],"thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-150x150.png",150,150,true],"medium":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-300x182.png",300,182,true],"large":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-1024x621.png",1024,621,true],"1536x1536":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-1536x931.png",1536,931,true],"2048x2048":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-2048x1242.png",2048,1242,true],"trp-custom-language-flag":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-18x12.png",18,12,true],"woocommerce_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-300x300.png",300,300,true],"woocommerce_single":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-600x364.png",600,364,true],"woocommerce_gallery_thumbnail":["https:\/\/youzum.net\/wp-content\/uploads\/2026\/05\/Screenshot-2026-05-23-at-1.20.14-AM-1-SZpvjb-100x100.png",100,100,true]},"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/de\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/de\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/de\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/de\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/de\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"Attackers increasingly target the packages, editor extensions, and AI tool configs on developer machines and not just production systems. Perplexity has open-sourced an internal tool it uses to address this problem. Perplexity released Bumblebee on GitHub. The tool is a read-only inventory collector for macOS and Linux developer endpoints. It is written entirely in Go&hellip;","_links":{"self":[{"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/posts\/92391","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/comments?post=92391"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/posts\/92391\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/media\/92392"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/media?parent=92391"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/categories?post=92391"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/de\/wp-json\/wp\/v2\/tags?post=92391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}