Phishing Email Detector
Enter the full text content of an email below to analyze it.
Disclaimer: This tool (using model {{ model_name }}
) is for educational purposes and may not be accurate. Do not rely solely on this for security decisions.
{% if error and not result %}
Error: {{ error }}
{% endif %}
{% if result and friendly_label %}
Analysis Result Summary
Overall Assessment: {{ friendly_label }}
Top Prediction: {{ result.prediction }}
Confidence Score: {{ "%.4f"|format(result.confidence) }}
Detailed Probabilities:
{% for label, probability in result.all_probabilities.items() %}
- {{ label }}: {{ "%.4f"|format(probability) }}
{% endfor %}
{% elif error %}
Error during analysis: {{ error }}
{% endif %}
Reminder: Phishing detection is complex. This model provides probabilities for specific categories based on the text. Always look for other signs like sender addresses, urgent requests, unexpected attachments, and suspicious links.