惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 叶小钗
I
InfoQ
MyScale Blog
MyScale Blog
H
Help Net Security
月光博客
月光博客
Vercel News
Vercel News
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! Hackers Use Rokarolla Android Malware to Disable Google Play Protect and Control Devices UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data
SecSuite - AI-powered Tool for OSINT, Web and API Securit...
Guru Baran · 2026-06-15 · via Cyber Security News

A new open-source security platform called SecSuite, developed under the TheSecuredAnalyst project, has been released, combining OSINT reconnaissance, web vulnerability scanning, API security assessment, compliance checking, and AI-powered analysis into a single unified toolkit.

Available on GitHub at 53cur3dL34rn/security-suite, the tool targets security professionals, penetration testers, and red teams who need a modular, extensible suite capable of running entirely offline with local AI models.

SecSuite v0.1.0 ships with 11 OSINT modules, 6 web security scanners, and 4 API security testing tools, all accessible from a unified CLI or a REST API built on FastAPI.

The platform supports AI-powered analysis via three providers: Ollama (for fully local, offline inference), Anthropic Claude, and OpenAI GPT. This AI layer enables automated correlation finding, executive summary generation, and interactive LLM-driven remediation workflows, making it one of the more complete open-source security suites available today.

The tool is designed with minimal friction in mind. A single setup script (setup.sh on Linux/macOS or setup.ps1 on Windows) Handles the entire installation chain: Python, all dependencies, Ollama, and a local AI model with no administrator privileges required on Windows.

SecSuite’s capabilities span the full attack surface reconnaissance and testing lifecycle:

ModuleCapabilitiesIntegrations
OSINT (11 modules)DNS, WHOIS, subdomain discovery, port scanning, tech detection, email harvestingnmap, Shodan, VirusTotal
Web Scanner (6 modules)XSS, SQLi, directory bruteforce, SSL/TLS analysis, crawlingNuclei
API Security (4 modules)OpenAPI parsing, auth bypass, JWT testing, BOLA/IDOR, endpoint fuzzingREST API
AI AnalysisFinding correlation, executive summaries, interactive remediationOllama, Anthropic, OpenAI
SIEM IntegrationLog forwarding, alerting, webhook deliverySplunk, Elasticsearch, Syslog, Slack/Discord/PagerDuty
ComplianceOWASP Top 10, CIS Controls assessment
ExploitCVE lookup and exploit searchSearchSploit, Exploit-DB

One of the most operationally significant capabilities in SecSuite is its AI-driven remediation engine (secsuite ai remediate). Rather than producing a static report, this module scans a target, identifies findings, and interactively walks the operator through fixing each issue using a local LLM.

For each finding, such as Redis running without authentication, the AI proposes specific shell commands ([CHECK][FIX][VERIFY]) that the user can execute, edit, or skip in real time.

This closes the gap between vulnerability identification and remediation, a workflow traditionally requiring separate tooling. Crucially, the entire process runs on local models like Qwen2.5 or LLaMA 3.2 via Ollama, meaning no scan data, credentials, or infrastructure details leave the operator’s environment.

The apisec module targets REST APIs by ingesting OpenAPI/Swagger specifications and systematically testing discovered endpoints. Three sub-modules cover distinct attack vectors:

  • endpoints — Tests for BOLA/IDOR, SQL/NoSQL/command injection, mass assignment, and information disclosure.
  • auth — Checks for authentication bypass, broken authentication, JWT weaknesses (including the none algorithm attack and missing exp claims), and rate-limiting gaps.
  • fuzzer — Sends boundary values, injection payloads, and malformed request bodies to surface crashes and data leaks.

The REST API server (secsuite serve) exposes these capabilities as programmatic HTTP endpoints, enabling integration into existing CI/CD pipelines, security orchestration platforms, or custom tooling via curl or Python clients.

The web scanner module demonstrates practical detection in the tool’s demo output: a scan of example.com correctly flags SSLv3 as enabled, identifying the host as vulnerable to the POODLE attack (CVE-2014-3566).

This real-time SSL/TLS analysis module checks for deprecated protocol support, weak cipher suites, and certificate chain issues, completing in under one second in documented test cases.

XSS and SQL injection scanners, directory brute-force via wordlists, and Nuclei template-based vulnerability scanning round out the web testing surface.

SecSuite’s architecture separates concerns into three layers: a user interface layer (CLI via Typer + REST API via FastAPI), a core infrastructure layer (target modeling, caching, HTTP client, exporters), and a scanning module layer.

All scan results can be exported in JSON, CSV, HTML, or Markdown. The scheduler module enables cron-based recurring scans with persistent history, and SIEM integration supports CEF/LEEF formatted log delivery to Splunk, Elasticsearch, and Syslog pipelines.

All API keys, Shodan, VirusTotal, Anthropic, and OpenAI, are optional. Core functionality operates entirely without external API keys by leveraging Ollama for local AI inference, making the tool viable in air-gapped or restricted network environments.

SecSuite v0.1.0 is available now on GitHub under the 53cur3dL34rn/security-suite repository. The project targets security professionals conducting authorized penetration testing, red team exercises, and security assessments.

All API and AI integrations are optional, and the tool’s modular architecture allows teams to adopt only the components relevant to their assessment scope.

Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

Guru Baran

Guru Baranhttps://cybersecuritynews.com

Gurubaran KS is a cybersecurity analyst, and Journalist with a strong focus on emerging threats and digital defense strategies. He is the Co-Founder and Editor-in-Chief of Cyber Security News, where he leads editorial coverage on global cybersecurity developments.