{"id":457,"date":"2021-12-20T09:22:58","date_gmt":"2021-12-20T08:22:58","guid":{"rendered":"https:\/\/security.humanativaspa.it\/?p=457"},"modified":"2025-10-21T09:30:36","modified_gmt":"2025-10-21T09:30:36","slug":"letme-go-a-minimalistic-meterpreter-stager-written-in-go","status":"publish","type":"post","link":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/","title":{"rendered":"letme.go &#8211; A minimalistic Meterpreter stager written in Go"},"content":{"rendered":"<p>A few years back, I published my <a href=\"https:\/\/github.com\/0xdea\/tactical-exploitation\">tactical exploitation toolkit<\/a>, which includes some <strong>offensive security tools<\/strong> to assist penetration testers and red teamers during their engagements:<\/p>\n<blockquote><p><em>&#8220;I&#8217;ve always been a big proponent of a <strong>tactical approach<\/strong> to penetration testing that does not focus on exploiting known software vulnerabilities, but relies on old school techniques such as information gathering and brute force. While being able to appreciate the occasional usefulness of a well-timed 0day, as a veteran penetration tester I favor an <strong>exploit-less approach<\/strong>. Tactical exploitation provides a smoother and more reliable way of compromising targets by leveraging process vulnerabilities, while minimizing attack detection and other undesired side effects.&#8221;<\/em><\/p>\n<p><em>&#8212; <a href=\"https:\/\/github.com\/0xdea\/tactical-exploitation\">https:\/\/github.com\/0xdea\/tactical-exploitation<\/a><\/em><\/p><\/blockquote>\n<p>One of my favorite tools that saved me and my team a lot of hassle in countless occasions is <a href=\"https:\/\/github.com\/0xdea\/tactical-exploitation\/blob\/master\/letmein.ps1\">letmein.ps1<\/a>, a PowerShell implementation of the staging protocols used by the <strong>Metasploit Framework<\/strong>. If used properly, it&#8217;s still able to provide you with a Meterpreter session on Windows without triggering most anti-malware mechanisms, despite being public since 2018. In the same toolkit, I also provided an alternative <a href=\"https:\/\/github.com\/0xdea\/tactical-exploitation\/blob\/master\/letmein.py\">Python implementation<\/a> for educational purposes, but its use is not recommended in the field.<\/p>\n<p>Long story short, this summer I decided to learn the <a href=\"https:\/\/golang.org\/\">Go<\/a> programming language. It attracted me mainly for its similarity with C (still my all time favorite language by a large margin), its modern approach to programming, and its seamless cross-compiling capabilities. In my view, those characteristics made it an ideal language to implement <strong>yet another Meterpreter stager<\/strong>. And <a href=\"https:\/\/github.com\/0xdea\/tactical-exploitation\/blob\/master\/letme.go\">here<\/a> it is!<\/p>\n<p>The code should be self-explanatory. I purposefully kept it as simple and minimalistic as possible, with an emphasis on readability. The usage should also be pretty straightforward. Begin with <strong>cross-compiling<\/strong> it for the target OS and architecture as follows:<\/p>\n<p><a href=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1.png\"><img decoding=\"async\" class=\"aligncenter wp-image-504 size-full\" src=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1.png\" alt=\"\" width=\"1860\" height=\"902\" srcset=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1.png 1860w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1-300x145.png 300w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1-1024x497.png 1024w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1-768x372.png 768w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1-1536x745.png 1536w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.09.24-1-350x170.png 350w\" sizes=\"(max-width: 1860px) 100vw, 1860px\" \/><\/a><\/p>\n<p>Then, on your attack box, start an <strong>exploit\/multi\/handler<\/strong> instance configured to handle one of the supported Meterpreter payloads (e.g., windows\/x64\/meterpreter\/reverse_tcp):<\/p>\n<p><a href=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1.png\"><img decoding=\"async\" class=\"aligncenter wp-image-498 size-full\" src=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1.png\" alt=\"\" width=\"1688\" height=\"1376\" srcset=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1.png 1688w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1-300x245.png 300w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1-1024x835.png 1024w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1-768x626.png 768w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1-1536x1252.png 1536w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-10.57.19-1-350x285.png 350w\" sizes=\"(max-width: 1688px) 100vw, 1688px\" \/><\/a><\/p>\n<p>Finally, run <strong>letme.exe<\/strong> on the target Windows box with a command such as the following:<\/p>\n<p><a href=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1.png\"><img decoding=\"async\" class=\"aligncenter wp-image-500 size-full\" src=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1.png\" alt=\"\" width=\"1034\" height=\"498\" srcset=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1.png 1034w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1-300x144.png 300w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1-1024x493.png 1024w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1-768x370.png 768w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.03.45-1-350x169.png 350w\" sizes=\"(max-width: 1034px) 100vw, 1034px\" \/><\/a><\/p>\n<p>You can now enjoy your <strong>session<\/strong>!<\/p>\n<p><a href=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1.png\"><img decoding=\"async\" class=\"aligncenter wp-image-501 size-full\" src=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1.png\" alt=\"\" width=\"2106\" height=\"934\" srcset=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1.png 2106w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-300x133.png 300w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-1024x454.png 1024w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-768x341.png 768w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-1536x681.png 1536w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-2048x908.png 2048w, https:\/\/hnsecurity.it\/wp-content\/uploads\/2021\/08\/Screenshot-2021-08-27-at-11.04.34-1-350x155.png 350w\" sizes=\"(max-width: 2106px) 100vw, 2106px\" \/><\/a><\/p>\n<p>Have fun and happy hacking \ud83d\ude09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A few years back, I published my tactical exploitation toolkit, which includes some offensive security tools to assist penetration testers [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":159931,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[88],"tags":[132,133,134,135,191,86,131],"class_list":["post-457","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tools","tag-metasploit","tag-meterpreter","tag-tactical-exploitation","tag-windows","tag-red-teaming","tag-penetration-test","tag-golang"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HN Security - letme.go - A minimalistic Meterpreter stager written in Go -<\/title>\n<meta name=\"description\" content=\"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HN Security - letme.go - A minimalistic Meterpreter stager written in Go -\" \/>\n<meta property=\"og:description\" content=\"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/\" \/>\n<meta property=\"og:site_name\" content=\"HN Security\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-20T08:22:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-21T09:30:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"836\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Marco Ivaldi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hnsec\" \/>\n<meta name=\"twitter:site\" content=\"@hnsec\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marco Ivaldi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/\"},\"author\":{\"name\":\"Marco Ivaldi\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#\\\/schema\\\/person\\\/89a4174c275f05d6148fb0fdedc8de4f\"},\"headline\":\"letme.go &#8211; A minimalistic Meterpreter stager written in Go\",\"datePublished\":\"2021-12-20T08:22:58+00:00\",\"dateModified\":\"2025-10-21T09:30:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/\"},\"wordCount\":361,\"publisher\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/LETMEGO.jpg\",\"keywords\":[\"metasploit\",\"meterpreter\",\"tactical exploitation\",\"windows\",\"red teaming\",\"penetration test\",\"golang\"],\"articleSection\":[\"Tools\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/\",\"url\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/\",\"name\":\"HN Security - letme.go - A minimalistic Meterpreter stager written in Go -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/LETMEGO.jpg\",\"datePublished\":\"2021-12-20T08:22:58+00:00\",\"dateModified\":\"2025-10-21T09:30:36+00:00\",\"description\":\"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#primaryimage\",\"url\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/LETMEGO.jpg\",\"contentUrl\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/LETMEGO.jpg\",\"width\":1600,\"height\":836,\"caption\":\"Gopher illustration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"letme.go &#8211; A minimalistic Meterpreter stager written in Go\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#website\",\"url\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/\",\"name\":\"HN Security\",\"description\":\"Offensive Security Specialists\",\"publisher\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#organization\",\"name\":\"HN Security\",\"url\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/hn-libellula.jpg\",\"contentUrl\":\"https:\\\/\\\/hnsecurity.it\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/hn-libellula.jpg\",\"width\":696,\"height\":696,\"caption\":\"HN Security\"},\"image\":{\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/hnsec\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/hnsecurity\\\/\",\"https:\\\/\\\/github.com\\\/hnsecurity\",\"https:\\\/\\\/infosec.exchange\\\/@hnsec\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/#\\\/schema\\\/person\\\/89a4174c275f05d6148fb0fdedc8de4f\",\"name\":\"Marco Ivaldi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g\",\"caption\":\"Marco Ivaldi\"},\"url\":\"https:\\\/\\\/hnsecurity.it\\\/it\\\/blog\\\/author\\\/marco-ivaldi\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HN Security - letme.go - A minimalistic Meterpreter stager written in Go -","description":"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.","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:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/","og_locale":"it_IT","og_type":"article","og_title":"HN Security - letme.go - A minimalistic Meterpreter stager written in Go -","og_description":"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.","og_url":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/","og_site_name":"HN Security","article_published_time":"2021-12-20T08:22:58+00:00","article_modified_time":"2025-10-21T09:30:36+00:00","og_image":[{"width":1600,"height":836,"url":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","type":"image\/jpeg"}],"author":"Marco Ivaldi","twitter_card":"summary_large_image","twitter_creator":"@hnsec","twitter_site":"@hnsec","twitter_misc":{"Scritto da":"Marco Ivaldi","Tempo di lettura stimato":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#article","isPartOf":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/"},"author":{"name":"Marco Ivaldi","@id":"https:\/\/hnsecurity.it\/it\/#\/schema\/person\/89a4174c275f05d6148fb0fdedc8de4f"},"headline":"letme.go &#8211; A minimalistic Meterpreter stager written in Go","datePublished":"2021-12-20T08:22:58+00:00","dateModified":"2025-10-21T09:30:36+00:00","mainEntityOfPage":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/"},"wordCount":361,"publisher":{"@id":"https:\/\/hnsecurity.it\/it\/#organization"},"image":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#primaryimage"},"thumbnailUrl":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","keywords":["metasploit","meterpreter","tactical exploitation","windows","red teaming","penetration test","golang"],"articleSection":["Tools"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/","url":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/","name":"HN Security - letme.go - A minimalistic Meterpreter stager written in Go -","isPartOf":{"@id":"https:\/\/hnsecurity.it\/it\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#primaryimage"},"image":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#primaryimage"},"thumbnailUrl":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","datePublished":"2021-12-20T08:22:58+00:00","dateModified":"2025-10-21T09:30:36+00:00","description":"Introducing a minimalistic Meterpreter stager written in Go (letme.go), useful in red teaming engagements.","breadcrumb":{"@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#primaryimage","url":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","contentUrl":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","width":1600,"height":836,"caption":"Gopher illustration"},{"@type":"BreadcrumbList","@id":"https:\/\/hnsecurity.it\/it\/blog\/letme-go-a-minimalistic-meterpreter-stager-written-in-go\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hnsecurity.it\/it\/"},{"@type":"ListItem","position":2,"name":"letme.go &#8211; A minimalistic Meterpreter stager written in Go"}]},{"@type":"WebSite","@id":"https:\/\/hnsecurity.it\/it\/#website","url":"https:\/\/hnsecurity.it\/it\/","name":"HN Security","description":"Offensive Security Specialists","publisher":{"@id":"https:\/\/hnsecurity.it\/it\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hnsecurity.it\/it\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/hnsecurity.it\/it\/#organization","name":"HN Security","url":"https:\/\/hnsecurity.it\/it\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/hnsecurity.it\/it\/#\/schema\/logo\/image\/","url":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2026\/01\/hn-libellula.jpg","contentUrl":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2026\/01\/hn-libellula.jpg","width":696,"height":696,"caption":"HN Security"},"image":{"@id":"https:\/\/hnsecurity.it\/it\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/hnsec","https:\/\/www.linkedin.com\/company\/hnsecurity\/","https:\/\/github.com\/hnsecurity","https:\/\/infosec.exchange\/@hnsec"]},{"@type":"Person","@id":"https:\/\/hnsecurity.it\/it\/#\/schema\/person\/89a4174c275f05d6148fb0fdedc8de4f","name":"Marco Ivaldi","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a8a96db06e7315a061d28b320ee7bb4c9d0f1535c58bf0f54218bf8a7569bea0?s=96&d=mm&r=g","caption":"Marco Ivaldi"},"url":"https:\/\/hnsecurity.it\/it\/blog\/author\/marco-ivaldi\/"}]}},"jetpack_featured_media_url":"https:\/\/hnsecurity.it\/wp-content\/uploads\/2025\/09\/LETMEGO.jpg","_links":{"self":[{"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/posts\/457","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/comments?post=457"}],"version-history":[{"count":1,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/posts\/457\/revisions"}],"predecessor-version":[{"id":159982,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/posts\/457\/revisions\/159982"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/media\/159931"}],"wp:attachment":[{"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/media?parent=457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/categories?post=457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hnsecurity.it\/it\/wp-json\/wp\/v2\/tags?post=457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}