<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Snmp on rchitect</title><link>https://www.rchitect.in/tags/snmp/</link><description>Recent content in Snmp on rchitect</description><generator>Hugo</generator><language>en</language><lastBuildDate>Mon, 07 Mar 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://www.rchitect.in/tags/snmp/index.xml" rel="self" type="application/rss+xml"/><item><title>Hackthebox Conceal</title><link>https://www.rchitect.in/posts/htb-conceal/</link><pubDate>Mon, 07 Mar 2022 00:00:00 +0000</pubDate><guid>https://www.rchitect.in/posts/htb-conceal/</guid><description>&lt;h1 id="hackthebox-conceal-walkthrough"&gt;
 Hackthebox Conceal Walkthrough
 &lt;a class="heading-link" href="#hackthebox-conceal-walkthrough"&gt;
 &lt;i class="fa-solid fa-link" aria-hidden="true" title="Link to heading"&gt;&lt;/i&gt;
 &lt;span class="sr-only"&gt;Link to heading&lt;/span&gt;
 &lt;/a&gt;
&lt;/h1&gt;
&lt;p&gt;&lt;img src="https://www.rchitect.in/images/walk/conceal/1.png" alt="conceal"&gt;&lt;/p&gt;
&lt;h3 id="initial-enumeration"&gt;
 Initial Enumeration
 &lt;a class="heading-link" href="#initial-enumeration"&gt;
 &lt;i class="fa-solid fa-link" aria-hidden="true" title="Link to heading"&gt;&lt;/i&gt;
 &lt;span class="sr-only"&gt;Link to heading&lt;/span&gt;
 &lt;/a&gt;
&lt;/h3&gt;
&lt;h4 id="port-scan"&gt;
 Port Scan
 &lt;a class="heading-link" href="#port-scan"&gt;
 &lt;i class="fa-solid fa-link" aria-hidden="true" title="Link to heading"&gt;&lt;/i&gt;
 &lt;span class="sr-only"&gt;Link to heading&lt;/span&gt;
 &lt;/a&gt;
&lt;/h4&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;$ sudo nmap -sT -p- -min-rate 10000 -Pn -oN alltcp.txt 10.10.10.116
sudo nmap -sU -p- -min-rate 10000 -Pn -oN alludp.txt 10.10.10.116
[sudo] password for rocky: 
Host discovery disabled (-Pn). All addresses will be marked &amp;#39;up&amp;#39; and scan times will be slower.
Starting Nmap 7.91 ( https://nmap.org ) at 2022-02-27 19:46 EST
Nmap scan report for 10.10.10.116
Host is up.
All 65535 scanned ports on 10.10.10.116 are filtered

Nmap done: 1 IP address (1 host up) scanned in 130.18 seconds
Host discovery disabled (-Pn). All addresses will be marked &amp;#39;up&amp;#39; and scan times will be slower.
Starting Nmap 7.91 ( https://nmap.org ) at 2022-02-27 19:48 EST
Nmap scan report for 10.10.10.116
Host is up (0.16s latency).
Not shown: 65534 open|filtered ports
PORT STATE SERVICE
500/udp open isakmp

Nmap done: 1 IP address (1 host up) scanned in 14.25 seconds
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;I have decided to run the &lt;a href="https://rchitect.in/posts/autorecon/" class="external-link" target="_blank" rel="noopener"&gt;Autorecon&lt;/a&gt; script as well to confirm i have not missed anything. It took longer time(more than 40min). I could see and additinal udp port 161 as well.Full results are uploaded [here](&lt;a href="https://github.com/tcprks/Rchitect/blob/Yoda/CTF/conceal/_top_100_udp_nmap.txt" class="external-link" target="_blank" rel="noopener"&gt;Rchitect/_top_100_udp_nmap.txt at Yoda · tcprks/Rchitect · GitHub&lt;/a&gt;). There 2 services to enumerate( SNMP and ISAKMP)&lt;/p&gt;</description></item><item><title>Port 161,162 SNMP enumeration</title><link>https://www.rchitect.in/posts/snmp-enumeration/</link><pubDate>Sun, 27 Feb 2022 00:00:00 +0000</pubDate><guid>https://www.rchitect.in/posts/snmp-enumeration/</guid><description>&lt;h1 id="snmp-enumeration-of-port-udp-ports-161-162"&gt;
 SNMP enumeration of port udp ports 161-162
 &lt;a class="heading-link" href="#snmp-enumeration-of-port-udp-ports-161-162"&gt;
 &lt;i class="fa-solid fa-link" aria-hidden="true" title="Link to heading"&gt;&lt;/i&gt;
 &lt;span class="sr-only"&gt;Link to heading&lt;/span&gt;
 &lt;/a&gt;
&lt;/h1&gt;
&lt;p&gt;Initial Scan&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;sudo nmap -sU --open -p 161 10.10.10.116 -oG out.txt\$ cat out.txt 
# Nmap 7.91 scan initiated Sun Mar 6 18:06:39 2022 as: nmap -sU --open -p 161 -oG out.txt 10.10.10.116
Host: 10.10.10.116 () Status: Up
Host: 10.10.10.116 () Ports: 161/open|filtered/udp//snmp///
# Nmap done at Sun Mar 6 18:06:40 2022 -- 1 IP address (1 host up) scanned in 1.04 seconds
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Some Basic SNMP enumeration commands&lt;/p&gt;</description></item></channel></rss>