<?xml version='1.0' encoding='utf-8' ?>
<iCalendar xmlns:pentabarf='http://pentabarf.org' xmlns:xCal='urn:ietf:params:xml:ns:xcal'>
    <vcalendar>
        <version>2.0</version>
        <prodid>-//Pentabarf//Schedule//EN</prodid>
        <x-wr-caldesc></x-wr-caldesc>
        <x-wr-calname></x-wr-calname>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>WZXUTA@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-WZXUTA</pentabarf:event-slug>
            <pentabarf:title>BYOTB - Bring Your Own Trusted Binary</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T104500</dtend>
            <duration>004500</duration>
            <summary>BYOTB - Bring Your Own Trusted Binary</summary>
            <description>Security professionals are locked in a constant cat-and-mouse game with attackers who continuously find creative ways to bypass modern defences. One such technique is Bring Your Own Trusted Binaries (BYOTB)&#169;, where attackers use legitimate, signed or checksum verified binaries which may not be present on the host machine to achieve their aims. Since these binaries are oftentimes trusted by the OS and EDR solutions, they are less likely to raise red flags, providing attackers with a stealthy way to circumvent traditional security mechanisms.

This session will explore how the BYOTB technique works, some examples of trusted binaries and why they are so effective at bypassing EDR solutions.

I&apos;ll cover:
 - Understanding the BYOTB idea: I will explain which trusted binaries are used and how they can provide access to external adversaries and testers alike. 
 - EDR and Firewall Evasion Tactics: I will demonstrate how adversaries leverage trusted binaries to exploit gaps in EDR detection as well as bypassing modern firewalls.
 - Detection and Mitigation Strategies: The concluding section of the talk will focus on defensive measures. I&#8217;ll discuss practical detection techniques, including monitoring the usage of known binaries, and implementing tighter security controls around execution policies for certain trusted binaries.

This talk is geared towards a technical audience, including Red Teamers and Pentesters looking to understand how to exploit these techniques as well as Blue Teamers interested in improving their detection and mitigation strategies. Attendees will leave with actionable insights into how they can detect BYOTB techniques in their environments, as well as best practices for preventing such attacks from slipping through the cracks.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/WZXUTA/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>David Kennedy</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>EHBRYZ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-EHBRYZ</pentabarf:event-slug>
            <pentabarf:title>The Practical Application of Indirect Prompt Injection Attacks: From Academia to Industry</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T105500</dtstart>
            <dtend>20241214T114000</dtend>
            <duration>004500</duration>
            <summary>The Practical Application of Indirect Prompt Injection Attacks: From Academia to Industry</summary>
            <description>For further clarity on any sections, please refer to my white paper: https://www.researchgate.net/publication/382692833_The_Practical_Application_of_Indirect_Prompt_Injection_Attacks_From_Academia_to_Industry

----------------------------------------------------------------------------------------
1. PROMPT INJECTION - THE PROBLEM AFFECTING ALL LLMS
-----------------------------------------------------------------------------------------

Definition

- Prompt injection was originally used to describe attacks where untrusted user input was concatenated with a trusted prompt in an application.
- The definition has expanded to include any prompt that causes an LLM to perform harmful actions - to avoid confusion, the latter definition will be used in this presentation.

The Problem

- All LLMs are vulnerable to prompt injection!
- In web application security, the most effective way to prevent injection attacks is to maintain a small allowlist of known safe input values.
- Applying this to LLMs would render them functionally useless - the value of LLMs comes from being able to answer any query.
- Instead, organizations like OpenAI are training LLMs to detect and block common prompt injection techniques.
- Attackers can easily formulate new techniques since they can use any characters and words to craft prompt injections.

------------------------------------------------
2. INDIRECT PROMPT INJECTION
------------------------------------------------

Attack Sequence

- Breaking down the anatomy of an indirect prompt injection attack as follows, along with a diagram:
    1. An attacker injects a malicious prompt into a resource which they know LLMs
    will read from.
    2. A victim user asks an LLM to read from this resource.
    3. The LLM visits the resource and reads in the malicious prompt.
    4. The LLM performs the actions specified in the malicious prompt.
- When an LLM reads in data from an attacker-injectable source, the chat should be considered COMPROMISED, since it may contain a malicious prompt.

Impacts

- The main impacts of regular prompt injection are generating harmful content  - which only negatively impacts an LLM provider&apos;s reputation - and attacks launched against an application or service that ingests an LLM&apos;s input or output.
- The main impacts of IPI are socially engineering a user by instructing the LLM to provide misleading information to the victim or performing arbitrary actions on behalf of users. The latter impact is more interesting and will be the focus of the remaining presentation.
- The impact of an Indirect Prompt Injection attack directly depends on the actions an LLM has access to perform. Actions can be chained to cause a greater impact.

Vulnerability Criteria

1. Can an attacker inject into a source the LLM will read from? This can be a public source, e.g. a social media comment, or it can be a victim&apos;s private source which an attacker can send data to, e.g. an email inbox.

2. Can the LLM perform any actions that could harm a user? Consider any actions that could impact the CIA triad of a user&apos;s data, e.g. deleting a victim&apos;s GitHub branch.

3. Can the LLM perform this harmful action after reading from the injectable
source? LLMs can do this in most cases, but developers may implement logic to prevent this from happening as IPI attacks become more prevalent.

------------------------------------------------------------------------
3. INDIRECT PROMPT INJECTION METHODOLOGY
------------------------------------------------------------------------

This section introduces the Indirect Prompt Injection Methodology, along with a diagram. In the presentation, sample prompts will be attached for each relevant step:

Explore the attack surface

1. Map out all harmful actions the LLM has access to perform - Ask the LLM to provide a list of all functions it can invoke. Analyze the list and write down the harmful actions.

2. Map out all attacker-injectable sources the LLM can read from - Ask the LLM to provide a list of all data sources it can read from. Analyze the list and write down the sources you could inject a prompt into.

3. Attempt to obtain the system prompt - Ask the LLM to provide the statements programmed into it by its developer, allowing you to see any verbal guardrails that you may need to bypass. 

Craft the exploit

For each source-action pairing:

4. Determine if the LLM can be pre-authorized to perform the action - Certain LLMs may ask the user to approve an action before carrying it out. By tailoring the prompt you may be able to provide pre-approval, convincing the LLM to carry out the action without delay!

5. Inject a more persuasive prompt into the source - The indirectly injected prompt needs to be made more convincing to an LLM since it will carry less conversational weight than the user&apos;s initial request. By emphasizing key parts of the prompt with mock Markdown, repeating sentences, and tailoring the prompt semantics to the observed behavior, you can craft a successful exploit. These techniques will be clearly showcased in the presentation.

6. Ask the LLM to read from the source and observe if the action occurs - Simulate a plausible user query, e.g. &quot;visit this URL: {url}&quot;. The LLM should read from the injected source and carry out the actions set out in the prompt injection.  

Refine the prompt

7. Repeat steps 5 and 6, iteratively modifying the prompt until the attack is
successful - If the attack is unsuccessful, systematically make small changes until you achieve success. A table will be provided in the presentation to facilitate this process.

-------------------------------------------------------------------------------
4. CASE STUDY - MAVY GPT CALENDAR EXFILTRATION
-------------------------------------------------------------------------------

Background

- Mavy GPT is a personal assistant on the GPT Plus store that allows people to send emails and view their Google calendars by hooking into Google APIs.

Applying IPIM

- This is a walkthrough of each step in IPIM, applied to MavyGPT. Screenshots for each step are provided:

1. Map harmful actions - I obtained a list of 7 actions, considered the impact of each and noted down &quot;Send Email&quot; as potentially harmful. I recorded the associated function call.

2. Map injectable sources - I obtained a list of 3 actions that read from injectable sources and noted down &quot;Google Calendar&quot; as an injectable source.

3. Obtain the system prompt - I asked Mavy for its system prompt and it immediately complied - I noted this down.

4. Determine if LLM can be pre-authorized - I pasted the function call from earlier and Mavy complied immediately.

5. Inject a more persuasive prompt - I considered a potential attack chain - asking Mavy to summarize all user events in the Google Calendar, then asking it to email this to me. I iterated several times to craft a prompt that allowed me to execute the chain. This will be provided in the presentation, along with a breakdown of each sentence in the prompt.

6. Ask LLM to read from the source - I sent a calendar invite containing the prompt injection as its description to the mock victim, then asked Mavy to print the event description in the victim&apos;s session. As expected Mavy summarized all events in the calendar and emailed them back to me. Video evidence will be provided, serving as a POC and a demo. 

Impact

- Many users store private information in their calendars such as locations, relative names, and even credentials. An attacker could sell this information or use it to launch further attacks.

-------------------------------------------------------------------------------------
5. INDIRECT PROMPT INJECTION PRACTICAL MITIGATIONS
-------------------------------------------------------------------------------------

Instruction Hierarchy

- Proposed by OpenAI earlier this year - treats externally ingested data as lower-privileged.
- Shows an improvement against prompt injection benchmarks, but can be bypassed by crafting better payloads.

Human-in-the-loop

- A human has to approve each action an LLM will take. Theoretically, this prevents any unwanted actions.
- Implementing this effectively causes a poor user experience, making developers unlikely to use it properly.

No Actions After Reads

- Server-side logic which prevents any actions from occurring after an LLM has ingested external data.
- This compromises the functionality of an LLM, again worsening user experience.

Mitigation Summary

- Current mitigations are either not 100% effective or severely impact user experience, making Indirect Prompt Injection difficult to defend against.

----------------------------
6. LOOKING AHEAD
----------------------------

The Future of Indirect Prompt Injection

- IPI is a serious issue - the same techniques outlined in IPIM could be used to exploit future AI implementations linked to critical infrastructure, leading to devastating impacts.
- Human-in-the-loop or &quot;no actions after reads&quot; could be implemented, but this would limit the value of these AI implementations by stripping their autonomy.

Application and Future Development of IPIM

- IPIM will be maintained and updated on GitHub to ensure its continued relevance in the AI space.

-----------------------
7. CONCLUSION
-----------------------

- IPI is a serious issue
- IPIM bridges the gap between academia and industry, improving awareness of IPI and contributing to the future of AI Security.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/EHBRYZ/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>David Willis-Owen</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>HYSYLN@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-HYSYLN</pentabarf:event-slug>
            <pentabarf:title>CyberHUMINT: Recruit, Deceive, Exploit</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T115000</dtstart>
            <dtend>20241214T123500</dtend>
            <duration>004500</duration>
            <summary>CyberHUMINT: Recruit, Deceive, Exploit</summary>
            <description>At Bsides Cymru we introduced the audience to what modern intelligence apparatus looks like using the fictional country of Fligistan. This talk builds upon that and focuses on Cyber HUMINT, the fusion of traditional human intelligence (HUMINT) with cyber operations.  It is a powerful tool for both attackers and defenders. In this talk we explore how CyberHUMINT exploits human vulnerabilities, leverages social engineering, and manipulates insider threats, leading to significant risks such as data breaches or disclosure of corporate secrets. We&#8217;ll examine real world examples where adversaries use remote working job opportunities for infiltration, platforms like LinkedIn for agent recruitment, using avatars for covert dark web operations, and psychological manipulation through bot farms and psyops to influence and deceive organisational and military targets.

We will also delve into how behavioral analysis and patterns of life in computer networks and subcultures can help to identify malicious actors early. Attendees will gain actionable insights on how to recognise and mitigate insider threats, as well as the critical role CyberHUMINT plays in understanding patterns of life and digital behaviour. Whether you&#8217;re part of the Fligistan red team, social engineering corps, or an intelligence analyst,  this session will equip you with the tools to protect your organisation from advanced human and cyber-based threats.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/HYSYLN/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Tony Gee</attendee>
            
            <attendee>Hugo Page-Turner</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>LV7GFV@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-LV7GFV</pentabarf:event-slug>
            <pentabarf:title>SSRF&#178; | Breaking Trust Zones Through Self-Reference</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T125500</dtstart>
            <dtend>20241214T134000</dtend>
            <duration>004500</duration>
            <summary>SSRF&#178; | Breaking Trust Zones Through Self-Reference</summary>
            <description>This talk introduces a groundbreaking approach to SSRF exploitation that fundamentally changes how we think about trust boundaries and security contexts. Rather than focusing on finding new SSRF vectors, we&apos;ll demonstrate how using the same primitive twice can bypass sophisticated security controls including URL rewrite rules, origin validation, and network segregation.

Key takeaways:
- How a single SSRF primitive can be leveraged across different security contexts
- Why position matters more than payload in modern architectures
- Real-world examples of bypassing Kubernetes API protections
- Turning blind SSRF into critical internal access
- New methodology for approaching SSRF research

Through live demonstrations and real-world cases, attendees will learn how traditional security controls can fail when the same primitive operates across different trust contexts. This research provides valuable insights for both offensive security researchers looking to expand their methodology and defenders implementing trust boundaries.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/LV7GFV/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Guy  Arazi</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>RHQA9X@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-RHQA9X</pentabarf:event-slug>
            <pentabarf:title>Inside the Ransomware Toolbox: How to Beat Cybercriminals at Their Own Game</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T135000</dtstart>
            <dtend>20241214T143500</dtend>
            <duration>004500</duration>
            <summary>Inside the Ransomware Toolbox: How to Beat Cybercriminals at Their Own Game</summary>
            <description>In this session, we will at into the inner workings of ransomware gang attack paths and unpack the exact sets of tools they use to wreak havoc. Imagine having a cheat sheet that tells you exactly what the cyber baddies are up to before they even hit your network. Sounds like a game-changer, right?

We will find out how this matrix can supercharge your threat hunting, boost your incident response game, and help you simulate attacks just like the pros. But it&#8217;s not all smooth sailing&#8212;we&#8217;ll also talk about the tricky bits, like figuring out if a tool is being used by a cybercriminal or just your IT team.

Why should you join? Because you&apos;ll walk away with:
- Insider knowledge on the tools and tactics of the biggest ransomware gangs.
- Practical tips to turn these insights into action&#8212;detect, block, and stay ahead of attacks.
- A fresh perspective on using intelligence to not just survive, but thrive in today&#8217;s threat landscape.
- Whether you&#8217;re a seasoned defender or just stepping into the world of cybersecurity, this talk will arm you with the strategies to beat these pesky cybercriminals at their own game. 

Come ready to learn, laugh, and leave with a whole new set of ideas to take back to work.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/RHQA9X/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Will Thomas</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>GXUA37@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-GXUA37</pentabarf:event-slug>
            <pentabarf:title>From Garden to Grid: Lessons from Gardening for a Resilient Cybersecurity Strategy</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T144500</dtstart>
            <dtend>20241214T153000</dtend>
            <duration>004500</duration>
            <summary>From Garden to Grid: Lessons from Gardening for a Resilient Cybersecurity Strategy</summary>
            <description>In an increasingly complex digital world, cybersecurity professionals are continuously looking for new ways to strengthen their defenses and build resilient systems. 
This talk, &quot;From Garden to Grid,&quot; introduces a fresh and unexpected perspective by exploring how the principles of gardening can be applied to cybersecurity to create stronger, more adaptable strategies.

Drawing parallels between gardening practices&#8212;such as nurturing growth, pruning for efficiency, building resilience, and harvesting success&#8212;and essential cybersecurity approaches, this session will provide practical, actionable insights for security professionals. 
Attendees will learn how:
Continuous learning and innovation, akin to nurturing a garden, can foster growth in security practices.
Pruning unnecessary or outdated systems, much like trimming overgrown plants, can streamline security operations and reduce vulnerabilities.
Building resilience through backup systems and response plans mirrors the way gardeners protect plants from external threats.
Measuring success and reflecting on achievements, just like harvesting in gardening, ensures sustained cybersecurity effectiveness.
Through relatable analogies and real-world examples, this session will inspire attendees to rethink their cybersecurity strategies with a focus on adaptability, efficiency, and long-term sustainability. Perfect for professionals at all levels, this talk will equip participants with the tools and mindset needed to cultivate a digital environment that thrives in the face of emerging threats.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/GXUA37/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Becky Hall</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>DAM993@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-DAM993</pentabarf:event-slug>
            <pentabarf:title>Inside the Phish Tank: A Guide to Compromising Phishing Infrastructure</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T154000</dtstart>
            <dtend>20241214T162500</dtend>
            <duration>004500</duration>
            <summary>Inside the Phish Tank: A Guide to Compromising Phishing Infrastructure</summary>
            <description>We will demonstrate how to leverage these vulnerabilities to gain unauthorised access to their phishing infrastructure. This can be used to gather intelligence to help identify the threat actors operating these panels, disrupt their operations, and minimise the damage caused to their victims. Through this session, we aim to provide valuable insights and encourage proactive, ethical approaches to combating cyber threats.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/DAM993/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Vangelis Stykas</attendee>
            
            <attendee>Felipe Solferini</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>AFDMQM@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-AFDMQM</pentabarf:event-slug>
            <pentabarf:title>Building the ATT&amp;CK pipeline for Linux</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T163500</dtstart>
            <dtend>20241214T172000</dtend>
            <duration>004500</duration>
            <summary>Building the ATT&amp;CK pipeline for Linux</summary>
            <description>The session will cover:

* Introducing linux-malware - what is it and why might both red and blue want to pay attention?
* Automating the TI pipeline - applying custom analytics to someone else&apos;s DFIR report?
* What new threats should you worry about and why - Linux is unhackable, right?
* Building better detections - how can you figure out whether you&apos;re exposed?

Takeaways will include:

* A summary of the Linux threat landscape
* Just because we&apos;re not looking for the bad guys, doesn&apos;t mean they&apos;re not there
* Attackers will use the easiest TTP that gets them to a root prompt
* If you&apos;re running adversary simulations, here are some non-Windows TTPs you should consider
* If you&apos;re playing defence, this is how you develop behavioural IOCs and tools to leverage them</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/AFDMQM/</url>
            <location>Clappy Monkey Track</location>
            
            <attendee>Tim Wadhwa-Brown</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>7GAQNS@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-7GAQNS</pentabarf:event-slug>
            <pentabarf:title>Unmasking APT Malware Activity: Real-World Malware Campaign Tracking Using Big Data Analytics and Machine Learning Clustering</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T104500</dtend>
            <duration>004500</duration>
            <summary>Unmasking APT Malware Activity: Real-World Malware Campaign Tracking Using Big Data Analytics and Machine Learning Clustering</summary>
            <description>In this talk we will conduct a deep dive into the framework we developed for automating the identification and handling of malware samples targeting web servers, it will consist of four parts:

Part 1: Introduction

- Provide a baseline understanding of how threat actors can leverage web vulnerabilities to deploy malware.
- Introduce the challenge of identifying, clustering and tracking malware data in the real world.
- Introduction to the data we collect, with a focus on the real-world malware data we track.
- Discuss what can be gained by effectively identifying and tracking malware campaigns in real world scenarios.

Part 2: Automated Malware Handling

- Explain and demonstrate the framework we developed to automate the handling of web-delivered malware samples, including:
1. Identification of malware delivery using RCE attacks against web applications.
2. Safe downloading, storing and analysis of identified samples using a sandboxed environment.
3. Importing sample information to enrich existing data.

Part 3: Clustering of Malware data and Anomaly Detection

- Using big data analytics to aggregate data from multiple cloud regions, and calculate distances for clustering
- Demonstrate a novel open source tool we developed, for counters collection, aggregation and anomaly detection powered by an SQL engine and cloud functions
- Explain how the tool utilizes advanced detection methods for trends and patterns in the malware data

Part 4: Identified Campaigns

Review several campaigns detected by the framework, including:
- Sysrv Botnet: How we identified and correlated events related to activity of the Sysrv botnet, uncovering new attack vectors and TTPs. (https://tinyurl.com/sysrvb)
- AndroxGhost: How we identified AndroxGh0st malware activity, and were able to provide previously undocumented TTPs and attack vectors augmenting a previously published report by CISA. (https://tinyurl.com/axghost)
- TellYouThePass: How we quickly uncovered a malicious campaign to deliver TellYouThePass ransomware leveraging the new PHP vulnerability CVE-2024-4577. (https://tinyurl.com/tytpr)
- 8220 Gang: How we exposed new tactics and vectors utilized by the well-known threat actors 8220 Gang. (https://tinyurl.com/8220gang)
- APT29: How we were able to identify and track activity from the Russian APT specifically targeting Polish Government domains to drop RAT Malware (unpublished)


Atendees can expect the following takeaways:

1. Utilizing a combination of automation, big data analytics, and anomaly detection allows you to effectively identify and track cyber attacks. Usage of common tools like cloud data lakes and managed query engines can make such tasks quick and efficient.

2. Many threat actors, including APT groups, commonly use web vulnerabilities to target nation states and propagate dangerous malware. This activity can be consistently detected using the demonstrated framework.

3. Identification, correlation and tracking of malware campaign activity is of interest to a wide demographic within the security community, we aim to provide a useful set of ideas and tools to assist with this difficult problem.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/7GAQNS/</url>
            <location>Track 2</location>
            
            <attendee>Daniel Johnston</attendee>
            
            <attendee>Ori Nakar</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>8Z8VTW@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-8Z8VTW</pentabarf:event-slug>
            <pentabarf:title>To you its a Black Swan, to me its a Tuesday</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T105500</dtstart>
            <dtend>20241214T114000</dtend>
            <duration>004500</duration>
            <summary>To you its a Black Swan, to me its a Tuesday</summary>
            <description>This talk takes a real-world look at how red teams help organisations prepare for incidents. Starting with a light touch review of real-world high impact &quot;black swan&quot; breaches to show why we should try to do such testing. We will then look at how we can design red team engagements to test similar high impact scenarios, and what skills are needed to deliver such testing. We will finish off the talk with looking at the practical steps we can advise organisations to take to prepare for the worst.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/8Z8VTW/</url>
            <location>Track 2</location>
            
            <attendee>David V.</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>PHX7TQ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-PHX7TQ</pentabarf:event-slug>
            <pentabarf:title>Software security issues for small IoT SoCs</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T115000</dtstart>
            <dtend>20241214T123500</dtend>
            <duration>004500</duration>
            <summary>Software security issues for small IoT SoCs</summary>
            <description>As the Internet of Things (IoT) weaves itself into the fabric of our daily lives&#8212;from smart toothbrushes and connected cars to wearable tech and home gadgets&#8212;the security of these devices becomes more critical than ever. This presentation offers a friendly and accessible introduction to IoT security, focusing on Systems on Chip (SoCs) and the essential practice of hardware/software binding. It is based on my dissertation for the MSc Information Security program at RHUL.

We&apos;ll explore:

IoT and SoCs Demystified: Understand what IoT and SoCs are, and how they power the devices we use every day.
Unique Security Challenges: Learn about the vulnerabilities inherent in IoT devices due to their limited computational resources.
Hardware/Software Binding Concepts: Discover how binding software to hardware (and vice versa) prevents unauthorized access and enhances security.
Binding Methods and Solutions: Review current approaches from manufacturers and innovative solutions from academic and industry research, including their risks and limitations.
Physically Unclonable Functions (PUFs) and Hardware Security Modules (HSMs): Get introduced to these advanced security mechanisms and their practical applications in IoT devices.
Selecting Secure SoCs: Gain practical tips on choosing the right SoCs for new products, with examples of affordable development kits (often under &#163;10) that make this field accessible to all.
Security Evaluation Tool: Receive a handy security questionnaire designed to help you assess SoCs for product development and understand governance and lifecycle considerations.
Whether you&apos;re a beginner cybersecurity enthusiast, a developer looking to build secure products, a red teamer interested in potential attack surfaces, or simply curious about the gadgets around you, this session will equip you with the knowledge to make informed decisions and contribute to a safer, more secure IoT ecosystem.

Join us to explore how we can collectively enhance security in our increasingly connected world.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/PHX7TQ/</url>
            <location>Track 2</location>
            
            <attendee>Stephen Cravey</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>DBRFFP@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-DBRFFP</pentabarf:event-slug>
            <pentabarf:title>What&#8217;s inside the open directory from 96 different threat actors?</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T125500</dtstart>
            <dtend>20241214T134000</dtend>
            <duration>004500</duration>
            <summary>What&#8217;s inside the open directory from 96 different threat actors?</summary>
            <description>Understanding the TTPs used by threat actors is often only done after an incident when the damage is done, made from inferences of what they allow us to see. What if analysts had full access to exactly how these actors operate: the commands they ran, their targets, accurate geolocations, tools, and more. Luckily, over the last few years, 96 brazen threat actors, ranging from script kids to alleged APTs, made the decision to publish their systems, bash_history, log files, configs, source code, and more in open directories. Hopefully this talk begins to explore such open data.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/DBRFFP/</url>
            <location>Track 2</location>
            
            <attendee>Alana Witten</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>P8GMHQ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-P8GMHQ</pentabarf:event-slug>
            <pentabarf:title>Is Your Approach to Pipeline Security Flawed? Rethinking CI/CD Security</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T135000</dtstart>
            <dtend>20241214T143500</dtend>
            <duration>004500</duration>
            <summary>Is Your Approach to Pipeline Security Flawed? Rethinking CI/CD Security</summary>
            <description>With DevSecOps becoming the standard, CI/CD pipelines have become the backbone of software development and deployment, running thousands of times a day. Each pipeline executes critical tasks such as building, testing, and deploying code - often leveraging automation and guardrails to ensure quality and security. Tools that integrate in pipelines promise to help.

But what exactly is a pipeline? What systems and resources does it interact with? And most importantly, how can we ensure that no pipeline becomes a pivot point for an attacker to compromise our most valuable systems? Can we be confident pipelines are running what we expect and providing the necessary data for other processes?

These questions point to a (perhaps overlooked) concept: Protected Resources. In this talk, we will explore how shifting to a new mindset could enhance visibility into pipelines, ensure adherence to security protocols, and prevent pipelines from becoming attack vectors. We&apos;ll delve into practical strategies to gain observability, improve compliance, and better secure your CI/CD system in the age of DevSecOps.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/P8GMHQ/</url>
            <location>Track 2</location>
            
            <attendee>Patricia R</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>EHRQSN@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-EHRQSN</pentabarf:event-slug>
            <pentabarf:title>Roll your own vulnerabilities; an introduction to Fault-Injection for exploiting bug-free code in embedded systems.</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T144500</dtstart>
            <dtend>20241214T153000</dtend>
            <duration>004500</duration>
            <summary>Roll your own vulnerabilities; an introduction to Fault-Injection for exploiting bug-free code in embedded systems.</summary>
            <description>This talk will introduce attendees to fault-injection, a local attack category which is often used as the first step in the attack chain for embedded systems, and in some cases can also lead to remote attacks. It will cover the techniques which attackers use to generate security violations such as bypassing read protection, secure boot, or debug protection in embedded systems, even when the code is completely free of bugs. You will learn about the attacker motivations, tools and techniques, as well as the methods used to harden devices against these attacks, and how increased public awareness, certification, and regulation is changing the landscape. You will see how the cost of the equipment needed is often very low, and learn how you can begin your &#8220;glitching&#8221; journey for under &#163;20.
We will look at the fault-injection mitigations added in the Raspberry Pi Pico 2, and consider their efficacy - there is currently a $20,000 bug bounty available for breaking these protections leading to recovery of a secret stored in the One-Time-Programmable flash memory. 
We shall also touch upon side-channel analysis, which can recover cryptographic keys in use through measurement and analysis of tiny power fluctuations, or even by using a coil to pick up electro-magnetic emanations.

Keywords/phrases:
- Embedded Systems
- Microcontrollers
- Hardware Attacks
- Fault-Injection
- Voltage Fault Injection (VFI)
- Electro-Magnetic Faul Injection (EMFI)
- Clock Fault Injection (CFI)
- Risk Assessment
- Threat Modelling
- Automotive
- Industrial Control Systems
- IoT
- Mitigation Strategies
- Raspberry Pi Pico 2
- Side-Channel Analysis</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/EHRQSN/</url>
            <location>Track 2</location>
            
            <attendee>@barsteward</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>HQ7GKR@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-HQ7GKR</pentabarf:event-slug>
            <pentabarf:title>Cybersecurity&#8217;s New Imperative:  Defending Enterprise and National Cognitive Infrastructures (by strengthening  the mental immune system)</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T154000</dtstart>
            <dtend>20241214T162500</dtend>
            <duration>004500</duration>
            <summary>Cybersecurity&#8217;s New Imperative:  Defending Enterprise and National Cognitive Infrastructures (by strengthening  the mental immune system)</summary>
            <description>Winn will make you question everything in your current reality. Ready?

How do you know what&apos;s real? Who controls and might be distorting your perception of reality? 

As technology intertwines with our lives in complex and sometimes hidden ways, these questions become more urgent. We face a world where the metaverse, TMI, algorithms, and digital addiction shape our everyday experiences. They who control the technology control the narrative. 

In 1991, Winn Schwartau, the civilian architect of information warfare postulated cyberwar in front of US Congress. Today, he warns that America faces a national security crisis; a cognitive Pearl Harbor waiting to happen. The lack of a national security imperative to strengthen our population&apos;s mental immune systems and our ability to coexist with technology makes Ame1ica&apos;s cognitive infrastructure essentially defenseless. 

Schwartau&apos;s Metawar Thesis employs an analogue engineering approach and a cybersecurity prism to view the disconnects between humans and technology. The Art &amp; Science of Metawar is a compelling and groundbreaking exploration of the forces shaping our reality and the personal, enterprise, and national security implications of cognitive conflict: metawar. Through a blend of technical insights and philosophical ref lections, Schwartau offers a roadmap of hope for strengthening our mental immune system and cognitive defenses to better coexist with the technology we now rely upon. 

The Art &amp; Science of Metawar serves as both a call to action and a guide to reclaiming control over our individual narratives in an increasingly aggressive digital landscape. 

Who controls your narrative? Are you ready to find out?</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/HQ7GKR/</url>
            <location>Track 2</location>
            
            <attendee>winn schwartau</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>RZCWXJ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-RZCWXJ</pentabarf:event-slug>
            <pentabarf:title>The Past, Present and Future of Cloud-Native Security</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T163500</dtstart>
            <dtend>20241214T172000</dtend>
            <duration>004500</duration>
            <summary>The Past, Present and Future of Cloud-Native Security</summary>
            <description>Key Takeaways:
Analyse the evolution of cloud-native security threats.
Learn how attack techniques evolved over time, and assess the shortcomings of addressing cloud-native security challenges.
Explore the future impacts and trends of cloud-native security and discover practical defense strategies.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/RZCWXJ/</url>
            <location>Track 2</location>
            
            <attendee>Emma Yuan Fang</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>S7UNUC@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-S7UNUC</pentabarf:event-slug>
            <pentabarf:title>Using the OWASP Top 10 to Save the Astronauts from HAL</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T104500</dtend>
            <duration>004500</duration>
            <summary>Using the OWASP Top 10 to Save the Astronauts from HAL</summary>
            <description>The talk will use the OWASP Top 10 for ML and OWASP Top 10 for LLMs to anyalze the nature of the flaws in HAL 9000, the AI in 2001: A Space Odyssey, and how this led to disastrous results for the mission.
There will be a discussion of failures to consider different aspects of both the LLM and ML top 10 during HAL&apos;s design and training phases, and the subsequent attempts to implement fixes during the mission. Each omission or failure to apply an OWASP principle, that led to the vulnerabilities will be discussed in detail, and also related to real life applications, to ensure the talk isn&apos;t just a geeky discussion of a cool-looking scf-fi AI.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/S7UNUC/</url>
            <location>Track 3</location>
            
            <attendee>Nick Dunn</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>BEZSKR@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-BEZSKR</pentabarf:event-slug>
            <pentabarf:title>Healthcare&#8217;s Anatomy: dissection of Dicom, a protocol to Nmap your body!</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T105500</dtstart>
            <dtend>20241214T114000</dtend>
            <duration>004500</duration>
            <summary>Healthcare&#8217;s Anatomy: dissection of Dicom, a protocol to Nmap your body!</summary>
            <description>By the end of this presentation, you will have acquired in-depth knowledge of the DICOM protocol, its use in the medical field, and its technical format. You will understand the dangers of exposing DICOM servers on the web, as well as the risks to the security of medical data within healthcare infrastructures. Additionally, you will discover an offensive tool illustrating methods for extracting sensitive data from a medical server and learn how to identify signs of malicious activity to better prevent and counter these threats.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/BEZSKR/</url>
            <location>Track 3</location>
            
            <attendee>0xSeeker</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>KGLYRE@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-KGLYRE</pentabarf:event-slug>
            <pentabarf:title>Explaining ICS to a fool of a Took</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T115000</dtstart>
            <dtend>20241214T123500</dtend>
            <duration>004500</duration>
            <summary>Explaining ICS to a fool of a Took</summary>
            <description>What will be covered:

Intro to CNI &amp; OT security 
Industrial control systems
Control loops &amp; ladder logic
Testbeds including digital twins
OT Protocols such as Modbus
Known technical vulnerabilities
Security concepts and solutions
Interconnectivity of CNI sectors</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/KGLYRE/</url>
            <location>Track 3</location>
            
            <attendee>halfling</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>STGFHH@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-STGFHH</pentabarf:event-slug>
            <pentabarf:title>CV workshop</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T125500</dtstart>
            <dtend>20241214T134000</dtend>
            <duration>004500</duration>
            <summary>CV workshop</summary>
            <description>I would like to offer an engaging fun session for  45 minute about how to make your CV an A* CV in order to get job interview. I have over 14 years experience in HR &amp; Training so I would like to share tips on how to get your foot in the door with a great CV. I will leave 10 to 15 minutes  for Q&amp;A</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/STGFHH/</url>
            <location>Track 3</location>
            
            <attendee>Samira Ali</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>MDR3YL@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-MDR3YL</pentabarf:event-slug>
            <pentabarf:title>Post-Quantum Cryptography for 2025</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T135000</dtstart>
            <dtend>20241214T143500</dtend>
            <duration>004500</duration>
            <summary>Post-Quantum Cryptography for 2025</summary>
            <description>With the first three quantum-resistant cryptographic algorithms standardised by NIST in August 2024, the starting gun has been fired on the Y2K-style problem of upgrading the crypto used in almost all of our modern electronic devices. In this session you&apos;ll learn:
* What&apos;s the real threat that quantum computers pose
* An overview of the options to safeguard against that threat
* How techniques such as a cryptographic inventory, hybrid crypto and crypoagility can help ease the transition
* How to get started with quantum-resistant cryptography today!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/MDR3YL/</url>
            <location>Track 3</location>
            
            <attendee>Andy Smith</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>V8QCKM@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-V8QCKM</pentabarf:event-slug>
            <pentabarf:title>When the Hunter Becomes the Hunted: Using Minifilters to Disable EDRs</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T144500</dtstart>
            <dtend>20241214T153000</dtend>
            <duration>004500</duration>
            <summary>When the Hunter Becomes the Hunted: Using Minifilters to Disable EDRs</summary>
            <description>## 1. Introduction

This presentation will explore the use of minifilters, an essential components of EDRs, in offensive security operations, with a focus on their application in bypassing and disabling EDR systems.

## 2. EDR Architecture Overview

We will first provide a high level description of EDR systems, their components and architecture. This is essential to understand how minifilters contribute to EDR systems and the capabilities they provide. It sets the stage to understand how such capabilities could be abused.

## 3. Common Minifilters Abuse Techniques

We then rapidly go through common known techniques involving minifilters used during offensive security operations, especially around file system monitoring bypass to hide suspicious file activity.

## 4. A New Minifilter Abuse Technique to Disable EDRs

In this section, we present a novel technique which allows to entirely disable EDR agents and prevent them from running on endpoints. This technique relies on the registration of a PreOperation callback to prevent EDR agents from accessing critical resources, effectively crippling them.

We dive into the Kernel concepts involved and provide a step-by-step breakdown of the whole process.

We compare this new technique to other minifilter abuse techniques in terms of effectiveness in hiding malicious activities and IoCs.

## 5. Detecting Minifilter Abuse

In this final section, we explore the defensive side of things:
- Potential countermeasures and their limitations
- Potential strategies for detecting and mitigating minifilter-based attacks

## 6. Conclusion and Q&amp;A
Finally, we will summarise the key takeaways and open the floor for questions and discussion.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/V8QCKM/</url>
            <location>Track 3</location>
            
            <attendee>Tom Philippe</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>9PXYXH@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-9PXYXH</pentabarf:event-slug>
            <pentabarf:title>Let&#8217;s Phish: How to Scam Everyone, Everywhere, All at Once</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T154000</dtstart>
            <dtend>20241214T162500</dtend>
            <duration>004500</duration>
            <summary>Let&#8217;s Phish: How to Scam Everyone, Everywhere, All at Once</summary>
            <description>You will hear two stories of crime: the story of a kidnapped daughter and the story of a fake DJ. In these stories, we will explore key techniques that, when implemented correctly, can provide a blueprint for hacking anyone.

Preparation of a Hack: Identifying the right victim and their weaknesses. This section of the talk outlines simple steps for uncovering a target&apos;s vulnerabilities that can be exploited. We will dive into how to evaluate time, effort, and reward like a true criminal.

The Attack: The process and closure. What techniques work and how to keep the victim engaged. As we will see, these techniques are straightforward and can be applied to any victim profile.

The Reward: What is the reward, and what happens if a financial transaction is involved? This section will emphasize that the hack is often the easier part. Cleaning the money requires seasoned criminals.

The talk will address a broader question: What can we, as cybersecurity professionals, do, and has our approach been wrong? The talk will conclude by analyzing different types of attackers because if we do not understand the psychology of the criminal, the techniques we employ to protect targets will continue to be insufficient.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/9PXYXH/</url>
            <location>Track 3</location>
            
            <attendee>Dita Pesek</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>LZ7Z9Z@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-LZ7Z9Z</pentabarf:event-slug>
            <pentabarf:title>SIEM: Escape and Evade</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T163500</dtstart>
            <dtend>20241214T172000</dtend>
            <duration>004500</duration>
            <summary>SIEM: Escape and Evade</summary>
            <description>SOC teams commonly rely on Security Information and Event Management (SIEM) tools to detect, analyse, and respond to security threats. In this presentation, we will introduce key SIEM concepts and the role of the SIEM in the SOC, as well as discuss shortfalls of SIEM tools. Then we shall explore the possibility of attacks and evasion techniques in SIEMs. We will also discuss the general challenges of managing SIEMs in enterprise environments. 

Not only will we cover the technical aspects, but also highlight processes, organisation dependencies and discuss non-technical mitigations.

Attacking a SIEM involves exploiting vulnerabilities in data ingestion, correlation rules, and alert mechanisms to manipulate the very systems designed to detect malicious activities. Specifically, we will cover:
- Introduction to Security Information and Event Management (SIEM) tools, architectures, and their role in the SOC
- Common log sources and ingest methods
- Custom apps and add-ons
- Cloud-native SIEMs
- Key vulnerabilities and attack vectors in SIEM systems: Data ingestion manipulation, Correlation rules exploitation, Alert bypass techniques
- How organisational structures and supporting processes can be exploited

We are hoping to help defenders and offensive teams better understand the risks involved with SIEM deployments, whilst emphasising the importance of simulating real-world attack scenarios.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Talk</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/LZ7Z9Z/</url>
            <location>Track 3</location>
            
            <attendee>Daniel Crossley</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>AG8NTC@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-AG8NTC</pentabarf:event-slug>
            <pentabarf:title>MITRE ATLAS - exploring AI vulnerabilities</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T101500</dtend>
            <duration>001500</duration>
            <summary>MITRE ATLAS - exploring AI vulnerabilities</summary>
            <description>This is a talk about the MITRE ATLAS framework.
I&apos;ll first discuss how the ATLAS framework is built on top of the ATT&amp;CK framework, before delving into some key differences with respect to vulnerabilities and attack vectors specific to what MITRE calls &quot;AI-Enabled Systems&quot;. 
I&apos;ll walk you through two case studies, one with a &apos;good&apos; actor, the other a &apos;bad&apos; one, and how investigation is made easier by using the ATLAS framework.
Finally, I&apos;ll show you how you can protect your organization against AI attacks by utilizing various mitigations, of which 25 are documented in this framework, covering various vulnerabilities.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/AG8NTC/</url>
            <location>Rookie track 1</location>
            
            <attendee>Arthur Frost</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>FEEDHA@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-FEEDHA</pentabarf:event-slug>
            <pentabarf:title>Adopt or Risk: Why Zero Trust is Key to Modern Cyber Defence</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T102500</dtstart>
            <dtend>20241214T104000</dtend>
            <duration>001500</duration>
            <summary>Adopt or Risk: Why Zero Trust is Key to Modern Cyber Defence</summary>
            <description>As the digital landscape evolves and cyber threats become more sophisticated, organizations can no longer rely on traditional perimeter-based security. The rise of remote work, cloud adoption, and interconnected systems has expanded the attack surface, leaving organizations vulnerable to breaches and insider threats. &quot;Adopt or Risk: Why Zero Trust is Key to Modern Cyber Defence&quot; offers a critical look at why organisations must shift to a Zero Trust model to effectively safeguard their networks.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/FEEDHA/</url>
            <location>Rookie track 1</location>
            
            <attendee>Meletius Igbokwe</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>N3ZG7S@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-N3ZG7S</pentabarf:event-slug>
            <pentabarf:title>Commanding Heights: Unmasking COM-Based UAC Bypass Techniques.</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T105500</dtstart>
            <dtend>20241214T111000</dtend>
            <duration>001500</duration>
            <summary>Commanding Heights: Unmasking COM-Based UAC Bypass Techniques.</summary>
            <description>Description:
The Elevated COM (Component Object Model) UAC (User Account Control) bypass is a technique used by attackers to escalate privileges on a Windows system without triggering a UAC prompt. UAC is a security feature in Windows that helps prevent unauthorized changes to the operating system by requiring user consent or administrator-level approval for certain actions. The bypass demonstrated in this talk leverages elevated COM objects identified by the CLSID {3E5FC7F9-9A51-4367-9063-A120244FBEC7} that run with higher privileges to execute malicious code, thereby circumventing UAC protections.
Key Points
1.	Overview of UAC
2.	Overview of COM
3.	UAC and COM: Security Intersection
4.	Abusing UAC Elevate COM Interfaces
5.	Case Study 
&#8226;	BlackCat - Ransomware
6.	Live Demo 
7.	Monitoring and Detection
&#8226;	Threat Hunt, Detection Logic\Tool
8.	Q&amp;A</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/N3ZG7S/</url>
            <location>Rookie track 1</location>
            
            <attendee>Amankumar Badhel</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>P3JVM8@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-P3JVM8</pentabarf:event-slug>
            <pentabarf:title>From Zero to Cyber Hero: A Non-Techie&apos;s Guide to Breaking into Cybersecurity</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T112000</dtstart>
            <dtend>20241214T113500</dtend>
            <duration>001500</duration>
            <summary>From Zero to Cyber Hero: A Non-Techie&apos;s Guide to Breaking into Cybersecurity</summary>
            <description>This 15-minute presentation aims to inspire and guide non-technical individuals who want to pursue a career in cybersecurity. With the cybersecurity industry facing a significant skills gap, there is a need for diverse perspectives in addressing growing security challenges.

Key points to be covered include:
1) The speaker&apos;s journey from a non-technical background to cybersecurity, including overcoming common challenges faced by career-changers.
2) The value of diverse perspectives in cybersecurity and how non-technical backgrounds can be an asset in the field.
3) The role of communities in skill development and networking, highlighting experiences as a WiCyS (Women in CyberSecurity) Surrey chapter leader.
4) The importance of participating in cybersecurity competitions and how they contribute to practical skill-building. 
5) Strategies for utilising conferences and networking events to secure work experiences, such as the speaker&apos;s CTI opportunity.
6) Practical advice for building a foundation in cybersecurity, including resources, learning paths, and key focus areas for beginners.

The presentation will be particularly valuable for:

Professionals considering a career change into cybersecurity
Hiring managers looking to diversify their security teams
Current cybersecurity professionals interested in mentoring newcomers

By highlighting the speaker&apos;s experiences with the Women in Cybersecurity (WiCyS) Surrey Chapter, success in a CISA-hosted competition, and work in Cyber Threat Intelligence, this talk demonstrates how non-traditional paths can lead to meaningful contributions in cybersecurity.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/P3JVM8/</url>
            <location>Rookie track 1</location>
            
            <attendee>Egonna Anaesiuba-Bristol</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>AWDYG7@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-AWDYG7</pentabarf:event-slug>
            <pentabarf:title>Robert Redford Made Me Do It: Physical Security Stories and Tips</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T115000</dtstart>
            <dtend>20241214T120500</dtend>
            <duration>001500</duration>
            <summary>Robert Redford Made Me Do It: Physical Security Stories and Tips</summary>
            <description>Sneakers, the best hacker film&#8230;period. 

This talk aims to share my enthusiasm for the adrenaline rush of bypassing physical security measures through personal stories and engagement tales while sharing tips and tricks that I have learned along the way.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/AWDYG7/</url>
            <location>Rookie track 1</location>
            
            <attendee>Matthew Steed</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>7RVA7Z@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-7RVA7Z</pentabarf:event-slug>
            <pentabarf:title>It&apos;s been a good run: why I stopped doing OSINT CTFs</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T121000</dtstart>
            <dtend>20241214T122500</dtend>
            <duration>001500</duration>
            <summary>It&apos;s been a good run: why I stopped doing OSINT CTFs</summary>
            <description>Alan is a holder of a TraceLabs black badge, an honour they still hold dear despite not having any interest in competing for nearly 4 years.  Finally, after all these years they&apos;re ready to give their reasons so that others may learn about some small issues that were present in the early days so that they may make informed decisions when it come to participation.

NOTICE:
Whilst anonymised, this talk will be discussing missing people and as such the talk may not be suitable for younger audiences</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/7RVA7Z/</url>
            <location>Rookie track 1</location>
            
            <attendee>Alan O&apos;Reilly</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>PGDUDM@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-PGDUDM</pentabarf:event-slug>
            <pentabarf:title>Password Hell - accessibility challenges in Cyber Security</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T123500</dtstart>
            <dtend>20241214T125000</dtend>
            <duration>001500</duration>
            <summary>Password Hell - accessibility challenges in Cyber Security</summary>
            <description>Slide order
1 - What is the issue?
2 - Why is this an issue?
3 - Why am I talking about it?
4 - What are the challenges that people face?
5 - What are some outdated protocols and why you shouldn&apos;t use them
6 - What are some solutions to this problem? 
7 - Conclusion</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/PGDUDM/</url>
            <location>Rookie track 1</location>
            
            <attendee>Ana Maia</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>L3KZC7@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-L3KZC7</pentabarf:event-slug>
            <pentabarf:title>Continuous threat modelling using Large Language Models</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T130000</dtstart>
            <dtend>20241214T131500</dtend>
            <duration>001500</duration>
            <summary>Continuous threat modelling using Large Language Models</summary>
            <description>This talk introduces an innovative approach to continuous threat modelling by leveraging Large Language Models (LLMs). It covers how LLMs can help automating the analysis of rapid application changes, identify potential security vulnerabilities, and suggest mitigations in real time.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/L3KZC7/</url>
            <location>Rookie track 1</location>
            
            <attendee>Gurunatha Reddy G</attendee>
            
            <attendee>Pranay Sahith Bejgum</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>SYLV3X@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-SYLV3X</pentabarf:event-slug>
            <pentabarf:title>Storytelling for SOC Analysts: Effective Investigation Notetaking and Report Writing (without ChatGPT!)</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T132000</dtstart>
            <dtend>20241214T133500</dtend>
            <duration>001500</duration>
            <summary>Storytelling for SOC Analysts: Effective Investigation Notetaking and Report Writing (without ChatGPT!)</summary>
            <description>Want to be able to write high quality reports without AI chatbots?

This talk outlines top tips for leveraging technical writing skills to produce effective, impactful and actionable investigation notes and reports. The talk will also highlight quick wins to improve your technical writing skills, exploring key areas including:

- Knowing your audience
- Adopting an Incidents/Threats for Dummies approach
- Why Context is your friend, and
- Why AI most certainly is not!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/SYLV3X/</url>
            <location>Rookie track 1</location>
            
            <attendee>Han O&#8217;Connor</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>7SJJBW@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-7SJJBW</pentabarf:event-slug>
            <pentabarf:title>The Psychology of Cyber: Navigating a Crisis Like a Pilot</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T135000</dtstart>
            <dtend>20241214T140500</dtend>
            <duration>001500</duration>
            <summary>The Psychology of Cyber: Navigating a Crisis Like a Pilot</summary>
            <description>Explore how aviation&#8217;s crisis management strategies can inform cybersecurity practices. This session addresses the psychological impact of crises, the importance of open communication, and practical approaches to managing unpredictable situations with confidence and composure.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/7SJJBW/</url>
            <location>Rookie track 1</location>
            
            <attendee>George Chapman</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>HV7REQ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-HV7REQ</pentabarf:event-slug>
            <pentabarf:title>BrakRPi: Crashing Bluetooth communications on Raspberry Pi with Braktooth</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T141500</dtstart>
            <dtend>20241214T143000</dtend>
            <duration>001500</duration>
            <summary>BrakRPi: Crashing Bluetooth communications on Raspberry Pi with Braktooth</summary>
            <description>In August 2021, a group of researchers from Singapore called ASSET disclosed the series of vulnerabilities in commercial Bluetooth stacks ranging from DDoS to Arbitrary Code Execution - which was called Braktooth. It affected major vendors such as Intel, Cypress, Qualcomm and Espressif. 

While researchers&apos; main focus was to test laptops, smartphones and audio devices, one class of devices that went untested were Raspberry Pis. In this talk, I will describe how I was able to add small contribution to this research by proving that Raspberry Pi was also vulnerable to Braktooth due to the usage of Cypress System-on-Chip (SoC).

This presentation is beginner-friendly and no prior knowledge is required. It will cover the brief explanation of Braktooth series and more detailed explanation of documented process of crashing Bluetooth communications between Raspberry Pi and a remote speaker, why fixing this won&apos;t be enough with a simple code patch, and suggestions to mitigate the risks.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/HV7REQ/</url>
            <location>Rookie track 1</location>
            
            <attendee>Ilias</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>RFGTEW@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-RFGTEW</pentabarf:event-slug>
            <pentabarf:title>Unmasking the Deepfake Threat: Detection, Prevention, and Navigating the Future</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T144500</dtstart>
            <dtend>20241214T150000</dtend>
            <duration>001500</duration>
            <summary>Unmasking the Deepfake Threat: Detection, Prevention, and Navigating the Future</summary>
            <description>This talk will provide a comprehensive overview of deepfakes, exploring how they are been created, to the detection, and prevention of it. Participants will gain a deeper understanding of the risks posed by deepfakes, learn about effective countermeasures, and discover the latest advancements in deepfake detection technology. 
Participants will leave this workshop with the information and skills needed to navigate the ever-changing environment of deepfake threats and defend themselves and their organisations.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/RFGTEW/</url>
            <location>Rookie track 1</location>
            
            <attendee>Onyedikachi Ugwu</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>URK98E@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-URK98E</pentabarf:event-slug>
            <pentabarf:title>Threat analysis in minutes and other AI super powers</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T150500</dtstart>
            <dtend>20241214T152000</dtend>
            <duration>001500</duration>
            <summary>Threat analysis in minutes and other AI super powers</summary>
            <description>Using AI models often means sharing information with AI companies and running into guardrails that keep you from accomplishing cybersecurity tasks. I contribute to WhiteRabbitNeo to help build a community-driven, open source alternative.  During this talk I will teach attendees from the beginner cybersecurity enthusiast to the senior cyber analyst how to use AI how to learn new concepts, create custom hacking tools in any language, analyze code, and complete threat analysis tasks in seconds rather than hours.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/URK98E/</url>
            <location>Rookie track 1</location>
            
            <attendee>Bailey Williams</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>EWZVMW@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-EWZVMW</pentabarf:event-slug>
            <pentabarf:title>VEXatious vulnerabilities: CVE management for the overwhelmed security engineer</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T154000</dtstart>
            <dtend>20241214T155500</dtend>
            <duration>001500</duration>
            <summary>VEXatious vulnerabilities: CVE management for the overwhelmed security engineer</summary>
            <description>For application security engineers, CVE management has become a huge burden in recent years. Caught between the accelerating number of CVEs granted each year, vulnerability scanners that are unable to accurately identify applicability, and users who demand zero CVEs in dependencies, security engineers become spreadsheet engineers, devoting large amounts of time to explaining why the latest set of CVEs identified by a vulnerability scanner do not matter.

The aim of my talk is to highlight the potential of VEX documents to render these spreadsheet back-and-forths obsolete. At their core, VEX documents allow for the expression of vulnerability applicability information in a programmatic manner. By highlighting a workflow and related tooling that I have introduced for Cilium (the CNCF-graduated CNI for Kubernetes), I will show how using VEX documents gives security engineers:
- The ability to automatically exclude triaged results from vulnerability scanners (including popular scanners such as Grype and Trivy), reducing customer friction and allowing customer security teams to &#8216;self-service&#8217; vulnerability applicability.
- The ability to spread the load of CVE triage onto the teams that know the most about the products that may be affected.
- The ability to automatically generate documentation regarding vulnerability applicability.

All of these points will be accompanied by real examples of how Isovalent, the company I work for and the creators of Cilium, use VEX documents in our daily security workflow.

By the end of my talk, I hope that attendees will leave convinced that they should be generating and consuming VEX documentation too, in order to minimise the amount of time we spend in spreadsheets, and maximise the amount of time that we spend hunting and fixing real vulnerabilities.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/EWZVMW/</url>
            <location>Rookie track 1</location>
            
            <attendee>Feroz Salam</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>EMHSZC@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-EMHSZC</pentabarf:event-slug>
            <pentabarf:title>Securing Embedded Devices in Robotics and IoT: Bridging the Gap Between Innovation and Security</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T160000</dtstart>
            <dtend>20241214T161500</dtend>
            <duration>001500</duration>
            <summary>Securing Embedded Devices in Robotics and IoT: Bridging the Gap Between Innovation and Security</summary>
            <description>Embedded devices are the backbone of modern robotics and IoT, but their widespread use has introduced unique security risks. This session delves into hardware, firmware, and communication vulnerabilities that leave embedded systems open to cyberattacks. Attendees will explore real-world attack scenarios and learn effective defense strategies to secure embedded devices from design to deployment. Additionally, we&#8217;ll discuss future trends like AI-driven anomaly detection and hardware root-of-trust, offering a forward-looking view of embedded device security. This talk is designed for engineers, developers, and security professionals looking to strengthen the security of robotics and IoT infrastructures.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/EMHSZC/</url>
            <location>Rookie track 1</location>
            
            <attendee>Victor Oriakhi Nosakhare</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>QADXSB@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-QADXSB</pentabarf:event-slug>
            <pentabarf:title>OWASP Honeypot threat intelligence project</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T163500</dtstart>
            <dtend>20241214T165000</dtend>
            <duration>001500</duration>
            <summary>OWASP Honeypot threat intelligence project</summary>
            <description>This project involves enhancing the security posture of the web applications by deploying ModSecurity based honeypots over Amazon EC2 instances to lure the attacker to use various tools and attack techniques to compromise the application and logging the attack vectors for threat analysis. These Amazon EC2 instances are spread across different regions of the world to cover the global landscape. The output of these honeypots is logged in a S3 bucket in JSON format which can be used as a threat intelligence dataset for finding web traffic anomalies. Furthermore, we can use a JSON visualisation tool such as JSON crack for pattern matching and detect the anomaly in the dataset which could be useful for patching the application as well as creating a baseline for the web developers for future development.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/QADXSB/</url>
            <location>Rookie track 1</location>
            
            <attendee>Kartik Adak</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>QEEQCS@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-QEEQCS</pentabarf:event-slug>
            <pentabarf:title>An introduction to Patient Medication Records</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T101500</dtend>
            <duration>001500</duration>
            <summary>An introduction to Patient Medication Records</summary>
            <description>This talk will highlight issues with current Patient Medication Record software, some solutions and what I found whilst working as a retail Pharmacist.

The aim is to reveal the results in a lighthearted way, there&apos;ll be thrills and spills on the journey and some results may astound. But remember all your records are still safe with me!!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/QEEQCS/</url>
            <location>Rookie track 2</location>
            
            <attendee>Darren</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>FFZ3P3@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-FFZ3P3</pentabarf:event-slug>
            <pentabarf:title>Can you SEE!! A risk approach to SIEM</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T102500</dtstart>
            <dtend>20241214T104000</dtend>
            <duration>001500</duration>
            <summary>Can you SEE!! A risk approach to SIEM</summary>
            <description>Do you actually know if you have been breached?  Do you know your critical assets, what you can&apos;t see?   Monitoring and logging is a simple construct, however most companies see it as a tick-box exercise.   This presentation looks into the following, eyes on the ground approach.
- answers the why, how , what
- looks in to basics around asset management, critical data, users, end points, networks, etc
- key missed areas, like policy, people, and physical.
- summaries an approach based on a risk based approach.

this will cover examples and be lighted hearted and funny at times.

- questions
- end</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/FFZ3P3/</url>
            <location>Rookie track 2</location>
            
            <attendee>Richard Kirk</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>BUZ9ST@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-BUZ9ST</pentabarf:event-slug>
            <pentabarf:title>Is AI the new big brother?</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T105500</dtstart>
            <dtend>20241214T111000</dtend>
            <duration>001500</duration>
            <summary>Is AI the new big brother?</summary>
            <description>This talk explores the potential of artificial intelligence (AI) to be using in social engineering. It also discusses the concept of mass social engineering, where individuals or groups are manipulated to behave or think in a predefined manner, and how AI can facilitate this process. The talk highlights the concern over AI&apos;s role in mass social engineering, including its impact on  war, political opinions, privacy, and social inequality.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/BUZ9ST/</url>
            <location>Rookie track 2</location>
            
            <attendee>Tom</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>MSPTC8@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-MSPTC8</pentabarf:event-slug>
            <pentabarf:title>LLM Security: Attacks and Controls</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T112000</dtstart>
            <dtend>20241214T113500</dtend>
            <duration>001500</duration>
            <summary>LLM Security: Attacks and Controls</summary>
            <description>The talk is structured to fulfil the following objectives:
1. Evaluate approaches for identifying exploitation of security vulnerabilities in large language models (LLMs).
2. Investigate the response of various pre-trained models to attacks on LLMs.
3. Develop and assess security controls to mitigate cyber risks associated with LLM attacks.

The 15-minute talk will focus on Large Language Models (LLMs) will extensively explore the vulnerabilities, particularly in the context of adversarial attacks, types of prompt injection attacks on LLMs, Insecure output handling, Client side Injection attacks and denial-of-service (DoS) attacks. However, there remains a research gap in the systematic simulation and comparative analysis of these attacks across different LLM architectures and configurations. Current studies predominantly focus on individual attack vectors or specific LLMs, lacking a holistic approach that examines the interplay between multiple attack types and their cumulative impact on LLM performance and security.

Most weaknesses in AI models stem from injection techniques, which can be particularly harmful when the model or the API used to access the model makes incorrect calls to the database, inadvertently retrieving sensitive content that does not align with established guidelines. These vulnerabilities underscore the critical need to thoroughly understand how AI models interact with third parties and the potential risks associated with these interactions.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/MSPTC8/</url>
            <location>Rookie track 2</location>
            
            <attendee>Nazeef Khan</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>RA9DK8@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-RA9DK8</pentabarf:event-slug>
            <pentabarf:title>From Molecules to Malware: Visualising TLS Fingerprints with TMAP to Hunt Malicious Domains.</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T115000</dtstart>
            <dtend>20241214T120500</dtend>
            <duration>001500</duration>
            <summary>From Molecules to Malware: Visualising TLS Fingerprints with TMAP to Hunt Malicious Domains.</summary>
            <description>The presentation focuses on a more resilient approach to TLS fingerprinting - particularly one that handles the encrypted client hello and the granularity loss encountered when fingerprinting CDNs. The method of visualising similarities is used effectively in the chemical arena and can be used as a method for early detection of malicious domains and websites.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/RA9DK8/</url>
            <location>Rookie track 2</location>
            
            <attendee>Amanda Thomson</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>MEBCGT@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-MEBCGT</pentabarf:event-slug>
            <pentabarf:title>A Minimal Talk on Distroless Containers</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T121000</dtstart>
            <dtend>20241214T122500</dtend>
            <duration>001500</duration>
            <summary>A Minimal Talk on Distroless Containers</summary>
            <description>But in practice, it&#8217;s really hard to find examples of companies outside of the tech giants that have successfully adopted distroless containers.

Minimal, hardened containers have huge benefits for security teams: reduced attack surface, cleaner vulnerability scans, improved isolation, and simpler supply chains. But how can a security engineer achieve them without the resources of a tech giant?

At Sourcegraph, we faced a lot of pain with vulnerability management in containers, prompting our switch to distroless. In this talk I&#8217;ll cover:

- Distroless containers from scratch
- The tooling that&#8217;s available
- Real-world experience from migrating a complex SaaS application to distroless - what went well, and what was unexpectedly hard</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/MEBCGT/</url>
            <location>Rookie track 2</location>
            
            <attendee>Will Dollman</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>P8MKRR@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-P8MKRR</pentabarf:event-slug>
            <pentabarf:title>Quantum Safe Cryptography - A Buzzword or Something More Serious?</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T123500</dtstart>
            <dtend>20241214T125000</dtend>
            <duration>001500</duration>
            <summary>Quantum Safe Cryptography - A Buzzword or Something More Serious?</summary>
            <description>The industry is abuzz with the words Quantum Computers and Quantum Safe Cryptography being plastered everywhere. What actually is going on here? Are Quantum Computers really going to cause havoc? 

Will Quantum Computers be a real threat some day? Algorithms that make use of Quantum Physics have already been developed that will have real world repercussions on cryptography we use today. 

NIST (the National Institute of Standards and Technology), a well known body within cyber security has just released a set of standardised Quantum Safe Cryptographic algorithms. Something that has taken them years of study (8 years infact) to ensure that the algorithms cannot be easily broken or private data and keys decrypted easily.

Well, what does that mean in general, and what does it mean for you? The word Quantum might be used to generate the hype, but the real underlying issue is the integration of cryptography just about everywhere. Cryptography is embedded in our devices, in our routers and networking, in servers, in hardware, in containers, in firewalls, in file-transfer software, and anywhere else you can think of. Digital Certificates help lay the foundations of secure communications everywhere. 

Cryptography is a fundamental control used to protect confidentiality and integrity. The real issue lies in the effective migration of cryptography, and in a timescale that ensures protection against an ever-looming threat.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/P8MKRR/</url>
            <location>Rookie track 2</location>
            
            <attendee>Suketu</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>MZFXGP@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-MZFXGP</pentabarf:event-slug>
            <pentabarf:title>Disabling Drones: Disruption and Forensic Data Analysis</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T130000</dtstart>
            <dtend>20241214T131500</dtend>
            <duration>001500</duration>
            <summary>Disabling Drones: Disruption and Forensic Data Analysis</summary>
            <description>Drones have become a crucial part of modern technology, playing vital roles in both civilian and military operations. However, their increasing use also exposes them to various cyber threats, particularly those targeting their command-and-control (C2) channels. In my talk, I will demonstrate practical methodologies developed to disrupt drone systems, using tools such as Flipper Zero, ESP32 microcontrollers, and Aircrack-ng to simulate real-world attacks. I will detail various attack scenarios, including a video stealing attack that intercepts and records drone video feeds, and a drone disabling attack that remotely powers off the drone, rendering it inoperable. Post-attack, I conducted comprehensive forensic analyses to capture network traffic and digital footprints, revealing critical evidence of the disruptions. This talk aims to raise awareness of drone vulnerabilities, present forensic strategies for evidence gathering, and foster the development of effective countermeasures against these threats.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/MZFXGP/</url>
            <location>Rookie track 2</location>
            
            <attendee>Paavai Aram</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>FEY9FR@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-FEY9FR</pentabarf:event-slug>
            <pentabarf:title>Do loop back in anger</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T135000</dtstart>
            <dtend>20241214T140500</dtend>
            <duration>001500</duration>
            <summary>Do loop back in anger</summary>
            <description>In this session, I&apos;ll walk through the lesser-known MS08-068 vulnerability and explore the potential for SMB reflection attacks in 2024, uncovering a root cause hidden in plain sight within Microsoft&apos;s documentation. The talk will include a demonstration of the attack, and you&apos;ll receive a script to set up your own lab environment for hands-on practice at home!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/FEY9FR/</url>
            <location>Rookie track 2</location>
            
            <attendee>Shane Bourne</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>9FVVGB@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-9FVVGB</pentabarf:event-slug>
            <pentabarf:title>The Trustworthiness of Generative AI in Real-Time Decision-Making for IoT Devices</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T144500</dtstart>
            <dtend>20241214T150000</dtend>
            <duration>001500</duration>
            <summary>The Trustworthiness of Generative AI in Real-Time Decision-Making for IoT Devices</summary>
            <description>As IoT devices become increasingly autonomous, the need for reliable, real-time decision-making is more critical than ever. Generative AI has the potential to transform these systems by analyzing complex data and enabling smart devices to predict outcomes and respond efficiently. However, with greater AI autonomy comes the pressing question of trust. Can we trust AI to make decisions accurately and responsibly in real-time? This talk will address the technical challenges in ensuring the reliability of AI-driven IoT devices and explore the role of explainable AI (XAI) in fostering transparency and user confidence.

We will also dive into the ethical and privacy concerns surrounding AI decision-making in IoT, particularly in sensitive or high-risk environments. Through practical examples and best practices, this session will offer insights on how to design AI-powered IoT systems that are not only innovative but also trustworthy, transparent, and ethically sound. Attendees will leave with a deeper understanding of the critical balance between leveraging generative AI for real-time decision-making and maintaining trust in these technologies.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/9FVVGB/</url>
            <location>Rookie track 2</location>
            
            <attendee>Meet Bhorania</attendee>
            
            <attendee>Yash Akbari</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>HYJP7A@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-HYJP7A</pentabarf:event-slug>
            <pentabarf:title>Memoryless Peripherals and Secure Notebooks</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T150500</dtstart>
            <dtend>20241214T152000</dtend>
            <duration>001500</duration>
            <summary>Memoryless Peripherals and Secure Notebooks</summary>
            <description>I am not completely insane (yet) - I do leverage a modern smart phones (and their CPU&apos;s) like everyone else does to do things like sending dog pictures to the old man.

I have to admit, I am someone new to the security space. As such, the first I heard about side-channel vulnerabilities on CPU cache such Meltdown and Spectre was this year. From what I understand (but please do correct me if I am wrong!) - these are only the first iterations in a new genus of exploit.

So we can explore a potential approach to designing improved technology for this specific problem set, building at the electronic engineering level all the way to userland.

I will also discuss the benefits, challenges, and drawbacks I&apos;ve encountered, as well as the key insights gained from the exploration thus far.

Connect: https://uk.linkedin.com/in/kaiharris606</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/HYJP7A/</url>
            <location>Rookie track 2</location>
            
            <attendee>Kai Harris</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>LH9ZKL@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-LH9ZKL</pentabarf:event-slug>
            <pentabarf:title>Turning to the dark side &#8211; Utilizing offensive techniques in incident response</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T154000</dtstart>
            <dtend>20241214T155500</dtend>
            <duration>001500</duration>
            <summary>Turning to the dark side &#8211; Utilizing offensive techniques in incident response</summary>
            <description>As incident responders in the insurance space, we often respond to incidents where critical evidence is no longer available for analysis either due to hardware failure, complete encryption or eager recovery efforts. This leads to our incident responders taking a step back and using offensive techniques to determine what the most likely method of entry was.  This presentation will demonstrate a few of the techniques we have utilized including: 

Open source intelligence: Identifying network information from open source intelligence. 

Leaked data: Identifying victim data such as leaked usernames and passwords from data leaks. 

Active Directory attacks: Identifying common weaknesses in Active Directory configuration and performing attacks against Active Directory accounts and services to identify weak links.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/LH9ZKL/</url>
            <location>Rookie track 2</location>
            
            <attendee>Archie Essien</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>83QAGY@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-83QAGY</pentabarf:event-slug>
            <pentabarf:title>MSSP, MDR, MFA - So Why isn&apos;t Incident Response Solved?</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T160000</dtstart>
            <dtend>20241214T161500</dtend>
            <duration>001500</duration>
            <summary>MSSP, MDR, MFA - So Why isn&apos;t Incident Response Solved?</summary>
            <description>We&apos;ve seen many mid sized and enterprise organisations that have a Managed Security Service Provider,  Managed Detection &amp; Response and Multifactor Authentication -  &quot;So why isn&apos;t IR solved?&quot; in the words of one CTO.

This talk picks up on frustrations and gaps from both the technical MSSP and MDR side, and from the customer side, and explains why &quot;Just pick a different SOC&quot; isn&apos;t necessarily a good answer.

We go into some of the enterprise architecture, organisational and human factors from the 90&apos;s to today  that have caused gaps on both sides, why this matters, and what we think security people can do about it.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Rookies track</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/83QAGY/</url>
            <location>Rookie track 2</location>
            
            <attendee>Tim Haynes</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>Y8ZSCJ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-Y8ZSCJ</pentabarf:event-slug>
            <pentabarf:title>Bypassing BitLocker by Sniffing the SPI Bus</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T120000</dtend>
            <duration>020000</duration>
            <summary>Bypassing BitLocker by Sniffing the SPI Bus</summary>
            <description>We are inviting you to a comprehensive workshop designed to provide an introduction into bypassing BitLocker encryption. This session will focus on Bypassing BitLocker in TPM Only Mode on laptop with an SPI bus.

Participants will explore and engage in the following:
* Monitoring SPI Buses with Digital Logic Analysers: Learn how to use digital logic analysers to monitor and interpret SPI bus communications. 
* Extracting TPM Data: Gain hands-on experience in extracting data from buses for TPM chips.
* Mounting and Decrypting Disks: Discover how to mount and decrypt disks protected by BitLocker. This practical exercise will illustrate the step-by-step process of bypassing encryption and gaining access to secured data.
* Discussion of other bypass techniques

Who Should Attend:

* Penetration Testers: Enhance your toolkit for stolen device assessments and red team engagements by mastering techniques to bypass BitLocker encryption.
* Security Enthusiasts: Understand the vulnerabilities of your own devices and learn how to better protect them against sophisticated attacks.
* Forensic Analysts: Acquire essential skills for data recovery and forensic investigations involving BitLocker-protected devices.

This workshop is structured to provide both theoretical knowledge and practical experience, ensuring that participants leave with a basic understanding of BitLocker bypass techniques and the confidence to apply them in real-world scenarios.

Knowledge Prerequisites:

* Basic Windows familiarity
* Basic Linux familiarity
* Awareness of BitLocker

Attendees will need to bring own laptop with Kali Linux and the dislocker package installed. All other materials will be provided.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/Y8ZSCJ/</url>
            <location>Workshop Room 1</location>
            
            <attendee>Darren McDonald</attendee>
            
            <attendee>Craig S. Blackie</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>M8GTGY@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-M8GTGY</pentabarf:event-slug>
            <pentabarf:title>Container Security and Hacking with Docker and Kubernetes</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T124500</dtstart>
            <dtend>20241214T164500</dtend>
            <duration>040000</duration>
            <summary>Container Security and Hacking with Docker and Kubernetes</summary>
            <description>This hands-on workshop aims to give you an understanding of the security features and pitfalls of modern containerization tools like Docker and Kubernetes. We&#8217;ll cover a range of topics to build up a picture of the security options available and show practical examples of attack and defence on containerized systems.

There will be hands-on labs covering common attacks on Docker, Docker containers and Kubernetes clusters.

Prerequisites &#8211; Familiarity with basic Docker commands and Linux command line use will be helpful, but we&#8217;ll provide step-by-step instructions for people who are less familiar with them.

Workshop requirements:
- A laptop with a web browser that does not have strict filtering in place (e.g. no white-list only corporate proxies) and an SSH client.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/M8GTGY/</url>
            <location>Workshop Room 1</location>
            
            <attendee>Rory McCune</attendee>
            
            <attendee>Iain Smart</attendee>
            
            <attendee>Marion McCune</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>P7KJ9A@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-P7KJ9A</pentabarf:event-slug>
            <pentabarf:title>Taking the garbage out!</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T101500</dtstart>
            <dtend>20241214T121500</dtend>
            <duration>020000</duration>
            <summary>Taking the garbage out!</summary>
            <description>The challenge to balance complete event coverage with efficient log onboarding is commonplace across Security Operations. Getting this balance wrong can lead to missing information in Events of Interest that would have provided context, even exclude some of the events being put in front of an analyst for triage. Conversely, excessive low value events can reduce the efficiency of the technology and overwhelm analysts.  

Greater awareness and understanding of the process and best practices for log source onboarding, parsing and correlation will lead to better transparency between engineering and operations. This increased cohesion can reduce false-positives, and positively impact MTTD and MTTR. 

In this workshop we will cover: 
Introduction to Security Information and Event Management (SIEM) tools, on-prem/cloud 
Common log sources and collection methods 
Best practices to identify 
- Use case definition 
- Log verbosity (inc scenario) 
- Log source documentation (inc scenario) 
RegEx Introduction (inc practical exercise) 
Review parsed example log source 
Log source collection (inc practical exercise) 

Tips / Tricks and lessons learned 
- CEF/Sigma 
- Mitre ATT&amp;CK 

By understanding the principals above the security operations function will be more effective from SIEM engineering through to SOC analysts.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/P7KJ9A/</url>
            <location>Workshop Room 2</location>
            
            <attendee>Guy Kramer</attendee>
            
            <attendee>Kyle Pearson</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>9NSRLS@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-9NSRLS</pentabarf:event-slug>
            <pentabarf:title>Defeating Encryption By Using Unicorn Engine</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T130000</dtstart>
            <dtend>20241214T170000</dtend>
            <duration>040000</duration>
            <summary>Defeating Encryption By Using Unicorn Engine</summary>
            <description>With Unicorn Engine, you can dissect and manipulate code in a controlled environment. Whether you are dealing with malware analysis, software debugging, or vulnerability research, Unicorn Engine is an awesome tool in your reverse-engineering toolkit.

This training will focus on reverse-engineering one or more binaries with Ghidra. Participants will identify various encryption or obfuscation functions and write code for Unicorn Engine in Python to utilise these functions without ever executing the binary.

No special knowledge is required, but familiarity with Python, Ghidra, and x86/x64 assembly would be beneficial. The training will introduce Unicorn Engine to the audience and explain it in depth.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/9NSRLS/</url>
            <location>Workshop Room 2</location>
            
            <attendee>Balazs Bucsay</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>WLKFP3@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-WLKFP3</pentabarf:event-slug>
            <pentabarf:title>Malware Unmasked: Supercharging Cyber Defense with Machine Learning Magic</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T101500</dtstart>
            <dtend>20241214T121500</dtend>
            <duration>020000</duration>
            <summary>Malware Unmasked: Supercharging Cyber Defense with Machine Learning Magic</summary>
            <description>For over a decade security companies have been using machine learning to detect and protect against malicious binaries. Some have moved away entirely from traditional detection methods whilst others opt for a hybrid approach. Either way, sometimes they&apos;re right, sometimes they&apos;re wrong, and sometimes they&apos;ve no idea what they&apos;ve detected; luckily for them they&apos;ve usually got security experts on hand.

Attribution, accuracy, similar samples? These questions often fall on the shoulders of security experts and all of which can be time consuming to answer. &quot;Your customer insists the file isn&apos;t malicious, let me take a look at that in more detail.&quot;, &quot;I might not find any other samples because there is nothing overly unique.&quot; or what about &quot;It might be group [x] because these two binaries share a few similar strings...&quot;.  

What if there was another way?

Join us as we explore leveraging machine learning to aide researchers in malware analysis, attribution and threat hunting before putting these skills into practice by completing a small CTF challenge aimed at show casing what we think the future of binary analysis will look like.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/WLKFP3/</url>
            <location>Workshop Room 3</location>
            
            <attendee>David Rushmer</attendee>
            
            <attendee>James Patrick-Evans</attendee>
            
            <attendee>Lloyd Davies</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>8EK7GF@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-8EK7GF</pentabarf:event-slug>
            <pentabarf:title>From Code to Cloud: Securing the Stack with Open-Source Tools</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T130000</dtstart>
            <dtend>20241214T150000</dtend>
            <duration>020000</duration>
            <summary>From Code to Cloud: Securing the Stack with Open-Source Tools</summary>
            <description>Open-source tools have become essential in today&#8217;s cybersecurity landscape, offering comprehensive, low-cost solutions for securing modern applications. From securing codebases to protecting cloud environments, these tools can help organizations achieve full coverage without massive investments. However, while open-source tools offer significant advantages&#8212;such as flexibility, community support, and transparency&#8212;there are also scenarios where they fall short, such as scalability issues, lack of enterprise support, and specific feature gaps.
In this workshop, we&#8217;ll explore the full spectrum of how open-source tools can be leveraged to secure your applications from development to deployment&#8212;covering both the code and cloud layers. We&#8217;ll walk through specific tools like:
-OWASP ZAP for web application scanning,
-Trivy for container security,
-Checkov for threat detection in cloud assets
-SemGrep, Bandit and Brakerman for SAST 
Through hands-on experimentation you will see these tools in action and learn how they can be integrated into your development pipeline to enforce security at every stage. We&#8217;ll also dive into real-world examples where open-source tools excel&#8212;and where they may not always be the best fit. 
By the end of this session, you&#8217;ll walk away with practical strategies to secure your application&#8217;s entire stack with open-source tools, as well as an understanding of the limitations to be mindful of. This talk is ideal for security engineers, developers, and DevOps teams looking to improve their security posture using open-source solutions.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/8EK7GF/</url>
            <location>Workshop Room 3</location>
            
            <attendee>Mackenzie Jackson</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>CUUGBR@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-CUUGBR</pentabarf:event-slug>
            <pentabarf:title>Roll Your Own EDR/XDR/MDR</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T153000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>020000</duration>
            <summary>Roll Your Own EDR/XDR/MDR</summary>
            <description>In this two-hour hands-on workshop we will show attendees how to build their own EDR/XDR/MDR platform leveraging open-source and free tools. Attendees will learn to deploy  cross-platform EDR sensors, how to use sigma detection rules, write custom detection rules, and leverage open source adversary emulation tools ( Atomic Red Team) to test new them. We will then discuss how to extend these capabilities for investigations and threat hunting by integrating additional open source or free tools to gather additional telemetry such as Sysmon and Velociraptor.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/CUUGBR/</url>
            <location>Workshop Room 3</location>
            
            <attendee>Ken Westin</attendee>
            
            <attendee>Jessica Crytzer</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>KA9T8N@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-KA9T8N</pentabarf:event-slug>
            <pentabarf:title>The AppSec lessons from Iron Man</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T100000</dtstart>
            <dtend>20241214T120000</dtend>
            <duration>020000</duration>
            <summary>The AppSec lessons from Iron Man</summary>
            <description>Step into the shoes&#8212;or rather, the suit&#8212;of Iron Man as we explore the dynamic world of Application Security. In this 2-hour workshop, you&apos;ll learn how to protect your applications with the same innovative strategies Tony Stark uses to shield his tech from relentless attacks.

This workshop is designed for developers, security engineers, and security champions who want to understand and implement security practices that are both robust and agile. We&#8217;ll cover every aspect of Application Security, from the fundamentals of secure coding to the latest automated defenses, all framed through the lens of Iron Man&#8217;s constant innovation and real-time problem-solving.

You&#8217;ll uncover how to:

Develop &#8220;armor&#8221; for your applications by integrating security from the start.
Protect the &#8220;arc reactor&#8221; of your system&#8212;its most critical components&#8212;from the most dangerous threats.
Improve your &#8220;battlefield awareness&#8221; with threat modeling and continuous vulnerability scanning.
Automate and scale your defenses using cutting-edge security tools.
Respond swiftly and effectively to incidents, with agility and precision, just like Iron Man in the heat of battle.
This engaging, workshop will not only provide practical insights and strategies but also inspire you to approach Application Security with creativity and foresight. By the end, you&#8217;ll be equipped with the tools and mindset to defend your applications like a true tech superhero.

Prepare to suit up&#8212;your journey to becoming an Application Security hero starts here!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Short</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/KA9T8N/</url>
            <location>Workshop Room 4</location>
            
            <attendee>C&#225;ssio Pereira</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>MKVAAJ@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-MKVAAJ</pentabarf:event-slug>
            <pentabarf:title>Aerospace Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T083000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>090000</duration>
            <summary>Aerospace Village</summary>
            <description>The Aerospace Village is a volunteer team of hackers, pilots, and policy advisors who come from the public and private sectors. 
We believe the flying public deserves safe, reliable, and trustworthy air travel which is highly dependent on secure aviation and space operations. Our mission is to Build, inspire, and promote an inclusive community of next-generation aerospace cybersecurity expertise and leaders. 
We invite you to play with Bricks-in-the-Air, an interactive activity that uses a Lego aircraft model to demonstrate aviation system fundamentals.</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/MKVAAJ/</url>
            <location>Aerospace Village</location>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>JK9H3M@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-JK9H3M</pentabarf:event-slug>
            <pentabarf:title>Car Hacking Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T083000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>090000</duration>
            <summary>Car Hacking Village</summary>
            <description>Car Hacking Village</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/JK9H3M/</url>
            <location>Car Hacking Village</location>
            
            <attendee>-</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>K8BP7H@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-K8BP7H</pentabarf:event-slug>
            <pentabarf:title>Lock Picking Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T083000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>090000</duration>
            <summary>Lock Picking Village</summary>
            <description>Ever wondered how a lock works inside? Already know, and want to up your picking game?  Come and meet the experts from  TOOOL UK at the lockpicking village. 
The Open Organisation Of Lockpickers are a multinational group dedicated to defeating locks for fun and games. 
Learn to beat a pin tumbler lock, see inside various locks, padlocks and, er, even more locks! Come and play with locks!</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/K8BP7H/</url>
            <location>Lock Picking Village</location>
            
            <attendee>Moon On A Stick &amp; Bristol Locksport</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>THJBVS@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-THJBVS</pentabarf:event-slug>
            <pentabarf:title>Malware Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T123000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>050000</duration>
            <summary>Malware Village</summary>
            <description>Details are on the Malware Village website: https://malwarevillage.org
MARC I &amp; BOMBE Details on DEF CON forums: https://forum.defcon.org/node/249321</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/THJBVS/</url>
            <location>Malware Village</location>
            
            <attendee>Lena Yu</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>3CE8QD@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-3CE8QD</pentabarf:event-slug>
            <pentabarf:title>Quantum Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T083000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>090000</duration>
            <summary>Quantum Village</summary>
            <description>Quantum Village</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/3CE8QD/</url>
            <location>Quantum Village</location>
            
            <attendee>-Quantum Village</attendee>
            
        </vevent>
        
        <vevent>
            <method>PUBLISH</method>
            <uid>7PHCEH@@cfp.securitybsides.org.uk</uid>
            <pentabarf:event-id></pentabarf:event-id>
            <pentabarf:event-slug>-7PHCEH</pentabarf:event-slug>
            <pentabarf:title>Train Hacking Village</pentabarf:title>
            <pentabarf:subtitle></pentabarf:subtitle>
            <pentabarf:language>en</pentabarf:language>
            <pentabarf:language-code>en</pentabarf:language-code>
            <dtstart>20241214T083000</dtstart>
            <dtend>20241214T173000</dtend>
            <duration>090000</duration>
            <summary>Train Hacking Village</summary>
            <description>Train Hacking Village</description>
            <class>PUBLIC</class>
            <status>CONFIRMED</status>
            <category>Workshop - Long</category>
            <url>https://cfp.securitybsides.org.uk/bsides-london-2024/talk/7PHCEH/</url>
            <location>Train Hacking Village</location>
            
            <attendee>-Train Hacking Village</attendee>
            
        </vevent>
        
    </vcalendar>
</iCalendar>
