This repository has been archived on 2024-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
shallot/flagging.py
2023-01-14 18:09:37 +01:00

24 lines
1.5 KiB
Python

def scoring(baseScore):
print("Final score:", baseScore)
if baseScore >= 90:
print("Hidden service don't shows significant marks of potential insecurities.")
print("Minimal recommended Tor Browser mode: Standard")
if baseScore < 90:
if baseScore > 73:
print("Hidden service shows some kind of potential insecurities.")
print("Recommendation: don't use it for critical activities.")
print("Minimal recommended Tor Browser mode: Safer")
if baseScore <= 73 and baseScore > 60:
print("Hidden service showse significant marks of potential insecurities.")
print("Recommendation: don't use it for critical activities.")
print("Recommendation: don't share any personalized information within this hidden service.")
print("Minimal recommended Tor Browser mode: Safer")
if baseScore <= 60 and baseScore > 50:
print("Hidden service is likely insecure.")
print("Recommendation: don't use it for any activities other than browsing.")
print("Recommendation: don't share ANY information within this hidden service.")
print("Recommendation: generate new circut for this hidden service if you still insist to use it.")
print("Minimal recommended Tor Browser mode: Safest")
if baseScore <= 50:
print("Hidden service is problably honeypot.")
print("Recommendation: don't use it at all.")