SPECIAL INTERNAL AUDIT MONTH 2026 | LIMITED RELEASE LEADERSHIP BRIEF

The Future of Audit Leadership Brief

Five Questions Every Audit Leader Should Be Asking Now

A complimentary executive brief for Chief Audit Executives, Audit Committee members and future-focused Audit, Risk and Governance leaders.Created by Rania Bejjani, Founder & CEO of RB Advisory & Consultancy, this brief draws on her global advisory work with Boards, Chief Audit Executives and leadership teams, her experience as a three-time former Chief Audit & Risk Executive, and strategic conversations on Impact Legacy with Rania, including fellow 2025 Audit Beacon Award recipients.

Inside the brief
You will explore:
- Five questions every audit leader should be asking now- Why Internal Audit must move from assurance provider to strategic partner- How AI increases the premium on human judgement- What leading functions are rethinking around influence, talent and trust- Three practical moves to consider now


Listen to 🎙️ Impact Legacy with RaniaCurated global conversations on leadership, influence, courage and lasting impact, inspired by the perspectives of Board members, executives, and change-makers across Governance, Risk and Internal Audit.Impact Legacy with Rania brings together Board members, executives and change-makers from across the globe to share inspiring human stories and practical wisdom on trust, influence, courageous leadership and what it takes to stand out, succeed and forge lasting legacy in a changing world, including AI.Subscribe on YouTube, Spotify, Apple Podcasts and Amazon Music:


RB Advisory and Consultancy

Join 4,000+ Board Members and Leaders in Audit, Risk & Governance globally

No spam. Just clear, actionable thinking.

Subscribe to my Newsletter

* indicates required
(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[5]='MMERGE5';ftypes[5]='text';fnames[6]='COMPANY';ftypes[6]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[4]='PHONE';ftypes[4]='phone';fnames[3]='CITY';ftypes[3]='text';}(jQuery));var $mcj = jQuery.noConflict(true); // SMS Phone Multi-Country Functionality if(!window.MC) { window.MC = {}; } window.MC.smsPhoneData = { defaultCountryCode: 'GB', programs: [], smsProgramDataCountryNames: [] }; function getCountryUnicodeFlag(countryCode) { return countryCode.toUpperCase().replace(/./g, (char) => String.fromCodePoint(char.charCodeAt(0) + 127397)) }; // HTML sanitization function to prevent XSS function sanitizeHtml(str) { if (typeof str !== 'string') return ''; return str .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"') .replace(/'/g, ''') .replace(/\//g, '/'); } // URL sanitization function to prevent javascript: and data: URLs function sanitizeUrl(url) { if (typeof url !== 'string') return ''; const trimmedUrl = url.trim().toLowerCase(); if (trimmedUrl.startsWith('javascript:') || trimmedUrl.startsWith('data:') || trimmedUrl.startsWith('vbscript:')) { return '#'; } return url; } const getBrowserLanguage = () => { if (!window?.navigator?.language?.split('-')[1]) { return window?.navigator?.language?.toUpperCase(); } return window?.navigator?.language?.split('-')[1]; }; const getBrowserLanguageCode = () => { const lang = window?.navigator?.language; if (!lang) { return 'en'; } return lang.split('-')[0].toLowerCase(); }; function getSmsProgramForCountryAndLanguage(smsProgramData, countryCode, languageCode) { if (!smsProgramData || smsProgramData.length === 0 || !countryCode) { return null; } var entriesForCountry = smsProgramData.filter( function(p) { return p?.countryCode === countryCode; } ); if (entriesForCountry.length === 0) { return null; } if (entriesForCountry.length === 1) { return entriesForCountry[0]; } var langLower = languageCode.toLowerCase(); var exactMatch = entriesForCountry.find( function(p) { return p?.language?.toLowerCase() === langLower; } ); if (exactMatch) { return exactMatch; } var englishFallback = entriesForCountry.find( function(p) { return p?.language?.toLowerCase() === 'en'; } ); return englishFallback || entriesForCountry[0]; } function getDefaultCountryProgram(defaultCountryCode, smsProgramData) { if (!smsProgramData || smsProgramData.length === 0) { return null; } var browserCountryCode = getBrowserLanguage(); var browserLangCode = getBrowserLanguageCode(); if (browserCountryCode) { var match = getSmsProgramForCountryAndLanguage(smsProgramData, browserCountryCode, browserLangCode); if (match) { return match; } } if (defaultCountryCode) { var match = getSmsProgramForCountryAndLanguage(smsProgramData, defaultCountryCode, browserLangCode); if (match) { return match; } } return smsProgramData[0]; } function updateSmsLegalText(countryCode, fieldName) { if (!countryCode || !fieldName) { return; } var programs = window?.MC?.smsPhoneData?.programs; if (!programs || !Array.isArray(programs)) { return; } var browserLangCode = getBrowserLanguageCode(); var program = getSmsProgramForCountryAndLanguage(programs, countryCode, browserLangCode); if (!program || !program.requiredTemplate) { return; } var smsConsentHtmlRenderingFixEnabled = true; const legalTextElement = document.querySelector('#legal-text-' + fieldName); if (!legalTextElement) { return; } const divRegex = new RegExp(']*>', 'gi'); const blockWrapperRegex = new RegExp(']*>', 'gi'); const fullAnchorRegex = new RegExp('', 'g'); const anchorRegex = new RegExp('(.*?)'); const template = smsConsentHtmlRenderingFixEnabled ? program.requiredTemplate .replace(/<\/p>\s*]*>/gi, ' ') .replace(blockWrapperRegex, '') : program.requiredTemplate.replace(divRegex, ''); legalTextElement.textContent = ''; const parts = template.split(/(.*?<\/a>)/g); parts.forEach(function(part) { if (!part) { return; } const anchorMatch = part.match(/(.+?)<\/a>/); if (anchorMatch) { const linkElement = document.createElement('a'); linkElement.href = sanitizeUrl(anchorMatch[1]); linkElement.target = anchorMatch[2] ? sanitizeHtml(anchorMatch[2]) : '_blank'; linkElement.rel = 'noopener noreferrer'; linkElement.textContent = sanitizeHtml(anchorMatch[3]); legalTextElement.appendChild(linkElement); } else { legalTextElement.appendChild(document.createTextNode(part)); } }); } function generateDropdownOptions(smsProgramData) { if (!smsProgramData || smsProgramData.length === 0) { return ''; } var programs = true ? smsProgramData.filter(function(p, i, arr) { return arr.findIndex(function(q) { return q.countryCode === p.countryCode; }) === i; }) : smsProgramData; return programs.map(program => { const flag = getCountryUnicodeFlag(program.countryCode); const countryName = getCountryName(program.countryCode); const callingCode = program.countryCallingCode || ''; // Sanitize all values to prevent XSS const sanitizedCountryCode = sanitizeHtml(program.countryCode || ''); const sanitizedCountryName = sanitizeHtml(countryName || ''); const sanitizedCallingCode = sanitizeHtml(callingCode || ''); return ''; }).join(''); } function getCountryName(countryCode) { if (window.MC?.smsPhoneData?.smsProgramDataCountryNames && Array.isArray(window.MC.smsPhoneData.smsProgramDataCountryNames)) { for (let i = 0; i < window.MC.smsPhoneData.smsProgramDataCountryNames.length; i++) { if (window.MC.smsPhoneData.smsProgramDataCountryNames[i].code === countryCode) { return window.MC.smsPhoneData.smsProgramDataCountryNames[i].name; } } } return countryCode; } function getDefaultPlaceholder(countryCode) { if (!countryCode || typeof countryCode !== 'string') { return '+1 000 000 0000'; // Default US placeholder } var mockPlaceholders = [ { countryCode: 'US', placeholder: '+1 000 000 0000', helpText: 'Include the US country code +1 before the phone number', }, { countryCode: 'GB', placeholder: '+44 0000 000000', helpText: 'Include the GB country code +44 before the phone number', }, { countryCode: 'CA', placeholder: '+1 000 000 0000', helpText: 'Include the CA country code +1 before the phone number', }, { countryCode: 'AU', placeholder: '+61 000 000 000', helpText: 'Include the AU country code +61 before the phone number', }, { countryCode: 'DE', placeholder: '+49 000 0000000', helpText: 'Fügen Sie vor der Telefonnummer die DE-Ländervorwahl +49 ein', }, { countryCode: 'FR', placeholder: '+33 0 00 00 00 00', helpText: 'Incluez le code pays FR +33 avant le numéro de téléphone', }, { countryCode: 'ES', placeholder: '+34 000 000 000', helpText: 'Incluya el código de país ES +34 antes del número de teléfono', }, { countryCode: 'NL', placeholder: '+31 0 00000000', helpText: 'Voeg de NL-landcode +31 toe vóór het telefoonnummer', }, { countryCode: 'BE', placeholder: '+32 000 00 00 00', helpText: 'Incluez le code pays BE +32 avant le numéro de téléphone', }, { countryCode: 'CH', placeholder: '+41 00 000 00 00', helpText: 'Fügen Sie vor der Telefonnummer die CH-Ländervorwahl +41 ein', }, { countryCode: 'AT', placeholder: '+43 000 000 0000', helpText: 'Fügen Sie vor der Telefonnummer die AT-Ländervorwahl +43 ein', }, { countryCode: 'IE', placeholder: '+353 00 000 0000', helpText: 'Include the IE country code +353 before the phone number', }, { countryCode: 'IT', placeholder: '+39 000 000 0000', helpText: 'Includere il prefisso internazionale IT +39 prima del numero di telefono', }, { countryCode: 'NO', placeholder: '+47 000 00 000', helpText: 'Inkluder NO landskode +47 før telefonnummeret', }, { countryCode: 'SE', placeholder: '+46 00 000 00 00', helpText: 'Inkludera SE landskod +46 före telefonnumret', }, { countryCode: 'DK', placeholder: '+45 00 00 00 00', helpText: 'Inkluder DK landekode +45 før telefonnummeret', }, { countryCode: 'FI', placeholder: '+358 00 000 0000', helpText: 'Sisällytä FI-maakoodi +358 ennen puhelinnumeroa', }, { countryCode: 'EE', placeholder: '+372 0000 0000', helpText: 'Lisage EE riigikood +372 telefoninumbri ette', }, { countryCode: 'PL', placeholder: '+48 000 000 000', helpText: 'Podaj numer kierunkowy PL +48 przed numerem telefonu', }, { countryCode: 'SK', placeholder: '+421 000 000 000', helpText: 'Pred telefónne číslo uveďte kód krajiny SK +421', }, { countryCode: 'LV', placeholder: '+371 0000 0000', helpText: 'Iekļaujiet LV valsts kodu +371 pirms tālruņa numura', }, { countryCode: 'LT', placeholder: '+370 0000 0000', helpText: 'Įtraukite LT šalies kodą +370 prieš telefono numerį', }, { countryCode: 'GR', placeholder: '+30 000 000 0000', helpText: 'Συμπεριλάβετε τον κωδικό χώρας GR +30 πριν από τον αριθμό τηλεφώνου', }, { countryCode: 'PT', placeholder: '+351 000 000 000', helpText: 'Inclua o código de país PT +351 antes do número de telefone', }, { countryCode: 'HR', placeholder: '+385 00 000 0000', helpText: 'Uključite HR pozivni broj države +385 prije telefonskog broja', }, { countryCode: 'SI', placeholder: '+386 00 000 000', helpText: 'Vključite SI kodo države +386 pred telefonsko številko', }, { countryCode: 'IS', placeholder: '+354 000 0000', helpText: 'Láttu IS landsnúmer +354 fylgja á undan símanúmerinu', }, { countryCode: 'LU', placeholder: '+352 000 000 000', helpText: 'Incluez le code pays LU +352 avant le numéro de téléphone', }, { countryCode: 'MC', placeholder: '+377 00 00 00 00', helpText: 'Incluez le code pays MC +377 avant le numéro de téléphone', }, { countryCode: 'AD', placeholder: '+376 000 000', helpText: 'Incloeu el codi de país AD +376 abans del número de telèfon', }, { countryCode: 'JE', placeholder: '+44 0000 000000', helpText: 'Include the JE country code +44 before the phone number', }, { countryCode: 'IM', placeholder: '+44 0000 000000', helpText: 'Include the IM country code +44 before the phone number', }, { countryCode: 'GG', placeholder: '+44 0000 000000', helpText: 'Include the GG country code +44 before the phone number', }, { countryCode: 'AL', placeholder: '+355 00 000 0000', helpText: 'Përfshini kodin e vendit AL +355 para numrit të telefonit', }, { countryCode: 'SM', placeholder: '+378 0000 000000', helpText: 'Includere il prefisso internazionale SM +378 prima del numero di telefono', }, { countryCode: 'FO', placeholder: '+298 000000', helpText: 'Inkluder FO landekode +298 før telefonnummeret', }, { countryCode: 'MT', placeholder: '+356 0000 0000', helpText: 'Include the MT country code +356 before the phone number', }, { countryCode: 'LI', placeholder: '+423 000 0000', helpText: 'Fügen Sie vor der Telefonnummer die LI-Ländervorwahl +423 ein', }, { countryCode: 'GI', placeholder: '

Terms and Privacy

By clicking "subscribe" you consent to receive newsletter updates via email.

Terms of UseBy subscribing to our newsletter or registering for our events, you agree to the following terms.Purpose of the Service
We provide insights, updates, and information related to our webinars, services, and publications. Our content is for informational purposes only.
Use of Content
All emails, materials, and resources we share are owned by us. You may not copy, distribute, or republish our content without prior permission.
Subscriber Responsibilities
You agree to provide accurate information when subscribing or registering. You also agree not to misuse our content or services in any unlawful or harmful way.
No Guarantees
While we aim to deliver high‑quality insights, we do not guarantee the accuracy, completeness, or specific outcomes resulting from our content.
Unsubscribing
You may unsubscribe at any time using the link included in our emails. Once unsubscribed, you will no longer receive communications from us.
Limitation of Liability
We are not liable for any losses or damages arising from your use of our content, website, or services.
Changes to These Terms
We may update these Terms from time to time. Continued use of our services indicates acceptance of the latest version.
Contact Us
If you have questions about these Terms, please contact us at:
[email protected]


Privacy Policy:
We value your privacy and are committed to protecting your personal information. This policy explains how we collect, use, and safeguard your data.
Information We Collect:
Email addresses provided through our newsletter signup form or event registration.
Optional details you may share (e.g., name, company, role).
How We Use Your Information:
To send you insights, offers, and updates about our webinars and services.
To manage event registrations and provide confirmation details.
To improve our communications and offerings.
Legal Basis for Processing:
We process your data based on your explicit consent (GDPR Article 6(1)(a)).
You may withdraw consent at any time by unsubscribing from our emails.
Sharing of Information:
We do not sell or share your personal data with third parties.
We may use trusted service providers (e.g., Mailchimp, Zoom, Stripe) to deliver services securely.
Data Retention:
We retain your information only as long as necessary to provide our services or until you unsubscribe.
Your Rights:
Under GDPR, you have the right to:
Access the data we hold about you.
Request correction or deletion of your data.
Withdraw consent at any time.
Contact Us:
If you have questions about this policy or wish to exercise your rights, please contact us at: [email protected]