<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Networking on Benny Simmonds</title>
    <link>https://www.bencode.io/tags/networking/</link>
    <description>Recent content in Networking on Benny Simmonds</description>
    <generator>Hugo -- 0.149.1</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 17 Apr 2022 20:35:19 +1100</lastBuildDate>
    <atom:link href="https://www.bencode.io/tags/networking/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Cyber Defence Operations</title>
      <link>https://www.bencode.io/posts/blueteam/</link>
      <pubDate>Fri, 04 Mar 2022 17:41:11 +1100</pubDate>
      <guid>https://www.bencode.io/posts/blueteam/</guid>
      <description>&lt;p&gt;Semester 1 2022 has snuck up on me again. This semester as part of the UNSW and ADFA run &lt;a href=&#34;https://www.unsw.adfa.edu.au/study/postgraduate-coursework/master-cyber-security&#34;&gt;Master of Cyber Security&lt;/a&gt; degree, I&amp;rsquo;m taking the &lt;a href=&#34;https://en.wikipedia.org/wiki/Blue_team_%28computer_security%29&#34;&gt;blue team&lt;/a&gt; core unit &lt;em&gt;ZEIT8026 Cyber Defence - Network Security Operations (SecOps)&lt;/em&gt; lectured by &lt;a href=&#34;https://www.linkedin.com/in/dr-waqas-haider-6a47b91b/&#34;&gt;Dr Waqas Haider&lt;/a&gt; and &lt;a href=&#34;https://www.linkedin.com/in/dr-nour-moustafa-0a7a7859/&#34;&gt;Dr Nour Moustafa&lt;/a&gt;. Unlike its sister &lt;a href=&#34;https://en.wikipedia.org/wiki/Red_team&#34;&gt;red team&lt;/a&gt; unit &lt;em&gt;ZEIT8020 Cyber Offense - Cyber Network Operations (CNO)&lt;/em&gt; which I took in 2018, ZEIT8026 aims to lay the foundational knowledge of cyber defence operations:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Packet Analysis Basics</title>
      <link>https://www.bencode.io/posts/2019-01-15-packets/</link>
      <pubDate>Tue, 15 Jan 2019 21:29:10 +0000</pubDate>
      <guid>https://www.bencode.io/posts/2019-01-15-packets/</guid>
      <description>&lt;p&gt;An evolving list of resources around packet analysis tips and tricks.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#terminology&#34;&gt;Terminology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#cheat-sheets&#34;&gt;Cheat sheets&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#anatomy-of-a-packet&#34;&gt;Anatomy of a Packet&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#osi-model-layers&#34;&gt;OSI Model Layers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#link-layer&#34;&gt;Link Layer&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#ether-type-fields&#34;&gt;Ether Type Fields&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#network-layer&#34;&gt;Network layer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#transport-layer&#34;&gt;Transport layer&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tools&#34;&gt;Tools&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#wireshark-and-tshark&#34;&gt;Wireshark (and tshark)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tcpdump&#34;&gt;tcpdump&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#useful-switches&#34;&gt;Useful switches&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#examples&#34;&gt;Examples&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#real-world-use-cases&#34;&gt;Real world use-cases&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#netsniff-ng&#34;&gt;netsniff-ng&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#analysis&#34;&gt;Analysis&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;terminology&#34;&gt;Terminology&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;SOC&lt;/em&gt;, or Security Operations Center, is a central location composed of leading edge tools, technology and peeps (intel gatherers, analysts) that deals with security issues at an organisational and technical level.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;IDS&lt;/em&gt;, or Intrusion Detection System, is a device that monitors network traffic for threats to the environment, proactively alert the SOC analyst of potential problems.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;IPS&lt;/em&gt;, or an Intrusion Prevention System, is more sits inline, and can take active or passive mitigation actions.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;SIEM&lt;/em&gt;, or Security Information and Event Management, is all about the collection and aggregation of alerts and logs for event tracking, retention and correlation from multiple hosts.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;cheat-sheets&#34;&gt;Cheat sheets&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.sans.org/security-resources/tcpip.pdf&#34;&gt;SANS TCP/IP and tcpdump Pocket Reference Guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://tools.ietf.org/html/rfc790&#34;&gt;RFC 790 Assigned Internet Protocol Numbers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://tools.ietf.org/html/rfc791&#34;&gt;RFC 791 Internet Protocol&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;anatomy-of-a-packet&#34;&gt;Anatomy of a Packet&lt;/h1&gt;
&lt;h2 id=&#34;osi-model-layers&#34;&gt;OSI Model Layers&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;7: application: HTTP, FTP, DNS&lt;/li&gt;
&lt;li&gt;6: presentation: SSL, JPEG&lt;/li&gt;
&lt;li&gt;5: session: SQL, SCP, NetBIOS, SOAP&lt;/li&gt;
&lt;li&gt;4: transport: TCP, UDP&lt;/li&gt;
&lt;li&gt;3: network: IPv4, IPv6, ICMP&lt;/li&gt;
&lt;li&gt;2: data-link: PPP, ARP, CDP&lt;/li&gt;
&lt;li&gt;1: physical: Ethernet, Bluetooth&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Layers 2-4 will be of primary interest.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
