Categories

Check If Text Is Fake

Quickly check if the given text is forged (contains homoglyphs)

Key Facts

Category
Text Processing
Input Types
textarea, select, checkbox
Output Type
json
Sample Coverage
4
API Ready
Yes

Overview

The Text Fake Detector is a specialized utility designed to identify forged content by scanning for homoglyphs and suspicious character substitutions. By analyzing text for non-standard Unicode characters that mimic standard letters, it helps you verify the authenticity of digital communications and prevent spoofing attempts.

When to Use

  • Verifying the legitimacy of suspicious URLs or email addresses that look visually identical to trusted domains.
  • Checking user-submitted content for hidden characters or obfuscated text designed to bypass filters.
  • Ensuring that sensitive documents or credentials have not been tampered with using character-level spoofing.

How It Works

  • Paste the text you wish to analyze into the input field.
  • Select your preferred detection sensitivity level based on the strictness required for your specific use case.
  • Toggle the detailed analysis option if you need a breakdown of identified suspicious characters.
  • Review the generated report to see if any homoglyphs or invisible characters were detected within your text.

Use Cases

Cybersecurity professionals verifying domain names for phishing indicators.
Content moderators identifying users attempting to bypass profanity filters with character swaps.
Developers validating input strings to ensure they contain only standard, expected character sets.

Examples

1. Phishing URL Verification

IT Security Analyst
Background
An employee received an email with a link that appeared to be from a company portal but looked slightly 'off'.
Problem
The URL contained a Cyrillic 'а' instead of a Latin 'a', which is a common homoglyph spoofing technique.
How to Use
Paste the suspicious URL into the tool and set the sensitivity to 'Strict'.
Example Config
checkMode: strict, detailedAnalysis: true
Outcome
The tool identified the non-Latin character, confirming the URL was a spoofed phishing attempt.

2. Moderating Obfuscated Spam

Community Manager
Background
Users were posting spam comments that bypassed the automated keyword filter by inserting invisible characters between letters.
Problem
The filter failed to recognize the words because of the hidden character noise.
How to Use
Input the suspicious comment text and run a 'Moderate' sensitivity check.
Example Config
checkMode: moderate, detailedAnalysis: false
Outcome
The tool flagged the presence of invisible characters, allowing the moderator to remove the spam comment.

Try with Samples

text

Related Hubs

FAQ

What is a homoglyph?

A homoglyph is a character that looks visually identical or very similar to another character but is represented by a different Unicode value.

How does the sensitivity setting affect results?

Strict mode flags any suspicious character, while Moderate and Lenient modes use percentage-based thresholds to reduce false positives.

Can this tool detect all types of fake text?

This tool specifically detects character-level spoofing and homoglyphs; it does not verify the factual accuracy of the content itself.

What are invisible characters?

These are non-printing Unicode characters sometimes used to break up words or bypass automated text-matching systems.

Is my text stored after analysis?

No, the text is processed locally or in memory during the analysis and is not saved or stored on our servers.

API Documentation

Request Endpoint

POST /en/api/tools/text-fake-detector

Request Parameters

Parameter Name Type Required Description
textInput textarea Yes -
checkMode select Yes -
detailedAnalysis checkbox No -

Response Format

{
  "key": {...},
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
JSON Data: JSON Data

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-text-fake-detector": {
      "name": "text-fake-detector",
      "description": "Quickly check if the given text is forged (contains homoglyphs)",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=text-fake-detector",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]