Your Partner in Scam Prevention — Protecting What Matters Most
CyberAI is an innovative CyberTech startup in the cybersecurity industry using AI to power and strengthen your cybersecurity defenses to reduce your risks against consumer and business fraud.
Our solutions provide you with the tools needed to become your own cyberhero. Reduce your risk against fraudulent and scamming activities within the B2C and B2B markets of today’s digital economy.
Is a family of browser extensions for consumers and small businesses. These extensions are programmed to provide the best front line of defense to lower your risks against fraud and scams!
What it involves:
Proactive identification of scams through a website trust score
Cyber Ollie’s book is packed with tips and tricks to spot and avoid online AND offline frauds. Written in an easy-to-understand voice, this guide is perfect for anyone who wants to learn important life lessons on how to stay safe in today’s digital age.
What it includes:
Thorough review of current fraud landscape
Psychological pitfalls and how to avoid them
How to secure yourself and your family from fraud and scams
Our video training series, featuring Cyber Ollie, teaches small- and medium- sized business owners all about online safety in a fun and engaging way.
These videos are perfect for schools and businesses that want to boost their cyber awareness concerning phishing emails, fake social media profiles, and Business Email Compromise (BEC).
What it involves:
Boost cyber awareness regarding fraud and scams
Common scams employees fall victim to and how to avoid
Common ways attackers can get into your systems and how to avoid
The 2024 Association of Certified Fraud Examiners (ACFE) Report to the Nations shows organizations lose approximately 5% of revenue to business fraud each year. The ACFE estimates 2023 losses at $3.1 billion.
We are here to help!
Do you know what cybercrime is?
Cybercrime can include damage and destruction of data, stolen money, lost productivity, theft of Intellectual Property (IP) or Personal Identifiable Information (PII) and …
Fraud is the use of one’s job by a person(s) for individual enrichment through the deliberate misuse/misapplication of an individual’s/business’s resources or assets.
Jeff Pledger is the blind CEO of CyberAI. As someone who “sees things differently,” he is passionate about using technology to educate and protect people and small businesses from becoming victims of the ever-growing threat from fraud and scams. Jeff’s unique vision drives CyberAI to innovate and protect in the digital world.
Suzanne M. Pledger
CMO
Suzanne Pledger is the CMO with 25+ years experience in Finance, Marketing, and Credit. She created Cyber Ollie, an animated online cyberhero and real-life schnoodle to help educate people to become their own cyberhero. Suzanne’s passion for fintech innovation inspires her marketing and financial efforts for CyberAI.
Kyle Rose
VP OF BUSINESS DEVELOPMENT
Kyle Rose is the VP of Business Development and a serial entrepreneur. He uses his media background to warn about scams. His journey into fraud prevention became personal when friends lost thousands to a crypto scam and a co-worker fell for a fake job offer through Indeed. He’s grateful to be part of an industry that makes a real difference.
jQuery(document).ready(function($) {
// Fix the wrapper - remove the bad instruction label
$('.e-n-tabs').attr('aria-label', 'Product tabs. Use Arrow keys to switch between tabs. Press Tab to move into the selected tab content, or Shift+Tab to move back.');
// Ensure the tablist has a clean accessible label
$('.e-n-tabs-heading[role="tablist"]').attr('aria-label', 'Products');
// Fix tab panel associations and ensure panels are properly labelled
$('.e-n-tab-title').each(function() {
var panelId = $(this).attr('aria-controls');
var tabId = $(this).attr('id');
$('#' + panelId).attr({
'role': 'tabpanel',
'aria-labelledby': tabId,
'tabindex': '0'
});
});
// Arrow keys navigate tabs, Tab key exits the tablist entirely
$(document).on('keydown', '.e-n-tab-title', function(e) {
var $tabs = $('.e-n-tab-title');
var currentIndex = $tabs.index(this);
if (e.key === 'ArrowRight' || e.key === 'ArrowDown') {
e.preventDefault();
var $next = $tabs.eq(currentIndex + 1);
if ($next.length) $next.focus().click();
}
if (e.key === 'ArrowLeft' || e.key === 'ArrowUp') {
e.preventDefault();
var $prev = $tabs.eq(currentIndex - 1);
if ($prev.length) $prev.focus().click();
}
if (e.key === 'Tab' && !e.shiftKey) {
var $activePanel = $('.e-n-tabs-content .e-active');
if ($activePanel.length) {
e.preventDefault();
$activePanel.focus();
}
}
if (e.key === 'Tab' && e.shiftKey) {
// Let browser handle Shift+Tab naturally out of the tablist
}
if (e.key === 'Escape') {
// Escape moves focus back to the tablist container, then user can Tab out
$(this).closest('.e-n-tabs').find('.e-n-tab-title[aria-selected="true"]').focus();
}
});
// From inside a panel, Shift+Tab goes back to the active tab
$(document).on('keydown', '.e-n-tabs-content .e-active', function(e) {
if (e.key === 'Tab' && e.shiftKey) {
e.preventDefault();
$('.e-n-tab-title[aria-selected="true"]').focus();
}
});
});