⚠ UPDATE 2026-08-27 — Operator Still Active. Same AtomicAt PID 5268768 confirmed active via Instagram DM bot campaign. Account @33thetruthcode (394K followers) mass-DMs anyone who comments on its videos with the same funnel link. New tactic: /test page impersonates CNN with verbatim copyright notice. VSL stream HTTP 200. → See Case 021
Case 019 — Third Eye Activator: Brazilian Supplement Scam
AtomicAt VSL Funnel · Fake Social Proof · Fake Doctor · CartPanda Checkout
A Brazilian-operated pseudoscientific supplement scam serving EU consumers through Instagram ads.
The funnel runs on AtomicAt (a Brazilian funnels-as-a-service platform), hosts a Video Sales Letter
on Converteai that locks purchase buttons behind 46 minutes of viewing, fabricates a live "Watching Now"
counter between 400–700 viewers, impersonates a "Dr Phill" medical authority, and collects
$89–$294 per order through CartPanda, a Brazilian checkout platform. No FDA disclaimer. No authorized
EU health claims. No registered company. All infrastructure is Brazilian SaaS.
Finding 1Brazilian Operator Attribution — Internal Page Name "PAGINA DE VENDA CNN" Leaked in JS
The AtomicAt funnel JavaScript exposes a plaintext page descriptor that was never meant to be visible to visitors.
The string "pageName":"🟠 IG - PAGINA DE VENDA CNN - THIRD EYE ACTIVATOR" appears in the first
script block of LkuvYh0444359.js, served from BunnyCDN at path /pv/js/.
"PAGINA DE VENDA" is Portuguese for "Sales Page". The operator is Brazilian, building funnels
in Portuguese for a product sold in USD to English-speaking markets.
"IG" confirms Instagram as the paid acquisition channel.
"CNN" is appended to the internal label — a reference to CNN-style fake news advertorials used as
the Instagram ad creative, a known dark pattern for health supplement funnels. CNN branding is not present on
the live page but the internal label reveals the ad format.
The JWT-encoded mcp_token in the entry URL was decoded and contains the operator's AtomicAt
publisher ID (pid: 5268768) and subscriber tracking ID (sid: 1401923890).
The token has an exp field set to 1790201670 (2026-08-24) — it was issued as expired but
the server does not validate expiry server-side: the page still loads and delivers full content.
# Internal page identifier — leaked in LkuvYh0444359.jspageName "🟠 IG - PAGINA DE VENDA CNN - THIRD EYE ACTIVATOR"# PT-BR = "Sales Page"pageId T4J85TmOHokoq0IjTGJJ# AtomicAt funnel page IDpageDomain www.unlockyourthirdeye.funapiEndpointhttps://apido.atomicat-api.com/platform/notify/s/fe# mcp_token JWT payload — base64 decodedpid 5268768# AtomicAt publisher account ID (affiliate/operator)sid 1401923890# subscriber / click session IDax 4bcc5088f1b42cfd7a47b46d317b6279# session hashts 1787782470# issued timestamp (2026-07-25)exp 1790201670# expired 2026-08-24 — NOT VALIDATED server-side# Acquisition chain (decoded)Channel Instagram# "IG" in internal labelAd format Fake CNN advertorial# "CNN" in label = fake news-style creativeLanguage Portuguese (PT-BR)# Operator origin: Brazilcid param 60613977618# Instagram campaign/creative ID passed as UTM
The expired token being accepted without server-side validation means any old mcp_token from a shared Instagram ad link grants full funnel access — no re-authentication or fresh session required. This also means stolen/forwarded tracking links work indefinitely, leaking the publisher's affiliate ID to investigators.
Finding 2Fabricated Social Proof — "558 Watching Now" Counter is Algorithmically Randomized
The "558 Watching now" counter displayed prominently on the funnel page is not a real viewer count.
The AtomicAt JavaScript initializes the counter from a data-min / data-max HTML
attribute pair and then randomizes it every 0–3 seconds using a PRNG function.
The counter drifts by ±5 to ±7 per tick, staying bounded between 400 and 700 — values chosen to appear
plausibly real without being verifiably false.
This is a documented dark pattern called manufactured social proof. No server-side
user count exists. No WebSocket or SSE connection is opened. The number is computed locally in the visitor's
browser and means nothing.
# Fake counter PRNG — extracted from LkuvYh0444359.jsfunction e(e, t) {
return Math.floor(Math.random() * (t - e + 1) + e)# random int in [e, t]
}
function t(r) {
const a = parseInt(r.dataset.min) || 400# lower bound
const n = parseInt(r.dataset.max) || 700# upper bound
const o = 3e3 * Math.random()# update every 0–3 seconds
setTimeout(() => {
let o = parseInt(r.innerText)
const i = e(-5, 7) # drift ±5 to ±7 per tick
const c = Math.max(a, Math.min(n, o + i))
r.innerText = c.toString() # overwrite displayed value
t(r)
}, o)
}
# Applied to all .atomicat-random elementsDisplayed "558 Watching now"# fabricated — browser-local PRNG onlyReal count UNKNOWN# no server query, no real counterRange 400 – 700# algorithmically bounded "plausible" windowRegulation UCPD Art.6(1)(b)# misleading commercial practice
Fabricated social proof counters are explicitly addressed under EU Directive 2005/29/EC (UCPD) Article 6(1)(b) — presenting false information about the availability or existence of a product or service. The counter gives EU consumers a false belief that hundreds of people are actively viewing the same product.
The funnel's purchase buttons are hidden using the CSS class .atomicat-delay and only
revealed once the Converteai Video Sales Letter has been watched for 2,790 seconds —
46 minutes and 30 seconds. This is controlled by the variable delaySeconds = 2790 in the
AtomicAt player integration script.
The VSL player is hosted by Converteai (a Brazilian VSL-as-a-service platform),
using CloudFront distribution in eu-central-1 / eu-west-1 — EU-region served.
The video stream is an HLS M3U8 at
cdn.converteai.net/de140fdb-281f-47cb-847f-0ad61ba607e8/6a0e115f3882ab3cd0666f43/main.m3u8.
This technique is a textbook sunk-cost psychological trap. After investing 46 minutes
listening to the VSL narrative about fluoride, pineal glands, and "what the government tried to hide",
the viewer is emotionally primed. The buy button appearing at exactly that moment is not coincidental
— it is the designed conversion trigger. The choice state is also persisted to localStorage under key
alreadyElsDisplayed2790, meaning returning visitors bypass the gate on subsequent visits.
# VSL gate — 46 min 30 sec lock — extracted from LkuvYh0444359.jsdelaySeconds 2790# 46 min 30 sec until buy buttons appearGate class .atomicat-delay# hidden until removeDelay() fireslocalStorage alreadyElsDisplayed2790# bypass key — persists across sessions# Converteai VSL account detailsAccount UUID de140fdb-281f-47cb-847f-0ad61ba607e8# Converteai accountPlayer ID 6a1f36599775247f40d90ac5Video ID 6a0e115f3882ab3cd0666f43Stream cdn.converteai.net/de140fdb.../main.m3u8CDN region eu-central-1 / eu-west-1# CloudFront, EU-servedPlayer updated 2026-08-26 14:07 UTC# active operation, updated today# Psychological manipulation taxonomyTechnique Sunk Cost Trap# 46 min investment before CTA revealContent hook Conspiracy framing# "pineal gland the agency tried to hide"Authority claim Fake doctor persona# meta author = "Dr Phill"Regulation UCPD Annex I § 31# Aggressive commercial practices
The Converteai player script was last modified 2026-08-26 14:07 UTC — the day before this investigation. This is an actively maintained operation, not abandoned infrastructure. The operator is currently running paid Instagram ad spend and updating their VSL.
Finding 4Unauthorized Health Claims — EU Regulation 1924/2006 + FTC Act §5 Violations — Fake "Dr Phill"
Third Eye Activator makes eight distinct medical and health-adjacent claims on the funnel page,
none of which are authorized under EU Regulation 1924/2006 (the EU Health Claims Register) and none
backed by clinical evidence. The claims include disease-modification framing ("Undo decades of fluoride
damage"), physiological claims ("Hormones balanced, fat melting away"), and paranormal claims
("Feel what's about to happen before it actually happens", "Spot a lie before they even open their mouth").
The operator uses the pseudonym "Dr Phill" as the meta author field
(<meta name="author" content="Dr Phill">) — a deliberate phonetic near-match to
the public figure Dr. Phil McGraw, calculated to trigger medical credibility associations.
No medical credentials, no license number, no country of practice is cited anywhere on the page.
No FDA disclaimer ("These statements have not been evaluated by the Food and Drug Administration")
was found anywhere in the 52KB HTML document. For EU-targeted consumers, no disclaimer referencing
EFSA evaluation or Regulation 1924/2006 compliance is present either.
# Health claims extracted from page content — all unsubstantiatedClaim 1 "Supernatural Intuition — Feel what's about to happen before it happens"Claim 2 "Lucid, Vivid Dreams — Wake up with answers you had no way of knowing"Claim 3 "Real Manifestation — Pull in money, people, and opportunities effortlessly"Claim 4 "Active Clairvoyance — Spot a lie before they even open their mouth"Claim 5 "Brain Protection — Undo decades of fluoride damage in your brain"Claim 6 "Deep, Restorative Sleep — Sleep through the night and wake up with the energy of your 20s"Claim 7 "Hormones balanced, fat melting away, skin glowing again"Claim 8 "Rejuvenated Body — [implied from the 'pineal gland the agency tried to hide']"# Fake doctor signalAuthor meta "Dr Phill"# phonetic misspelling of "Dr. Phil" (McGraw)Credentials NONE# no medical license, country, or institution citedFDA disc. ABSENT# zero instances of "evaluated by the FDA" in 52KB HTMLEFSA disc. ABSENT# no EU health claims regulation disclosure# Applicable regulations violatedEU Reg. 1924/2006 Art.3# non-authorized nutrition and health claimsEU Dir. 2005/29/EC (UCPD) Art.6# misleading commercial practicesUS Law FTC Act §5# deceptive acts or practices in commerceUS Law 21 CFR Part 101# supplement labeling requirements
EU Regulation 1924/2006 requires that any health claim made on a food supplement must appear on the EFSA-authorized health claims register. Claims about "fluoride damage", "pineal gland activation", "clairvoyance", or "supernatural intuition" do not exist in any authorized register. Each claim constitutes an independent Article 3 violation.
Every layer of the Third Eye Activator operation is built on Brazilian SaaS platforms.
The funnel builder, VSL host, analytics platform, and payment processor are all Brazilian-operated services.
This creates a scenario where an EU consumer, seeing what appears to be an English-language health product,
is actually transacting through a Brazilian payment chain with no EU consumer protection mechanisms in the flow.
The checkout domain bottlesthirdeyeactivator.com was registered on
2026-04-28 — 39 days before unlockyourthirdeye.fun (2026-06-06).
This indicates the checkout infrastructure was prepared before the funnel domain, suggesting a reusable
checkout setup supporting multiple concurrent funnels. CartPanda's checkout headers expose the
visitor's precise geolocation (city, lat/lon, postal code, region, timezone) — collected server-side
before the consumer has agreed to any purchase.
The checkout domain (bottlesthirdeyeactivator.com) predates the funnel domain by 39 days, strongly suggesting a template-based dropship operation — the operator maintains a reusable CartPanda checkout and spins up new AtomicAt funnels targeting different products or geos. Additional funnels using the same CartPanda account likely exist.
While this operation does not involve malware or active C2, it exhibits structured deception techniques
that map to the MITRE ATT&CK framework's social engineering and initial access categories.
The combination of fake social proof, a 46-minute psychological conditioning loop, a fabricated medical
authority persona, and unsupported health claims constitutes a coordinated consumer fraud operation.
EU regulatory exposure is significant: the funnel is accessible from EU countries, processed through
an EU Cloudflare edge (FR1 CDN node), and the Converteai VSL is served from AWS eu-central-1.
EU consumer protection directives apply regardless of the operator's Brazilian location.
# MITRE ATT&CK — Social Engineering / Fraud MappingT1598 Phishing for Information# geo + device data harvested at checkoutT1036 Masquerading# "Dr Phill" fake doctor; CNN ad creativeT1583.001 Acquire Infrastructure: Domains# two Hostinger domains, staggeredT1566.002 Phishing: Spearphishing Link# Instagram ad → token-gated funnel URL# EU regulatory exposureUCPD 2005/29/EC Art.6VIOLATED# misleading commercial practices (fake counter, claims)UCPD Annex I §31 VIOLATED# aggressive practice (46-min sunk-cost gate)EU Reg. 1924/2006 Art.3VIOLATED# 8 non-authorized health claimsFTC Act §5 VIOLATED# deceptive acts in commerce (if US consumers reached)21 CFR Part 101 VIOLATED# no required supplement fact label / FDA disclaimer# Company registration checkRegistered company NONE FOUND# no legal entity behind the productContact info on page NONE# no address, no email, no phoneProduct manufacturer UNDISCLOSED# typical white-label dropship supplement365-day refund claim UNVERIFIABLE# no company to contact, no process described
The "365 Day Money Back Guarantee" is unenforceable: there is no company name, no physical address, no customer service email, and no GDPR-required privacy policy on the site. The guarantee functions solely as a conversion trigger, not as a genuine consumer protection mechanism. Under EU Consumer Rights Directive 2011/83/EU, failure to provide seller identification and contact information before contract conclusion is itself an independently reportable violation.
Finding 7Stolen Joe Rogan Experience Footage + AI Voice Cloning + False Celebrity Endorsement
Frame-by-frame analysis of the 59-minute Converteai VSL stream (888 HLS segments, publicly accessible
at cdn.converteai.net/de140fdb.../6a0e115f.../video_0.m3u8) confirms the video is not original
content. It is an AI-edited compilation built from three source types: (1) stolen real Joe Rogan Experience footage,
(2) footage of an unidentified JRE guest used without consent, and (3) AI-generated cinematic b-roll injected
to support the conspiracy narrative.
Segment 15 (~01:00 runtime): Joe Rogan himself is visible in the lower half of a split-screen
— bald, headphones, white shirt, seated at the JRE mic. The red neon "ROGAN" lettering from the JRE studio
set is visible behind him. A brain MRI with pineal gland highlighted occupies the top half. The AI-dubbed
voiceover says "does look identical" — implying Rogan is discussing the pineal gland supplement. He is not.
His audio has been removed and replaced.
Segments 1, 6, 8, 9 (~00:02 – 00:36 runtime): A gray-haired male JRE guest appears
repeatedly as the apparent "neuroscience authority." The JRE studio is unmistakable: red acoustic panels,
Shure SM7B-style boom mic, professional headphones. This guest's original speech has been stripped and
replaced with an AI voice selling "Third Eye Activator." Their face and credibility are being exploited
without consent.
Segment 7 (~00:28 runtime): A visually distinct AI-generated scene depicts an actor
wearing a "CIA" badge — teal color grading, cinematic staging, stylized props. This is AI video generation
(HeyGen / Sora / Runway-class tool), not real footage. It supports the VSL narrative that "an insider at
the CIA" discovered the pineal gland secret. This AI fabrication is presented seamlessly alongside the stolen
real JRE footage — blurring the line between real and fabricated for viewers.
The original JRE audio throughout the entire VSL has been replaced. The replacement voice uses consistent
AI speech synthesis characteristics: no breath normalization artifacts, flat dynamic range within paragraphs,
and identical cadence across topic shifts. Audio analysis of segment 0 (WAV decode: 44.1kHz stereo, 3.989s)
showed 0% pure silence windows — consistent with AI TTS output which fills silence with low-level noise
rather than true silence.
# VSL frame analysis — source type identification per segmentSegment 0 ~00:00AI VOICE# intro narration — original audio strippedSegment 1 ~00:02STOLEN JRE# gray-haired guest, headphones, subtitle "is going to open"Segment 6 ~00:24STOLEN JRE# same guest, SM7B mic visible, subtitle "didn't believe it either"Segment 7 ~00:28AI-GENERATED# CIA badge actor — not real — subtitle "eye inside the CIA and saw"Segment 15 ~01:00JOE ROGAN VISIBLE# bald, JRE headphones — "ROGAN" neon sign — brain MRI overlaySegment 30 ~02:003D B-ROLL# animated brain glowing — subtitle "a real electromagnetic field"Segment 40 ~02:40B-ROLL# SpaceX rocket — real/AI footage — subtitle "dollar decisions"# Identity violationsJoe Rogan FACE + NAME SIGN VISIBLE# false implied product endorsement — no consent possibleJRE guest FACE + CREDIBILITY USED# identity unknown, likeness exploited as fake expertVoice clone ORIGINAL AUDIO STRIPPED# replaced with AI TTS promoting supplementCIA fabricatAI-GENERATED PERSON# fictional "CIA insider" created in AI video tool# VSL technical signatureResolution 556×720 portrait# portrait crop from original 16:9 JRE widescreenCodec H.264 avc1.4D401F# standard Converteai/HeyGen export profileAudio AAC 44.1kHz stereo# re-encoded from original; AI voice overCreated 2026-05-20 20:03 UTC# 17 days before domain registered (2026-06-06)Last update 2026-08-26 14:07 UTC# active operation — VSL updated yesterday# Applicable lawCopyright 17 U.S.C. §501# Spotify/JRE copyright infringementDMCA 17 U.S.C. §512# notice and takedown to Hostinger + ConverteaiRight of pubState tort law# Joe Rogan likeness used commercially without consentEU DSA Art.17 DSA 2022# illegal content — reporting to platform intermediaries
This finding escalates the severity of Case 019. The VSL is not merely a supplement scam — it is a DMCA-actionable copyright theft of Spotify-owned JRE content, a right-of-publicity violation against Joe Rogan, and an AI deepfake operation that fabricates celebrity endorsements. Spotify's legal team and Rogan's management should be notified independently of the consumer protection complaints. Converteai (the VSL host) and Hostinger (domain registrar) are both DMCA-obligated intermediaries.
The operator migrated from paid Instagram ads to an organic DM bot campaign. Account @33thetruthcode (394,000 followers, 805 posts, follows 1 account: @tryselfevident) posts engagement-bait "third eye activation" videos. Anyone who comments is automatically sent the same funnel link with a fresh JWT — same AtomicAt PID 5268768. Comment counts exceed 3,000 per video, meaning tens of thousands of DMs per post.
# Instagram DM bot — confirmed 2026-08-27Account @33thetruthcodeFollowers 394,000Posts 805Following 1 → @tryselfevident (operator primary account)Comments 3,000+ per video (bot trigger count)DM payload https://www.unlockyourthirdeye.fun/test?mcp_token=<JWT>
# JWT decoded — same publisherpid 5268768 ← identical to original Case 019exp 2026-09-24 (still valid)
# Tactic shiftBefore Paid Instagram ads → /pv VSL directNow Comment-bait videos → automated DM → /test quiz → /pv VSLAdvantage Bypasses Instagram ad review entirely — no ad account needed
A new AtomicAt page at /test was deployed. It impersonates CNN with a verbatim copyright notice and runs a 4-question quiz that always outputs "BLOCKED" — the result is hardcoded regardless of answers. The CTA angle is "Homemade Ritual Used by Former CIA Agents." Users then click through to the original VSL at /pv.
The operator uses two separate media brands (CNN and FOX NEWS) in the same page to appear credible across partisan lines. CNN for visual trust, FOX NEWS in the author meta. This is deliberate multi-brand impersonation. UCPD Annex I §22 + EU Trademark Regulation 2017/1001 Art. 9.
Update CVSL Stream Still HTTP 200 — New Player ID, Same M3U8, Updated 2026-08-20
The original VSL stream has not been taken down. The /pv page now loads a rotated Converteai player ID (6a1f36599775247f40d90ac5) under the same account UUID de140fdb. The M3U8 is unchanged and returns HTTP 200 with open CORS. Page last-modified 2026-08-20 — the operator actively updated it after Case 019 was filed.
# /pv page — updated post-Case 019Server BunnyCDN-FR1-1074 (France)Last-Modified 2026-08-20 (updated AFTER Case 019 published)Account UUID de140fdb-281f-47cb-847f-0ad61ba607e8 (unchanged)Player ID (new) 6a1f36599775247f40d90ac5 (rotated)M3U8 stream cdn.converteai.net/de140fdb-.../6a0e115f.../main.m3u8HTTP Status 200 OK — no auth, CORS *
Reporting
CCB / SafeOnWeb Belgium
suspicious@safeonweb.be
Belgian consumers reached via Instagram ads (cid=60613977618). Deceptive health supplement funnel with fabricated social proof counter, fake doctor "Dr Phill", 8 unauthorized health claims, and no contact information or GDPR privacy policy. Checkout via Brazilian CartPanda platform.
FTC — Federal Trade Commission (US)
reportfraud.ftc.gov
Deceptive supplement advertising violating FTC Act §5: fabricated viewer counter ("558 Watching Now"), fake doctor persona "Dr Phill", no FDA disclaimer, unsubstantiated health claims including "clairvoyance", "supernatural intuition", and "fluoride brain damage". Pricing $89–$294. No company contact information.
Hostinger Operations UAB — Abuse
abuse@hostinger.com · abuse-tracker@hostinger.com
Two domains registered through Hostinger: unlockyourthirdeye.fun (2026-06-06) and bottlesthirdeyeactivator.com (2026-04-28). Both used in a deceptive consumer health fraud funnel with unauthorized medical claims targeting EU consumers. Checkout domain redirects to CartPanda payment processor. Request domain suspension.
Meta / Instagram — Ad Policy
instagram.com/support (via report flow) · advertiser ID cid=60613977618
Active Instagram ad campaign (campaign ID 60613977618) driving traffic to pseudoscientific supplement funnel. Violates Meta Advertising Standards §4 (health and wellness — unsubstantiated efficacy claims), §14 (deceptive content). Fake CNN-style creative implied in internal page label "IG - PAGINA DE VENDA CNN".
Spotify AB / JRE Legal — DMCA + False Endorsement
copyright@spotify.com · legal@spotify.com
Multiple segments of the Converteai VSL (HLS stream cdn.converteai.net/de140fdb-281f-47cb-847f-0ad61ba607e8/6a0e115f3882ab3cd0666f43/video_0.m3u8) contain stolen Joe Rogan Experience footage. Segment 15 shows Joe Rogan's face and the "ROGAN" neon studio sign. All original audio has been stripped and replaced with an AI-dubbed voice promoting "Third Eye Activator" supplement at $89–$294 per order. This constitutes copyright infringement (Spotify exclusive JRE rights) and a right-of-publicity violation creating false implied endorsement. DMCA takedown request: Hostinger UAB (abuse@hostinger.com) for domain, Converteai (converteai.net) for VSL hosting.
DGCCRF France — Consumer Fraud (EU market)
signal.conso.gouv.fr
French consumers targeted (CDN edge FR1, geo-detection confirmed). Funnel violates EU Regulation 1924/2006 (8 unauthorized health claims), UCPD 2005/29/EC Art.6 (misleading practices), and Consumer Rights Directive 2011/83/EU (no seller identification). Requesting investigation and referral to relevant national market surveillance authority.
Investigation Method
Phase 1HTTP probe on unlockyourthirdeye.fun: root returns 404 (token-gated), pv path with mcp_token returns HTTP 200. Server identified as BunnyCDN-FR1 (CDN77, AS60068). Full HTML downloaded (52KB) to /tmp/osint-scratchpad/019/index.html.
Phase 2WHOIS: domain registered 2026-06-06 via Hostinger UAB. CNAME: www → unlock5398.b-cdn.net → 143.244.56.53 (CDN77). No A record on apex. No MX, no TXT/SPF — email-free operation. Subdomain enumeration via HackerTarget: news.unlockyourthirdeye.fun (172.66.40.99 Cloudflare — 403), u.unlockyourthirdeye.fun (40.160.64.183 OVH FR — disabled click tracker).
Phase 3HTML static analysis: extracted all script src URLs, inline scripts, and external domain references. Identified AtomicAt (Brazilian funnel builder), Converteai (Brazilian VSL host), UTMify (Brazilian analytics), CartPanda (Brazilian checkout), and Lovable AI assets. No tracking pixels (Meta Pixel, GA4) detected — UTMify handles all attribution.
Phase 4JavaScript analysis: LkuvYh0444359.js (4,818 bytes) downloaded and fully read. Found: (1) internal page name "PAGINA DE VENDA CNN" confirming PT-BR operators; (2) AtomicAt publisher ID 5268768; (3) fake viewer counter PRNG between 400–700; (4) 2790-second VSL gate; (5) localStorage persistence of gate bypass state.
Phase 5mcp_token JWT decoded (base64): {pid:5268768, sid:1401923890, ax:"4bcc5088...", ts:1787782470, exp:1790201670}. Token expired 2026-08-24 but server accepts it — no server-side expiry validation. Converteai player script fetched (12KB, CloudFront eu-central-1, updated 2026-08-26 14:07 UTC). VSL account UUID and video M3U8 URL extracted.
Phase 6Checkout domain investigation: bottlesthirdeyeactivator.com registered 2026-04-28 via Hostinger — 39 days before funnel domain. Resolves to 104.16.99.51 / 104.16.100.51 (Cloudflare). Three checkout shortlinks (ckt/4OZo29, ckt/BnBRWA, ckt/7OG7p4) expose CartPanda product IDs 209978389, 209978385, 209974910. CartPanda response headers include full visitor geo-detection (city, lat, lon, postal, region, timezone).
Phase 7Health claims extracted from page text. Confirmed zero FDA disclaimer in full 52KB HTML. Author meta tag "Dr Phill" found. Company registration search performed — no legal entity found for "Third Eye Activator" as a registered business. Regulatory mapping completed: EU Reg. 1924/2006, UCPD 2005/29/EC, FTC Act §5, 21 CFR Part 101, Consumer Rights Directive 2011/83/EU.
IOC Table
Type
Indicator
Context
Domain
unlockyourthirdeye.fun
Primary funnel — BunnyCDN AS60068 — LIVE HTTP 200 (token-gated)
Domain
bottlesthirdeyeactivator.com
Checkout domain — Cloudflare — CartPanda — created 2026-04-28
Update DHostinger Takedown Confirmed + Real JRE Source Videos Identified
Hostinger Abuse Team Response (2026-08-29): "Following our review, we have taken action in relation to the reported content and/or activity in accordance with our Terms of Service and applicable laws. The listed service(s) have been suspended."
Through forensic intelligence analysis, the real source material has been identified. The scammers stitched together footage from two completely different episodes of The Joe Rogan Experience, stripped all original audio, and overlaid an AI-dubbed voice actor script.
JRE #2262Dr. Mark Gordon — TBI/Cortisol/Brain Inflammation (Aired: Jan 24, 2025)
Episode The Joe Rogan Experience #2262Guest Dr. Mark Gordon — interventional endocrinologistAired January 24, 2025Topic Traumatic Brain Injury (TBI), PTSD, hormone replacement therapyWhat he said Brain inflammation, cortisol spikes, neuroprotective chemicalsWhat scam said "Third Eye Activator", "pineal gland supplement" — FABRICATEDFootage used Grey-haired guest in Shure SM7B mic vs red JRE acoustic panelsYouTube https://www.youtube.com/watch?v=WZDckDvN4sASpotify https://open.spotify.com/episode/7jj8nutencDESfUzmZnhVQ
JRE #2111Katt Williams — Fluoride/Pineal Gland Conspiracy (Aired: Feb 29, 2024)
Episode The Joe Rogan Experience #2111Guest Katt Williams — comedianAired February 29, 2024Topic Fluoride conspiracy theory, pineal gland calcificationWhat he said "Government uses fluoride to calcify the pineal gland"Joe showed Brain diagrams on studio monitor — pulled up to examine claimFootage used Joe at desk (bald, headphones, red ROGAN neon sign, brain MRI diagram)Why scammers chose it Perfect visual match to their pre-written "pineal gland" narrativePodcast link https://podcasts.happyscribe.com/the-joe-rogan-experience/2111-katt-williamsThe Root report https://www.theroot.com/heres-how-katt-williams-ruined-all-his-credibility-on-t-1851300407
How it was stitched: The scammers pulled the Dr. Gordon TBI clip (credible medical expert appearance) and overlaid it with their own AI-dubbed script falsely claiming he was endorsing a pineal gland supplement. They then inserted the Joe Rogan + brain diagram visual from the Katt Williams episode to reinforce the conspiracy angle. The result: deepfaked testimony from a real doctor on a real podcast discussing something he never mentioned.
AI B-RollCIA Clips Are 100% AI-Generated (Runway / Sora)
The highly stylized teal-color-graded cinematic clips of the "CIA insider" character do not appear on any real podcast. These are entirely synthetic b-roll created with tools like Runway AI or OpenAI Sora. The scammers built a fictional "CIA insider reveals suppressed technology" backstory using purely generated video.
Evidence — Deepfake vs. Real Sources
Real JRE Episodes (Not Endorsements)
✓ JRE #2262 — Dr. Mark Gordon (Jan 24, 2025)
Interventional endocrinologist discussing Traumatic Brain Injury (TBI) treatment, cortisol, and neuroprotective chemicals. Does not mention pineal gland supplements. Scammers used his face with fake audio.
Comedian makes conspiracy claim about fluoride. Joe pulls up brain diagrams to examine the claim. Not an endorsement — just curiosity. Scammers stole this visual moment to reinforce their narrative.
Step 1: Scammers extracted Dr. Mark Gordon's face/voice segment from JRE #2262 (the medical expert). Step 2: Stripped original audio (TBI discussion) completely. Step 3: Overlaid AI-cloned voice saying "Third Eye Activator supplement cures pineal gland blockage" — words Dr. Gordon never spoke. Step 4: Inserted Joe Rogan + brain diagram visuals from JRE #2111 (Katt Williams episode) to reinforce conspiracy angle. Step 5: Added synthetic CIA b-roll (100% AI-generated via Runway/Sora). Result: Fake "testimony" from a real doctor on a real podcast about something he never mentioned.
⚠ EVIDENCE — Converteai HLS Stream (The Actual Deepfake Video)cdn.converteai.net · account de140fdb · 888 segments · 59m 15s · passive observation only
VSL gate: Purchase buttons hidden for first 46m 30s (delaySeconds=2790) ·
Watch for: Joe Rogan visible ~01:00 · JRE guest footage ~00:02–00:36 · AI CIA b-roll ~00:28 ·
Created: 2026-05-20 · Last modified: 2026-08-26 14:07 UTC
Figure 1 — mcp_token JWT payload decoded: pid=5268768 (AtomicAt operator), exp=1790201670 (expired, not validated). Internal page name "🟠 IG - PAGINA DE VENDA CNN - THIRD EYE ACTIVATOR" leaked in JS — confirms Portuguese-speaking Brazilian operator running Instagram ad funnel with fake CNN-style creative.
Figure 2 — Full Brazilian SaaS stack: AtomicAt funnel builder → BunnyCDN AS60068 → bottlesthirdeyeactivator.com (Hostinger, created 39 days earlier) → CartPanda checkout (orders.cartpanda.com, Cloudflare). Converteai VSL player last modified 2026-08-26 14:07 UTC. No MX, no SPF on either domain.
Figure 3 — Forensic frame extraction from the Converteai HLS stream. LEFT: Segment 15 — Joe Rogan visible (bald, white shirt, JRE headphones, "ROGAN" neon sign). CENTER: Segment 6 — Unidentified JRE guest used as fake expert (gray hair, glasses, SM7B mic, JRE acoustic panels). RIGHT: Segment 7 — AI-generated CIA agent b-roll (teal color grade, stylized CIA badge actor) supporting the pineal conspiracy narrative. All original JRE audio has been stripped and replaced with AI-dubbed supplement promotion.