{"id":41,"date":"2022-03-30T22:58:59","date_gmt":"2022-03-30T22:58:59","guid":{"rendered":"https:\/\/cyberlorenzo.tech\/?p=41"},"modified":"2022-05-12T22:43:43","modified_gmt":"2022-05-12T22:43:43","slug":"project-one","status":"publish","type":"post","link":"https:\/\/cyberlorenzo.tech\/?p=41","title":{"rendered":"Enumerating and Exploiting SMB (Server Message Block Protocol)"},"content":{"rendered":"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<h3 class=\"wp-block-heading\"><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/tryhackme.com\/\" title=\"\">https:\/\/tryhackme.com\/<\/a> <\/p>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What is SMB?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">SMB &#8211; Server Message Block Protocol &#8211; is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [<a href=\"https:\/\/searchnetworking.techtarget.com\/definition\/Server-Message-Block-Protocol\">source<\/a>]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they also want access to the shared file systems and printers on the servers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The SMB protocol is known as a response-request protocol, meaning that it transmits multiple messages between the client and server to establish a connection. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Now lets get started!<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The key tool we will be using in this project will be &#8220;Enum4Linux&#8221;. This tool is used specifcally for enumerating SMB shares on both Windows and Linux systems. This is installed by default on Parrot or Kali Linux but if you need to install it you can do so from Github.  <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/github.com\/CiscoCXSecurity\/enum4linux\">https:\/\/github.com\/CiscoCXSecurity\/enum4linux<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">First we need to enumerate to gather some information on our target machine, in the photo provided you can see that we have identified three ports are open using our NMAP scan. <code><mark style=\"background-color:#db4f3d\" class=\"has-inline-color\">[nmap -sV IP]<\/mark><\/code> <\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\"><\/div><\/div>\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"474\" data-id=\"45\" src=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1-1024x474.png\" alt=\"\" class=\"wp-image-45\" srcset=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1-1024x474.png 1024w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1-300x139.png 300w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1-768x355.png 768w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1-1536x711.png 1536w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-31-1.png 1867w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">We can tell from this scan that SMB is running over ports 139\/445 over TCP<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now lets run out Enum4Linux command and see if we can sniff a sharelist and any other possible useful information.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After running the <code><mark style=\"background-color:#db4f3d\" class=\"has-inline-color\">enum4linux -a <\/mark><\/code> command we found out that the workgroup name is &#8220;WORKGROUP&#8221;. We also learned that the name of the machine is &#8220;POLOSMB&#8221; and the sharelist populated as well with an interesting directory that we are interested in looking further into called &#8220;profiles&#8221;. <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-33.png\" alt=\"\" class=\"wp-image-47\" width=\"630\" height=\"537\" srcset=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-33.png 1003w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-33-300x256.png 300w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-33-768x655.png 768w\" sizes=\"auto, (max-width: 630px) 100vw, 630px\" \/><\/figure><\/div>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-32.png\" alt=\"\" class=\"wp-image-46\" width=\"672\" height=\"577\"\/><\/figure>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p class=\"wp-block-paragraph\">There are other vulnerabilities that can actually allow remote code execution by exploiting SMB but it&#8217;s said that you are much more likely to find a misconfiguration in the system. In this case we&#8217;re doing just that, we&#8217;re exploiting anonymous SMB share access which is a common misconfiguration that will lead us to a shell.  <\/p>\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-34.png\" alt=\"\" class=\"wp-image-49\" width=\"785\" height=\"644\" srcset=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-34.png 1003w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-34-300x246.png 300w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-34-768x631.png 768w\" sizes=\"auto, (max-width: 785px) 100vw, 785px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the photo above you can see we used the<code><mark style=\"background-color:#db4f3d\" class=\"has-inline-color\">smbclient \/\/[IP]\/profiles<\/mark><\/code> command and we were prompted with a password entry. We used anonymous and were able to get in. Now using the ls command we were able to get a list of directories within the SMB client. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We took a look around and exfiltrated the &#8220;Working From Home Information.txt&#8221; file to see what information we could gather. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"761\" src=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-35-1024x761.png\" alt=\"\" class=\"wp-image-50\" srcset=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-35-1024x761.png 1024w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-35-300x223.png 300w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-35-768x571.png 768w, https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/Screenshot-35.png 1074w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Looks like we will hit the jackpot if we can figure out John&#8217;s login credentials. We can tell from the message that he now has full SSH access into the main server and we have also recovered his first and last name which could be his username or profile folder name. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>https:\/\/tryhackme.com\/ What is SMB? SMB &#8211; Server Message Block Protocol &#8211; is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":236,"comment_status":"open","ping_status":"open","sticky":false,"template":"templates\/right-sidebar.php","format":"standard","meta":{"saved_in_kubio":false,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-41","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-project-one"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"donnelllittle4@gmail.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/cyberlorenzo.tech\/?p=41\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"- Cyber Security Analyst\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services\" \/>\n\t\t<meta property=\"og:description\" content=\"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/cyberlorenzo.tech\/?p=41\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-03-30T22:58:59+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-05-12T22:43:43+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services\" \/>\n\t\t<meta name=\"twitter:description\" content=\"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#blogposting\",\"name\":\"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services\",\"headline\":\"Enumerating and Exploiting SMB (Server Message Block Protocol)\",\"author\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/CTF-TryHackMe-Network-Services-SMB-XMnru12.png\",\"width\":534,\"height\":239},\"datePublished\":\"2022-03-30T22:58:59+00:00\",\"dateModified\":\"2022-05-12T22:43:43+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#webpage\"},\"articleSection\":\"Hacking CTFs\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cyberlorenzo.tech\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?cat=4#listItem\",\"name\":\"Hacking CTFs\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Hacking CTFs\",\"item\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#listItem\",\"name\":\"Enumerating and Exploiting SMB (Server Message Block Protocol)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#listItem\",\"position\":3,\"name\":\"Enumerating and Exploiting SMB (Server Message Block Protocol)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?cat=4#listItem\",\"name\":\"Hacking CTFs\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/#organization\",\"name\":\"cyberlorenzo.tech\",\"description\":\"Cyber Security Analyst\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/cropped-cropped-cropped-cropped-logo-large.png\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41\\\/#organizationLogo\",\"width\":512,\"height\":413},\"image\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?author=1#author\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?author=1\",\"name\":\"donnelllittle4@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7449e0cebae0b80b97e25965221fadf2ab21cada07b29343377e4aafd0ed1c9c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"donnelllittle4@gmail.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#webpage\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41\",\"name\":\"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services\",\"description\":\"https:\\\/\\\/tryhackme.com\\\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\\\/\\\/tryhackme.com\\\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/CTF-TryHackMe-Network-Services-SMB-XMnru12.png\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41\\\/#mainImage\",\"width\":534,\"height\":239},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/?p=41#mainImage\"},\"datePublished\":\"2022-03-30T22:58:59+00:00\",\"dateModified\":\"2022-05-12T22:43:43+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/#website\",\"url\":\"https:\\\/\\\/cyberlorenzo.tech\\\/\",\"description\":\"Cyber Security Analyst\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/cyberlorenzo.tech\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services","description":"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they","canonical_url":"https:\/\/cyberlorenzo.tech\/?p=41","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/cyberlorenzo.tech\/?p=41#blogposting","name":"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services","headline":"Enumerating and Exploiting SMB (Server Message Block Protocol)","author":{"@id":"https:\/\/cyberlorenzo.tech\/?author=1#author"},"publisher":{"@id":"https:\/\/cyberlorenzo.tech\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/05\/CTF-TryHackMe-Network-Services-SMB-XMnru12.png","width":534,"height":239},"datePublished":"2022-03-30T22:58:59+00:00","dateModified":"2022-05-12T22:43:43+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/cyberlorenzo.tech\/?p=41#webpage"},"isPartOf":{"@id":"https:\/\/cyberlorenzo.tech\/?p=41#webpage"},"articleSection":"Hacking CTFs"},{"@type":"BreadcrumbList","@id":"https:\/\/cyberlorenzo.tech\/?p=41#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech#listItem","position":1,"name":"Home","item":"https:\/\/cyberlorenzo.tech","nextItem":{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech\/?cat=4#listItem","name":"Hacking CTFs"}},{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech\/?cat=4#listItem","position":2,"name":"Hacking CTFs","item":"https:\/\/cyberlorenzo.tech\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech\/?p=41#listItem","name":"Enumerating and Exploiting SMB (Server Message Block Protocol)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech\/?p=41#listItem","position":3,"name":"Enumerating and Exploiting SMB (Server Message Block Protocol)","previousItem":{"@type":"ListItem","@id":"https:\/\/cyberlorenzo.tech\/?cat=4#listItem","name":"Hacking CTFs"}}]},{"@type":"Organization","@id":"https:\/\/cyberlorenzo.tech\/#organization","name":"cyberlorenzo.tech","description":"Cyber Security Analyst","url":"https:\/\/cyberlorenzo.tech\/","logo":{"@type":"ImageObject","url":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png","@id":"https:\/\/cyberlorenzo.tech\/?p=41\/#organizationLogo","width":512,"height":413},"image":{"@id":"https:\/\/cyberlorenzo.tech\/?p=41\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/cyberlorenzo.tech\/?author=1#author","url":"https:\/\/cyberlorenzo.tech\/?author=1","name":"donnelllittle4@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/cyberlorenzo.tech\/?p=41#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/7449e0cebae0b80b97e25965221fadf2ab21cada07b29343377e4aafd0ed1c9c?s=96&d=mm&r=g","width":96,"height":96,"caption":"donnelllittle4@gmail.com"}},{"@type":"WebPage","@id":"https:\/\/cyberlorenzo.tech\/?p=41#webpage","url":"https:\/\/cyberlorenzo.tech\/?p=41","name":"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services","description":"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/cyberlorenzo.tech\/#website"},"breadcrumb":{"@id":"https:\/\/cyberlorenzo.tech\/?p=41#breadcrumblist"},"author":{"@id":"https:\/\/cyberlorenzo.tech\/?author=1#author"},"creator":{"@id":"https:\/\/cyberlorenzo.tech\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/05\/CTF-TryHackMe-Network-Services-SMB-XMnru12.png","@id":"https:\/\/cyberlorenzo.tech\/?p=41\/#mainImage","width":534,"height":239},"primaryImageOfPage":{"@id":"https:\/\/cyberlorenzo.tech\/?p=41#mainImage"},"datePublished":"2022-03-30T22:58:59+00:00","dateModified":"2022-05-12T22:43:43+00:00"},{"@type":"WebSite","@id":"https:\/\/cyberlorenzo.tech\/#website","url":"https:\/\/cyberlorenzo.tech\/","description":"Cyber Security Analyst","inLanguage":"en-US","publisher":{"@id":"https:\/\/cyberlorenzo.tech\/#organization"}}]},"og:locale":"en_US","og:site_name":"- Cyber Security Analyst","og:type":"article","og:title":"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services","og:description":"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they","og:url":"https:\/\/cyberlorenzo.tech\/?p=41","og:image":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png","og:image:secure_url":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png","article:published_time":"2022-03-30T22:58:59+00:00","article:modified_time":"2022-05-12T22:43:43+00:00","twitter:card":"summary","twitter:title":"Enumerating and Exploiting SMB (Server Message Block Protocol) - Network Services","twitter:description":"https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they https:\/\/tryhackme.com\/ What is SMB? SMB - Server Message Block Protocol - is a client-server communication protocol used for sharing access to files, printers, serial ports and other resources on a network. [source] Servers make file systems and other resources available to clients on the network. Client computers may have their own hard disks, but they","twitter:image":"https:\/\/cyberlorenzo.tech\/wp-content\/uploads\/2022\/03\/cropped-cropped-cropped-cropped-logo-large.png"},"aioseo_meta_data":{"post_id":"41","title":"#post_title #separator_sa Network Services","description":"#post_excerpt #post_content","keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"Article","defaultPostTypeGraph":""},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-03-30 20:52:02","updated":"2025-06-04 07:24:10","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cyberlorenzo.tech\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cyberlorenzo.tech\/?cat=4\" title=\"Hacking CTFs\">Hacking CTFs<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tEnumerating and Exploiting SMB (Server Message Block Protocol)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/cyberlorenzo.tech"},{"label":"Hacking CTFs","link":"https:\/\/cyberlorenzo.tech\/?cat=4"},{"label":"Enumerating and Exploiting SMB (Server Message Block Protocol)","link":"https:\/\/cyberlorenzo.tech\/?p=41"}],"_links":{"self":[{"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/posts\/41","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=41"}],"version-history":[{"count":7,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/posts\/41\/revisions"}],"predecessor-version":[{"id":138,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/posts\/41\/revisions\/138"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=\/wp\/v2\/media\/236"}],"wp:attachment":[{"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cyberlorenzo.tech\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}