<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>CCC on Insinuator.net - Bold Statements</title>
    <link>https://insinuator.net/tags/ccc/</link>
    <description>Recent content in CCC on Insinuator.net - Bold Statements</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 16 Jan 2016 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://insinuator.net/tags/ccc/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>32C3 Recap – Part 2</title>
      <link>https://insinuator.net/2016/01/32c3-recap-part-2/</link>
      <pubDate>Sat, 16 Jan 2016 00:00:00 +0000</pubDate>
      <guid>https://insinuator.net/2016/01/32c3-recap-part-2/</guid>
      <description>&lt;p&gt;Hello everybody and welcome to the second part of our 32C3 recap!&lt;/p&gt;&#xA;&lt;p&gt;In case you didn’t see &lt;a href=&#34;http://www.insinuator.net/2016/01/32c3-recap-part1/&#34;&gt;the first part&lt;/a&gt;, make sure to check it out 😉&lt;/p&gt;&#xA;&lt;h2 id=&#34;logjam&#34;&gt;Logjam&lt;/h2&gt;&#xA;&lt;p&gt;by **Nadia Heninger &amp;amp; Alex Halderman&lt;br&gt;&#xA;**&lt;a href=&#34;https://media.ccc.de/v/32c3-7288-logjam_diffie-hellman_discrete_logs_the_nsa_and_you&#34;&gt;Video&lt;/a&gt; | &lt;a href=&#34;https://lab.dsst.io/32c3-slides/slides/7288.pdf&#34;&gt;Slides&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;This talk was held by Nadia Heninger and Alex Halderman on the second day of the congress. Both work in academic and the field of cryptology. They talked about the “Logjam”-Attack they and several colleagues discovered and published in may of 2014. They started their talk by explaining how they uncovered the vulnerability which was quite interesting since Logjam was no breaking news anymore. And well it was inspired by the congress of the year before, 31C3. The research was conducted because they got curious how the NSA might be able to decrypt VPN traffic as stated by Jacob Applebaum and Laura Poitras in their “reconstructing narratives” talk.&lt;/p&gt;</description>
    </item>
    <item>
      <title>32C3 Recap – Part1</title>
      <link>https://insinuator.net/2016/01/32c3-recap-part1/</link>
      <pubDate>Fri, 08 Jan 2016 00:00:00 +0000</pubDate>
      <guid>https://insinuator.net/2016/01/32c3-recap-part1/</guid>
      <description>&lt;p&gt;Every year a group of us are happy to use the holidays to travel to Hamburg to meet other people and learn something new at the 32C3.&lt;/p&gt;&#xA;&lt;p&gt;In this small series we’ll present you recaps of some talks we found most interesting, but you also should make sure to watch the recording of them. 😉&lt;/p&gt;&#xA;&lt;h2 id=&#34;beyond-your-cable-modem--how-to-not-do-docsis-networks&#34;&gt;Beyond your cable modem – How to not do DOCSIS networks&lt;/h2&gt;&#xA;&lt;p&gt;by **Alexander Graf&lt;br&gt;&#xA;**&lt;a href=&#34;https://media.ccc.de/v/32c3-7133-beyond_your_cable_modem&#34;&gt;Video&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Alexander Graf presents (insecurity) insights on how cable modems work and connect to the ISP.&lt;/p&gt;</description>
    </item>
    <item>
      <title>31C3 Recap</title>
      <link>https://insinuator.net/2015/01/31c3-recap/</link>
      <pubDate>Sat, 10 Jan 2015 00:00:00 +0000</pubDate>
      <guid>https://insinuator.net/2015/01/31c3-recap/</guid>
      <description>&lt;p&gt;As every year some of us used the holidays to visit the Chaos Communication Congress to socialize with like-minded people and to hear interesting talks.&lt;br&gt;&#xA;I mean what other reasons than learning about security might exist to leave behind all your lovely in-laws you’ve been sharing some relative’s house with the days before … 😉&lt;br&gt;&#xA;Here is a short recap of some of the talks we found most interesting:&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Mining for Bugs with Graph Database Queries&lt;/strong&gt; by &lt;strong&gt;Fabian Yamaguchi&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://media.ccc.de/browse/congress/2014/31c3_-_6534_-_en_-_saal_g_-_201412282030_-_mining_for_bugs_with_graph_database_queries_-_fabs.html#video&#34;&gt;Video&lt;/a&gt;&lt;br&gt;&#xA;One of my favorite talks at this years congress was about the open source tool &lt;a href=&#34;http://mlsec.org/joern/&#34;&gt;joern&lt;/a&gt;, a code analysis platform for C/C++ applications. Fabian, the main author of joern, presented his work on vulnerability discovery in large code bases. One of the key points of his work is robustness, meaning that the resulting tools should produce meaningful results in large and noisy real world projects even if this results in a loss of accuracy. The second important point is that tools should assist human auditors, not replace them, which seems to be one of the more interesting current research directions (see also &lt;a href=&#34;https://static.squarespace.com/static/507c09ede4b0954f51d59c75/t/528965cbe4b037c7a156b3f1/1384736203503/think_cyborg_not_robot.pdf&#34;&gt;this paper&lt;/a&gt;). At its core joern combines standard compiler technology with modern graph databases to offer auditors a powerful way to search for certain code constructs. To do this joern parses source code into an AST (Abstract Syntax Tree) and creates the corresponding CFG (Control Flow Graph), as well as a Data Dependency Graph (PDG) for all functions. This creates the Code Property Graph which combines all three representation forms into a single unified layer.&lt;br&gt;&#xA;The Code Property Graph is stored inside a graph database (joern uses &lt;a href=&#34;http://neo4j.com/&#34;&gt;neo4j&lt;/a&gt;), which can be queried using a powerful graph traversal language named &lt;a href=&#34;https://github.com/tinkerpop/gremlin/wiki&#34;&gt;gremlin&lt;/a&gt; (&lt;a href=&#34;https://github.com/tinkerpop/gremlin/wiki)&#34;&gt;https://github.com/tinkerpop/gremlin/wiki)&lt;/a&gt;. The combination of gremlin with some wrapper tools included in joern gives an auditor the possibility to construct powerful search queries against the code base. Fabian presented different queries he used to search for vulnerabilities in the VLC video player, as well as the Linux kernel that resulted in really impressive results (and a high number of discovered vulnerabilities). Joern is definitely a tool you should check out and I’m looking forward to more impressive research by its author.&lt;br&gt;&#xA;– Felix&lt;/p&gt;</description>
    </item>
    <item>
      <title>Some notes on 30C3</title>
      <link>https://insinuator.net/2014/01/some-notes-on-30c3/</link>
      <pubDate>Wed, 08 Jan 2014 00:00:00 +0000</pubDate>
      <guid>https://insinuator.net/2014/01/some-notes-on-30c3/</guid>
      <description>&lt;p&gt;We wish you a happy new year and a good start to 2014. A new year has begun and, just before that, 30C3 took place. I think almost all of you have heard about the congress and its topics. In particukar there was Glenn Greenwald’s &lt;a href=&#34;https://events.ccc.de/congress/2013/Fahrplan/events/5622.html&#34;&gt;keynote&lt;/a&gt; or there were new &lt;a href=&#34;https://events.ccc.de/congress/2013/Fahrplan/events/5713.html&#34;&gt;publications/revelations&lt;/a&gt; by Jacob Appelbaum, which you will probably have heard about from main media.&lt;br&gt;&#xA;But besides of all that, there were really a lot of other interesting talks we want to give you a short introduction to. Overall it was a really good conference this year and a lot of awesome talks. But, like always, it is not possible to see all of them, so here is a short summary of some of our favorites:&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
