AO-labs
LEADING SAAS and AI SECURITY RESEARCH
An elite team of security researchers dedicated to uncovering and neutralizing SaaS and AI vulnerabilities and unknown threats before attackers do.
BSidesSLC 2025 – Speedrun Cybersecurity with Al – Hack Faster with Mike Spicer
LEADING SAAS and AI SECURITY RESEARCH
An elite team of security researchers dedicated to uncovering and neutralizing SaaS and AI vulnerabilities and unknown threats before attackers do. We publish CVEs and share remediation guidance to contribute to a more secure world.
The SaaS and AI threat landscape are continuously evolving.
Your security posture today is not tomorrow’s reality. AppOmni Labs is dedicated to uncovering vulnerabilities, potential misconfigurations, and exposed attack vectors in SaaS and AI applications.
Our specialties
Detect emerging threats and flag malicious TTPs
Disclose SaaS vulnerabilities and publish CVEs
Develop defensive mechanisms and tools
Share industry findings in The State of SaaS Security Report
How we do it
Our security researchers surface insights, develop defensive tools, and provide detailed remediation guidance to help organizations secure their environments against evolving and unknown threats.
How AppOmni Labs secures your most critical systems and data
An enterprise’s critical systems and data are the core of operations for customers and employees. AppOmni Labs is built with an offensive research directive to protect SaaS and AI systems, and the data for enterprises and industries.
How the AppOmni SaaS and AI Security Platform Works
AppOmni’s agentless architecture delivers continuous SaaS security monitoring with timely insights and remediation guidelines to help you prevent data breaches. The platform provides a central control point for all managed SaaS applications in your organization.
Latest Resources
const taxonomySelects = form.querySelectorAll(‘.taxonomy-filter-select’);
if (!taxonomySelects.length) return;
// Detect if we’re on a pretty URL like /article-type/blog/
const currentPath = window.location.pathname;
const articleTypeMatch = currentPath.match(//article-type/([^/]+)/?/);
const currentArticleType = articleTypeMatch ? articleTypeMatch[1] : null;
// When ANY taxonomy filter changes, reload page with updated filters
taxonomySelects.forEach(function(select) {
select.addEventListener(‘change’, function() {
// Build URL with updated params
const currentUrl = window.location.pathname;
const params = new URLSearchParams(window.location.search);
// Update the changed parameter
const selectName = select.getAttribute(‘name’);
const selectValue = select.value;
if (selectValue) {
params.set(selectName, selectValue);
} else {
params.delete(selectName);
}
// If we’re on /article-type/XXX/, make sure article_type is in params
if (currentArticleType && selectName !== ‘article_type’) {
// Get the current article_type select value
const articleTypeSelect = form.querySelector(‘select[name=”article_type”]’);
if (articleTypeSelect && articleTypeSelect.value) {
params.set(‘article_type’, articleTypeSelect.value);
} else {
// Use the one from the URL if select is empty/default
params.set(‘article_type’, currentArticleType);
}
}
// If article_type was selected and has a value, trigger redirect
if (selectName === ‘article_type’ && selectValue) {
params.set(‘apply_filters’, ‘1’);
}
// Remove apply_filters for non-article_type changes (just reload to update options)
if (selectName !== ‘article_type’) {
params.delete(‘apply_filters’);
}
// Reload page with new params
const newUrl = currentUrl + (params.toString() ? ‘?’ + params.toString() : ”);
window.location.href = newUrl;
});
});
})();
Load MoreLoading…
The post AO-labs appeared first on AppOmni.
*** This is a Security Bloggers Network syndicated blog from AppOmni authored by Beverly Nevalga, Director of Content Marketing, AppOmni. Read the original post at: https://appomni.com/ao-labs/
