// HomeExtra.jsx — Team Certifications + Hall of Fame sections for the homepage. const CERTS = [ { a: 'OSCP', n: 'Offensive Security Certified Professional' }, { a: 'OSEP', n: 'Experienced Penetration Tester' }, { a: 'OSWE', n: 'Web Expert' }, { a: 'OSED', n: 'Exploit Developer' }, { a: 'CRTO', n: 'Certified Red Team Operator' }, { a: 'CRTL', n: 'Certified Red Team Lead' }, { a: 'GXPN', n: 'GIAC Exploit Researcher' }, { a: 'GWAPT', n: 'GIAC Web App Pen Tester' }, { a: 'GMOB', n: 'GIAC Mobile Device Analyst' }, { a: 'CCSP', n: 'Certified Cloud Security Pro' }, { a: 'CREST CCT', n: 'CREST Certified Tester' }, { a: 'CISSP', n: 'Information Systems Security Pro' }, ]; const Certifications = () => (

Team certifications

Certifications you can verify

Every member of our team holds recognized offensive security certifications, funded by us and kept current.

{[{ v: String(CERTS.length), l: 'Certifications held' }, { v: '100%', l: 'OSCP or higher' }, { v: 'Quarterly', l: 'Refreshed' }].map(s => (
{s.v}
{s.l}
))}
{CERTS.map(c => (
{ e.currentTarget.style.borderColor = '#34343a'; e.currentTarget.style.background = '#141516'; }} onMouseLeave={e => { e.currentTarget.style.borderColor = '#23252a'; e.currentTarget.style.background = '#0f1011'; }}>
{c.a}
{c.n}
))}
); const HALL = ['Google', 'Microsoft', 'Apple', 'Amazon', 'Meta', 'Adobe', 'Shopify', 'GitLab', 'Mozilla', 'Atlassian', 'PayPal', 'Spotify', 'Uber', 'Cloudflare', 'Netflix', 'Slack', 'Dropbox', 'Stripe']; const HallOfFame = () => { const useVP = window.useIsMobile || (() => false); const narrow = useVP(600); const mid = useVP(1080); // 18 names divide evenly into 6, 3, or 2 columns, so the last row is always full const cols = narrow ? 2 : mid ? 3 : 6; return (

Hall of fame

Recognized by leading technology companies

Members of our team have been recognized by the security programs of some of the largest technology companies for responsibly reporting vulnerabilities in their products.

{HALL.map(name => (
e.currentTarget.style.background = '#141516'} onMouseLeave={e => e.currentTarget.style.background = '#0f1011'}> e.currentTarget.style.color = '#f7f8f8'} onMouseLeave={e => e.currentTarget.style.color = '#8a8f98'}>{name}
))}

Recognition comes from our team's independent disclosure work and does not imply endorsement by or affiliation with the named companies.

); }; Object.assign(window, { Certifications, HallOfFame });