π Validate Content
Analyzing content...
Protect Your Digital Content with Advanced Threat Detection
Trust Scan helps users determine whether links, emails, or digital content are safe, suspicious, spam, or potentially malicious. It analyzes content using a rules-based detection engine and heuristic analysis to identify phishing patterns, scam indicators, and other risky behaviors.
Trust Scan is built with privacy by design. User-provided content is never stored, logged, cached, or written to disk by default and by architecture. The service does not include any configuration, feature, or fallback mechanism that allows content to be saved on servers, databases, or external systems.
All analysis is performed in-memory only and exists solely for the duration of the request. Once processing is complete, the content is immediately discarded. Trust Scan does not retain user data, does not reuse it for analytics or training, and does not persist it in any form.
This design ensures that sensitive information such as emails, URLs, or message content remains private and under the userβs control at all times. Trust Scan integrates easily via API to deliver real-time, explainable risk assessments without compromising data privacy. For integration details, refer to the API Documentation.
Analyzing link...
Analyzing email...
Analyzing content...
Note: For performance reasons, analytics data is limited to the most recent 6 months.
Validates URL for phishing and suspicious content.
{"url": "http://g000gle.com"}
{
"url": "http://g000gle.com",
"suspicious": true,
"riskScore": 65,
"reasons": [
"Using insecure HTTP protocol",
"Domain contains suspicious number placement",
"Lookalike domain detected: g000gle β google",
"Emoji in domain (possible phishing)"
]
}
Validates Email for phishing and suspicious content.
{"from":"security@suspicious-site.com","subject":"URGENT: Your account will be suspended!","body":"Click here immediately to verify your password and bank account details: http://192.168.1.1/verify"}
{
"isSpam": false,
"isPhishing": true,
"confidence": 95,
"reasons": [
"Multiple phishing indicators detected",
"Contains IP address (suspicious for links)"
],
"spamScore": 2,
"phishingScore": 9.5
}
Validates phishing and suspicious content.
{"text":"Congratulations! You won $5,000,000 in the lottery! Claim your prize immediately!!!"}
{
"type": "spam",
"confidence": 80,
"flags": [
"spam-keywords",
"phishing-indicators",
"contains-money",
"excessive-punctuation"
],
"score": {
"spam": 4,
"phishing": 3,
"suspicious": 0
}
}
Tip: Use the Copy buttons to paste examples directly into your terminal or API client.