<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Poc on ioctl</title><link>https://ioctl.lol/tags/poc/</link><description>Recent content in Poc on ioctl</description><generator>Hugo</generator><language>en</language><copyright>ioctl</copyright><lastBuildDate>Mon, 16 Mar 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ioctl.lol/tags/poc/index.xml" rel="self" type="application/rss+xml"/><item><title>Clickjacking PoC Generator</title><link>https://ioctl.lol/tools/clickjacking-poc/</link><pubDate>Mon, 16 Mar 2026 00:00:00 +0000</pubDate><guid>https://ioctl.lol/tools/clickjacking-poc/</guid><description>&lt;h2 id="whats-clickjacking">What&amp;rsquo;s clickjacking&lt;/h2>
&lt;p>Target page gets loaded in an invisible iframe. Overlay it on a decoy page. Victim thinks they&amp;rsquo;re clicking &amp;ldquo;Free iPad&amp;rdquo; but they&amp;rsquo;re actually clicking &amp;ldquo;Delete My Account&amp;rdquo; on the real site underneath.&lt;/p>
&lt;p>It&amp;rsquo;s been around forever and the fix is trivial, which makes it surprising how often it&amp;rsquo;s still missing.&lt;/p>
&lt;hr>
&lt;h2 id="the-fix-and-what-were-testing-for">The fix (and what we&amp;rsquo;re testing for)&lt;/h2>
&lt;p>Two headers kill this attack:&lt;/p>
&lt;pre tabindex="0">&lt;code>X-Frame-Options: DENY
&lt;/code>&lt;/pre>&lt;p>or&lt;/p>
&lt;pre tabindex="0">&lt;code>Content-Security-Policy: frame-ancestors &amp;#39;none&amp;#39;
&lt;/code>&lt;/pre>&lt;p>&lt;code>DENY&lt;/code> blocks framing entirely. &lt;code>SAMEORIGIN&lt;/code> / &lt;code>frame-ancestors 'self'&lt;/code> allows same-origin framing only. If neither header is present, the page can be framed by anyone.&lt;/p></description></item></channel></rss>