{"id":25002,"date":"2025-11-06T06:36:31","date_gmt":"2025-11-06T06:36:31","guid":{"rendered":"http:\/\/localhost\/?p=25002"},"modified":"2025-11-06T06:36:31","modified_gmt":"2025-11-06T06:36:31","slug":"do-robots-dream-of-secure-networking-teaching-cybersecurity-to-ai-systems","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=25002","title":{"rendered":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-06T12:05:07&#8243;,&#8221;description&#8221;:&#8221;* This blog explores how to equip autonomous AI agents with cybersecurity knowledge, enabling them to make informed decisions about internet safety, such as identifying trustworthy links and websites.\\n  * It demonstrates a proof of concept using LangChain and OpenAI, integrated with the Cisco Umbrella API, to provide AI agents with real-time threat intelligence for evaluating domain dispositions.\\n  * By learning to assess the safety of domains, AI agents can develop better cyber hygiene, making more intelligent decisions rather than simply being restricted by security gateways, which is crucial for the next generation of autonomous AI systems.\\n\\n\\n\\n* * *\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/tool-talk.jpg)\\n\\nIn the late 1960s, the science fiction author Philip K. Dick wrote \\&#8221;Do Androids Dream of Electric Sheep,\\&#8221; which, among other themes, explored the traits that distinguish humans from autonomous robots. As advances in generative AI allow us to create autonomous agents that are able to reason and act on humans&#8217; behalf, we must consider the human traits and knowledge that we must equip agentic AI with to allow them to act autonomously, reasonably, and safely.\\n\\nOne skill we need to impart on our AI agents is the ability to stay safe when navigating the internet. If agentic AI systems are interacting with websites and APIs in the same way as a human internet user, they need to be aware that not all websites or public APIs are trustworthy, and nor is user supplied input. Therefore, we must empower our AI agents with the ability to make appropriate cyber hygiene decisions. In an agentic world, it is for the autonomous agent to decide if it is safe and appropriate to \\&#8221;click the link.\\&#8221;\\n\\nThe threat landscape is constantly shifting, so there are no hard and fast rules that we can teach AI systems about what is a safe link and what is not. AI agents must verify the disposition of links in real time to determine if something is malicious.\\n\\nThere are many emerging approaches to building AI workflow systems that can integrate multiple sources of information to allow an AI agent to come to a decision about an appropriate course of action. In this blog, I show how it is possible to use one of these frameworks, LangChain, with OpenAI to enable an AI agent to access real-time threat intelligence via the Cisco Umbrella API.\\n\\n## Prerequisites\\n\\nTo implement this example you will need API keys for Cisco Umbrella and a paid OpenAI account.\\n\\n  1.  _Obtain a new API key_ from OpenAI account with available credit. The key will not work if you have a free, unfunded account.\\n  2. Obtain a Cisco Umbrella API Key and Secret by  _following these steps_. Be sure the check the \\&#8221;Investigate\\&#8221; box for the Key Scope.\\n  3. Save your keys as shell environment variables named \\&#8221;OPENAI_API_KEY\\&#8221;, \\&#8221;UMBRELLA_KEY\\&#8221; and \\&#8221;UMBRELLA_SECRET\\&#8221; (e.g., export UMBRELLA_KEY=\\&#8221;nnnnnnnnnnnnnnnnnn\\&#8221;).\\n\\n\\n\\n## Code\\n\\nFollow along with the  _full sample code, which can be found in Talos &#8216; GitHub repository_.\\n\\nFirst, we need to describe the tool to the AI agent.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd1.png)\\n\\nThen we include the newly described tool in the list of available tools.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd2.png)\\n\\nNext, we create the large language model (LLM) instance that we will use. This example uses GPT-3.5-Turbo from OpenAI, but other LLM models are supported.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd3.png)\\n\\nNow, let&#8217;s give instructions to the LLM, describing what the LLM should do using natural language structured in a Question, Thought, Action, Observation format.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd4.png)\\n\\nCreate the agent and the executor instance that we will interact with.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd5.png)\\n\\nAs part of querying the Umbrella API, we must obtain a session token to pass to the Umbrella API with our request. This is obtained from an authentication call using our API key and secret.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd6.png)\\n\\nNext, let&#8217;s define the tool that we have described to the AI system. It accepts input text as a parameter and checks for the presence of any domains. If any are found, the disposition of each one is checked.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd7.png)\\n\\nThe key functionality within the above code is \\&#8221;getDomainDisposition\\&#8221; which passes the domain to the Umbrella API to retrieve the disposition and categorization information about the domain.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd8.png)\\n\\nWe can now pass input text to \\&#8221;agent_executor\\&#8221; to discover the agent&#8217;s opinion.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd9.png)\\n\\nThis gives the response:\\n\\n\\&#8221;_Agent Response: www.cisco.com is safe to browse._ \\&#8221;\\n\\nReassuringly, the agent reports that \\&#8221;cisco.com\\&#8221; is safe to connect to. If necessary, we can output the domain disposition report to see the logic by which the system arrives at this conclusion:\\n\\n\\&#8221;_This_  _contains_  _a URL. Considering www.cisco.com. The domain www.cisco.com has a positive disposition. The domain www.cisco.com is classified as: Computers and Internet, Software\/Technology._  _Known malicious domains are never safe, domains with positive disposition are usually safe. A domain with an unknown disposition might be safe if it is categorized._ \\&#8221;\\n\\nLet&#8217;s try a different domain which is  _known to be malicious_.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd10.png)\\n\\n_\\&#8221; Agent Response: do not connect\\&#8221;_\\n\\nWhen provided with a known malicious domain, the system identifies that the domain has a negative disposition and concludes that this is not a domain which is safe for connection.\\n\\nNow let&#8217;s try input text with two domains.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd11.png)\\n\\n_\\&#8221; Agent Response: www.umbrella.com is safe to connect to. test.example.com has an unknown disposition, so it is uncertain if it is safe to connect to.\\&#8221;_\\n\\nThe system is able to provide separate advice for each domain when supplied with input containing a domain with a positive disposition and one with an unknown disposition.\\n\\nFinally, let&#8217;s see what happens when we pose an unrelated question without any domains.\\n\\n![Do robots dream of secure networking? Teaching cybersecurity to AI systems](https:\/\/blog.talosintelligence.com\/content\/images\/2025\/11\/drd12.png)\\n\\n_\\&#8221; Agent Response: no opinion\\&#8221;_\\n\\nExamining the logic shows that the system made the correct decision not to attempt to answer the question.\\n\\n\\&#8221;_No URLs found. Since no internet domains were found in the user input, I have no information to assess the safety of any websites._ \\&#8221;\\n\\n## Discussion\\n\\nThis is very much proof-of-concept code, but it does show how we can integrate APIs offering real-time authoritative facts, such as the security disposition of domains from Umbrella, into the decision making process of AI agents.\\n\\nThere are other approaches that we can use to arrive at the same result. We could put the AI agent behind a web security gateway or require the agent to use Umbrella DNS, which would enforce the restriction not to connect to malicious sites. However, to do so removes the ability for the AI agent to learn how to make sense of potentially conflicting information and to make good decisions.\\n\\nThe current generation of LLM-based generative AI systems is only the beginning of the forthcoming advances in autonomous agentic AI. As part of building this next generation of AI systems, we need to ensure that they not only make good decisions, but understand cyber hygiene and have access to real-time threat intelligence on which to base their decision-making.&#8221;,&#8221;published&#8221;:&#8221;2025-11-06T11:00:37&#8243;,&#8221;modified&#8221;:&#8221;2025-11-06T11:00:37&#8243;,&#8221;type&#8221;:&#8221;talosblog&#8221;,&#8221;title&#8221;:&#8221;Do robots dream of secure networking? Teaching cybersecurity to AI systems&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390&#8243;,&#8221;bulletinFamily&#8221;:&#8221;blog&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/blog.talosintelligence.com\/do-robots-dream-of-secure-networking\/&#8221;,&#8221;category_name&#8221;:&#8221;News&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-06T12:05:07&#8243;,&#8221;description&#8221;:&#8221;* This blog explores how to equip autonomous AI agents with cybersecurity knowledge, enabling them to make informed decisions about internet safety, such as identifying&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,13,33,7,69,11,5],"class_list":["post-25002","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-security","tag-talosblog","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=25002\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-06T12:05:07&#8243;,&#8221;description&#8221;:&#8221;* This blog explores how to equip autonomous AI agents with cybersecurity knowledge, enabling them to make informed decisions about internet safety, such as identifying...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=25002\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-06T06:36:31+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390\",\"datePublished\":\"2025-11-06T06:36:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002\"},\"wordCount\":1580,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"Security\",\"talosblog\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=25002#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002\",\"name\":\"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-06T06:36:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=25002\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=25002#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem","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:\/\/zero.redgem.net\/?p=25002","og_locale":"en_US","og_type":"article","og_title":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-06T12:05:07&#8243;,&#8221;description&#8221;:&#8221;* This blog explores how to equip autonomous AI agents with cybersecurity knowledge, enabling them to make informed decisions about internet safety, such as identifying...","og_url":"https:\/\/zero.redgem.net\/?p=25002","og_site_name":"zero redgem","article_published_time":"2025-11-06T06:36:31+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=25002#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=25002"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390","datePublished":"2025-11-06T06:36:31+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=25002"},"wordCount":1580,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","Security","talosblog","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=25002#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=25002","url":"https:\/\/zero.redgem.net\/?p=25002","name":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-06T06:36:31+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=25002#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=25002"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=25002#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Do robots dream of secure networking? Teaching cybersecurity to AI systems_TALOSBLOG:26BBD5F1BA50C1251B05E23686A90390"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/25002","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=25002"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/25002\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=25002"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=25002"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=25002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}