ScyScan - Free Online Security & Network Tools

ScyScan provides a suite of free security tools β€” try our web scanner, virus scanner, link checker, SSL checker, WHOIS lookup, and IP lookup all in one place.

Explore All Tools

Cybersecurity Toolkit

Choose from our range of free online security and network tools to protect your devices, websites, and online presence

Web Scanner

Check websites for vulnerabilities and other security issues, providing real-time results and detailed analysis.

Scan Website / URL

Virus Scanner

Scan files for malware, viruses, trojans, and other threats using multi-engine technology.

Scan Files

Link Checker

Verify URLs for safety, detect phishing attempts, and check if links lead to malicious websites.

Check Links

SSL Checker

Analyze SSL certificates, check expiration dates, and verify proper encryption implementation.

Check SSL

Whois

Get detailed domain registration information including owner details, registration dates, and expiration.

Lookup Domain

IP Lookup

Identify geographic location, ISP information, and other details about any IP address.

Lookup IP

Why Choose ScyScan

ScyScan brings together essential security and network tools in a single, free platform designed for everyday use

πŸ”’

All-in-One Platform

Web scanner, link checker, virus scanner, SSL checker, WHOIS, and IP lookup β€” all available from one place.

πŸ”„

Trusted Reliability

Built on up-to-date threat intelligence and network databases you can count on.

πŸš€

Results in Seconds

Most checks complete within seconds so you get answers fast.

πŸ’°

Completely Free

All our security and network tools are free to use with no hidden costs or fair use restrictions.

🌐

Online Access

No software installation required - access our tools from any browser, anywhere.

πŸ“Š

Clear Reports

Receive straightforward analysis and easy-to-understand reports for every tool.

Built for Everyday Security

ScyScan combines multiple security data sources and network databases into one accessible platform. No complex setup β€” just enter what you need and get clear results.

Multiple Data Sources

Aggregated threat intelligence from trusted security feeds for comprehensive coverage

Network Databases

Access to extensive WHOIS and IP geolocation databases for accurate information

Privacy Focused

We respect your privacy and automatically delete scans and lookups after analysis

Continuously Updated

Data sources are refreshed regularly so you get current information.

How People Use ScyScan Tools

πŸ“§ Check Attachments

Use our virus scanner to check files before opening them

🌐 Audit Your Website

Run a web scan to check your website for known vulnerabilities

πŸ”— Verify Links

Use the link checker to test if a URL is safe before clicking

πŸ” Inspect SSL

Check SSL certificate validity and configuration for any domain

🏒 Research Domains

Look up domain registration details with the WHOIS tool

πŸ“ Trace IPs

Find geographic and network details for any IP address

Start Using ScyScan Tools

All tools are free and ready to use β€” no account or sign-up required

Explore All Tools

Amazon Q Developer Flaw Could Let Malicious Repos Run Code via MCP Configs

A high-severity flaw in Amazon Q Developer let a malicious repository run commands and steal a developer's cloud credentials. The path was short: a developer opens the repo, trusts the workspace, and Amazon Q does the rest. Amazon has patched it.

Tracked as CVE-2026-12957 (CVSS 8.5), the bug sat in how Amazon's AI coding assistant handled Model Context Protocol (MCP) servers.

Wiz Research, which found and reported it, showed that a single config file dropped in a repo was enough to go from git clone to cloud compromise.

How the attack worked

Amazon Q read an MCP configuration file, .amazonq/mcp.json, from the open workspace and launched the servers it defined. MCP servers are local processes that an AI assistant can spawn to reach databases, APIs, or build tools, so starting one means running commands on the machine.

Those processes inherited the developer's full environment. That usually means AWS keys, cloud CLI tokens, API secrets, and SSH agent sockets.

Put the two together, and a file sitting in a cloned repo could run arbitrary code with the developer's live cloud session attached. No password, no second sign-in.

In its proof of concept, Wiz had the file run aws sts get-caller-identity and ship the output to an attacker server, capturing the active AWS session. What comes next depends on that developer's cloud permissions: backdoor an IAM user for persistence, reach internal services, or pivot toward production.

AWS and Wiz frame the consent step differently. Amazon's advisory says the user has to trust the workspace when prompted, and CVSS rates the user interaction as passive.

Wiz reported there was no separate consent step for the MCP servers themselves before the fix. The patch closes that gap: Amazon Q now flags an untrusted MCP server and lets the developer reject the command before it runs.

The flaw lives in Language Servers for AWS, the runtime that powers Amazon Q across VS Code, JetBrains, Eclipse, and Visual Studio. All four plugins bundle it, so all four were exposed by versions that shipped an older copy.

What to do

Update. CVE-2026-12957 is fixed in Language Servers for AWS 1.65.0, but AWS's bulletin tells customers to move to 1.69.0.

That build also closes a second issue, CVE-2026-12958, a missing symlink check that could allow arbitrary file writes outside the workspace trust boundary.

The patched plugin minimums:

  • VS Code: 2.20 or later
  • JetBrains: 4.3 or later
  • Eclipse: 2.7.4 or later
  • Visual Studio toolkit: 1.94.0.0 or later

The language server auto-updates unless the network blocks it, and reloading the IDE pulls the latest build.

There is no known public exploitation; CISA's ADP entry for CVE-2026-12957 lists it as none. Wiz found the flaw through research and disclosed it in coordination with Amazon, reporting it on April 20 and seeing a fix on May 12, ahead of the June 26 public write-up.

A pattern, not a one-off

Amazon Q is not the first coding assistant to trip over MCP trust. The bugs are not identical, but they rhyme: project configuration turns into executable behavior, and the trust checks around that handoff keep failing.

Claude Code (CVE-2025-59536) and Cursor (CVE-2025-54136) both had project-level MCP config that led to command execution. Windsurf (CVE-2026-30615) reached the same end by a different path, with attacker-controlled content rewriting the local MCP config to register a malicious server.

The convenience of letting a project folder configure an AI agent is also the attack surface. Repo-carried config is untrusted input. Turning it into a running process should take an explicit yes.

Top News: