appsec.fyi

Talks — A Practical Guide

A curated AppSec resource library covering XSS, SQLi, SSRF, IDOR, RCE, XXE, OSINT, and more.

Talks: A Practical Guide

Curated and synthesized by . Last updated 2026-08-16. Synthesized from 85 of 85 curated resources. Browse all 85 Talks resources →

Problem Framing

The application security landscape is in constant flux, driven by evolving technologies, sophisticated threat actors, and the ever-increasing complexity of software development. Staying ahead requires not only a deep understanding of current vulnerabilities but also the ability to anticipate future attack vectors. This guide aims to equip experienced application security professionals with a framework for identifying, developing, and delivering impactful security talks, moving beyond basic vulnerability disclosure to explore novel techniques, strategic insights, and forward-looking research.

Core Mechanics

Developing a compelling security talk for an experienced audience centers on providing actionable, novel, and deeply technical content. This means:

Notable Techniques

Arbitrary File Writes to RCE in Modern Environments

The escalation of Arbitrary File Writes (AFW) to RCE remains a persistent challenge, especially in modern, containerized, and stripped-down environments. The core formula for AFW-to-RCE relies on three components: path control, content control, and a known-executed destination [1]. While path and content control are provided by the vulnerability, identifying the destination requires deep environment fingerprinting. Techniques that bypass traditional assumptions like cron, SSH, or full init systems are crucial. The dynamic linker preload, specifically /etc/ld.so.preload, stands out as a universally useful OS-level technique, triggering on every new process execution without requiring interactive logins or daemon restarts [1]. The usefulness of an AFW primitive is graded by dimensions like path control (forced prefix vs. suffix), content control (overwrite vs. append-only), and exclusivity (create-exclusive vs. overwrite) [1].

Weaponizing Webmail with CSS

Gareth Heyes' work demonstrates how CSS within webmail clients can be weaponized for significant impact, including token exfiltration, UI spoofing, and password theft. Techniques involve advanced CSS selector nesting to brute-force tokens, indirect prompt injection to control browser instances within webmail clients, and the use of font-height oracles with animations to bypass Content Security Policy (CSP) restrictions and exfiltrate numeric tokens [2]. This research highlights the overlooked attack surface presented by the rendering engines of modern webmail clients.

AI-Driven Vulnerability Discovery

Generative AI is significantly shifting the landscape of vulnerability discovery. The Assetnote researcher Adam Kues utilized GPT 5.6 Sol Ultra to find a pre-authentication RCE chain in WordPress core, costing minimal resources [2]. This chain involved complex interactions like batch API validation desync, SQL injection, post cache poisoning, and privilege escalation. The time investment for AI to find and create an exploit is often significantly less than the time required for a human to understand it [2]. This capability shift prompts a re-evaluation of research priorities towards finding "internet melting bugs" before adversaries can [2]. The "HTTP Terminator" project by PortSwigger Research explores pushing the boundaries of fully autonomous research by inventing new HTTP desync triggers and applying them at scale to live websites [4]. This involves an iterative process of ideation, evaluation, weaponization, and cascade, with LLMs playing a role in hypothesis generation [4].

Exploiting Trust Service Provider Software

Vulnerabilities in widely deployed trust service provider software can have far-reaching consequences. The Connective signing extension, used by numerous Belgian banks and government agencies, presented critical issues including the ability for any site to read user eID and Maestro card data, recover PINs, and execute arbitrary code. The core of the exploit lay in poorly designed token handling, where activationToken was not tied to the origin of the request, and the pinToken itself contained plaintext PIN data alongside ciphertext and decryption keys [3]. This highlights the need for rigorous security assessments of software handling sensitive credentials and digital identities.

Supply Chain Vulnerabilities in Package Managers

Package managers and their infrastructure remain a critical target for supply chain attacks. A cache vulnerability in RubyGems.org allowed unauthenticated attackers to retrieve valid legacy API keys by exploiting how gzip-compressed responses were cached at Fastly edge nodes without proper cache directives. The lack of variation on the Authorization header in the caching configuration enabled this bypass [2]. Similarly, GitHub and npm have implemented significant improvements to disrupt supply chain attacks, including safer pull_request_target defaults, read-only Actions caches for untrusted triggers, staged publishing for npm, disabling install scripts by default, and Dependabot cooldowns [2]. Sub:jugation vulnerabilities in global OIDC issuers (like GitHub Actions, GitLab CI) allow attackers to reclaim deleted namespaces and mint JWTs, leading to credential exfiltration if cloud IAM roles still trust orphaned sub-claims [6].

LLM Security and Agentic AI Risks

The proliferation of LLMs and AI agents introduces new attack surfaces and requires specialized security considerations. The OWASP LLM Top 10 provides a framework for understanding these risks, ranging from prompt injection and data leakage to model manipulation and denial of service [7]. Talks at conferences like Black Hat and DEF CON increasingly focus on AI security, covering topics like prompt injection, model backdoors, AI-generated phishing, securing LLMs, and AI for defense [8]. The concept of "Shadow AI," unsanctioned AI tools used within enterprises, presents a significant governance and security challenge, potentially adding substantial costs to breaches [9]. Agentic AI systems introduce new complexities, such as agent-to-agent interactions and delegated activity, requiring new threat models [9]. The development of AI Gateways, like HAProxy's solution, aims to address real-world security challenges in prompt protection, balancing security with performance [10]. Training curricula are emerging to address red teaming GenAI systems, covering adversarial attacks, privacy breaches, model manipulation, and system-level exploits like prompt injection and jailbreaking [11].

Kubernetes and Cloud-Native Security

Securing containerized environments, particularly Kubernetes, remains a complex challenge. Talks at KubeCon highlight practical issues such as securing hundreds of clusters without Pod Security Policies, the evolution from Pod Security Admission to Validating Admission Policies, and the performance considerations of different policy enforcement methods [5]. Building secure, distroless container images is crucial, with various strategies and tools available [5]. Understanding the capabilities and limitations of eBPF in security solutions is also key [5]. Privilege escalation tactics within Kubernetes clusters, including post-compromise activities like hiding tracks and achieving persistence, are frequently explored [5]. Initial access vectors into Kubernetes clusters and living-off-the-land techniques in managed Kubernetes services are also critical areas of focus [5]. Network policies, mTLS for internal service communication, and the security of managed Kubernetes services are ongoing areas of research and development [10].

Detection & Prevention

Vulnerability Disclosure Programs (VDPs) and Bug Bounties

Effective VDPs and bug bounty programs are essential for uncovering vulnerabilities in complex systems. The aviation industry, for example, has historically had a sensitive approach to vulnerability disclosure, with some organizations still needing improvement [12]. Establishing clear, transparent, and responsive VDPs encourages researchers to responsibly disclose findings [12]. The sheer volume and complexity of findings, such as the WordPress RCE chain, underscore the value of organized bounty programs in identifying critical flaws [2].

Secure Development Lifecycle (SDLC) Practices

Next-generation software development, characterized by complex architectures, AI tooling, and multi-cloud distribution, necessitates a proactive and integrated approach to security [13]. This includes:

Supply Chain Security Measures

Mitigating supply chain risks requires a multi-layered approach:

AI Security Governance and Controls

Securing AI systems requires specific governance and technical controls:

Container and Orchestration Security

Securing Kubernetes environments involves:

Tooling

A robust set of tools is indispensable for advanced application security research and practice. Key categories include:

Recent Developments

AI as a Research Partner and Adversary

The most significant recent development is the increasing capability of AI in security research, both for offensive and defensive purposes. AI models can now discover complex vulnerability chains autonomously [2]. Tools like the "HTTP Terminator" are being developed to push the boundaries of AI-driven offensive security research [4]. Concurrently, AI is being integrated into SOC operations for tasks like natural language querying, investigation summarization, and triage streamlining [9]. The challenge lies in securing AI systems themselves, from prompt injection attacks to ensuring the integrity of AI training data and models [8][11][16][19][14]. The emergence of "Shadow AI" highlights the uncontrolled proliferation of AI tools, posing new risks [9].

Evolving Threat Models for Agentic AI

The rise of autonomous AI agents necessitates a re-evaluation of existing threat models. Understanding agent-to-agent interactions, the potential for excessive agency, tool misuse, and MCP-based supply chain attacks is becoming critical [9][14]. The security community is actively developing frameworks and best practices to secure these systems, moving beyond traditional RAI testing to focus on adversarial attacks, privacy breaches, and system-level exploits [11].

Focus on Supply Chain Integrity

Supply chain attacks continue to be a major concern, leading to enhanced security measures across various platforms. GitHub and npm have rolled out significant improvements to mitigate common attack patterns [2]. The vulnerability in RubyGems highlights the ongoing need for vigilance in securing package repository infrastructure [2]. The Sub:jugation vulnerability in OIDC issuers underscores the risks associated with shared trust mechanisms and the need for robust identity management in cloud environments [6].

Shift Towards Operationalization in Cloud Security

Conferences like KubeCon are increasingly focusing on the operationalization of cloud-native security. Discussions revolve around practical implementation of security controls, managing complex cloud environments, and securing AI workloads within Kubernetes [5][10]. The emphasis is shifting towards demonstrating real-world adoption stories, academic use cases, and practical integration of AI, alongside a maturing ecosystem prioritizing stability and scale [10].

Where to Go Deeper

For those looking to deepen their understanding and contribute to the application security discourse, several avenues are highly recommended:

Sources cited in this guide

  1. Write Once, Shell Everywhere - Turning Arbitrary File Writes into RCE (DEF CON Bug Bounty Village) — ethiack.com
  2. [tl;dr sec] #341 - Hugging Face Incident Black Hat Talk, CSS Bomb in your Inbox, GitHub Supply Chain Security Improvements — tldrsec.com
  3. DEF CON talk: 8 in 10 Banks in Belgium HATE This One Weird eID RCE — amibeingpwned.com
  4. Can AI do novel security research? Meet the HTTP Terminator — portswigger.net
  5. Top security talks from KubeCon Europe 2024 — wiz.io
  6. [tl;dr sec] #332 - I've Joined OpenAI, fwd:cloudsec, AWS Well Architected Supply Chain Security — tldrsec.com
  7. Jackpot: a browser lab of 10 deliberately vulnerable LLM apps, one per OWASP LLM Top 10 category — hego.red
  8. The insider’s guide to Black Hat 2025 — wiz.io
  9. 5 Takeaways from Black Hat x DEF CON 2025 — cybersecuritypulse.net
  10. Top security talks from KubeCon Europe 2025 — wiz.io
  11. GitHub - schwartz1375/genai-security-training — github.com
  12. DEF CON 33 Aerospace Village Talk Schedule — aerospacevillage.org
  13. Securing next-gen development: Lessons from Trust Bank and TASConnect — snyk.io
  14. AI Agent Security Masterclass: Attacking and Defending Autonomous AI Systems - DEF CON Training — training.defcon.org
  15. #burp #pentest #ai #hackerassociate #cybersecurity #infosec… | Harshad Shah — linkedin.com
  16. OWASP Global AppSec EU 2025 - GenAI Focus — genai.owasp.org
  17. XBOW at Black Hat & DEF CON: AI Agents for Offensive Security — xbow.com
  18. AppSec & Cybersecurity Events Calendar 2026: 60+ Conferences — derscanner.com
  19. HTB COAE: Introducing the new standard for AI Red Teaming — youtube.com
  20. Black Hat USA 2025 Briefings Schedule — blackhat.com
  21. Black Hat USA 2025 - YouTube Playlist — youtube.com
  22. Black Hat Official YouTube Channel — youtube.com
  23. Black Hat Briefings - Wikipedia — en.wikipedia.org
  24. DEF CON 33 Talks - YouTube Playlist — youtube.com
  25. DEF CON 33 Call Index — defcon.org
  26. DEFCON Conference — Official YouTube — youtube.com
  27. DEF CON 33 Archive: Videos, Slides, and White Papers — defcon.org
  28. OWASP Global AppSec USA 2025 - CFP — sessionize.com
  29. OWASP Global AppSec EU 2025 (Barcelona) — owasp.glueup.com
  30. OWASP Global AppSec USA 2025 (Washington DC) — genai.owasp.org
  31. OWASP Global & Regional Events — owasp.org
  32. OWASP 25th Anniversary Virtual Conference — sessionize.com
  33. Annual Computer Security Applications Conference — acsac.org
  34. GPSEC Cybersecurity Conference — guidepointsecurity.com
  35. IEEE Symposium on Security and Privacy 2026 — sp2026.ieee-security.org
  36. The Elephant in AppSec Conference — theelephantinappsec.com
  37. RSA Conference 2026 — rsaconference.com
  38. Cybersecurity Conferences 2026-2027 — infosec-conferences.com
  39. NDC Security 2026 — ndcsecurity.com
  40. The Best Security Conferences & Events 2026 — splunk.com
  41. LASCON – Lonestar Application Security Conference — lascon.org
  42. Introducing the OWASP Nettacker Project - Speaker Deck — speakerdeck.com
  43. Hacking Android and IOT Apps by Example - DEF CON Training LV 2026 — training.defcon.org
  44. GitHub - schwartz1375/genai-essentials — github.com
  45. BSidesSLC 2026 — sessionize.com
  46. OWASP Videos — videos.owasp.org
  47. OWASP Videos — videos.owasp.org
📚 This guide is synthesized from the full text of resources curated in the Talks library, and refreshed as new material is added.