Spaces:
Sleeping
Sleeping
File size: 20,443 Bytes
63f76ea 1fbaac1 63f76ea d55660e 63f76ea 3b2c8d9 baa78ec fa7dec9 6a60a11 a454a10 f1769b8 a454a10 f1769b8 f18485b fa7dec9 1422f6d 0016b8d a454a10 f1769b8 14be303 fa7dec9 f1769b8 fa7dec9 6a60a11 fa7dec9 f1769b8 fa7dec9 6a60a11 fa7dec9 f1769b8 fa7dec9 f1769b8 3ad7349 aae5f26 f1769b8 fa7dec9 f1769b8 fa7dec9 f1769b8 a454a10 aae5f26 f1769b8 fa7dec9 f1769b8 fa7dec9 aae5f26 2e9428f f1769b8 2e9428f 1422f6d f1769b8 1422f6d 6a60a11 1422f6d 7d1bae2 1422f6d f1769b8 1422f6d 1fbaac1 f1769b8 1fbaac1 ac9af35 1fbaac1 f1769b8 1fbaac1 f1769b8 1fbaac1 f1769b8 1fbaac1 6f95eac 1fbaac1 f1769b8 1fbaac1 f1769b8 1fbaac1 f1769b8 1fbaac1 32137d0 f1769b8 63f76ea 32137d0 fa7dec9 2e9428f f1769b8 63f76ea f1769b8 2e9428f f1769b8 63f76ea 1fbaac1 b0c7d6b baa78ec f1769b8 a72f8b6 6f95eac 63f76ea 1ff93c5 63f76ea 32137d0 e08a633 9071afc 3ad7349 9899a9d 9071afc afc1a19 6f95eac 3ad7349 9899a9d 9071afc 6f95eac 3ad7349 9899a9d 9071afc 6f95eac afc1a19 e08a633 7bff970 6f95eac 3ad7349 6f95eac 3ad7349 6f95eac 3ad7349 6f95eac 3ad7349 7bff970 6f95eac 3ad7349 6f95eac 3ad7349 6f95eac 3ad7349 6f95eac afc1a19 6f95eac 7bff970 e08a633 32137d0 f1769b8 a72f8b6 e08a633 1fbaac1 3ad7349 6f95eac 3ad7349 bd91198 3ad7349 411e5fe 63cabd8 b74852f 63cabd8 9501fa0 b74852f 9501fa0 324d574 411e5fe b74852f 411e5fe 6f95eac 411e5fe 6f95eac 411e5fe 6a60a11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
import phonenumbers
from phonenumbers import geocoder, carrier
import re
import requests
import os
from datetime import datetime
import logging
import json
from PIL import Image # Upewnij się, że zainstalowałeś tę bibliotekę: pip install pillow
import pytesseract # Upewnij się, że zainstalowałeś tę bibliotekę: pip install pytesseract
# Konfiguracja logowania
logging.basicConfig(
filename='app.log',
level=logging.INFO,
format='%(asctime)s %(levelname)s:%(message)s'
)
# Definiowanie ścieżek do plików JSON
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
DATA_DIR = os.path.join(BASE_DIR, '..', 'data')
FAKE_NUMBERS_FILE = os.path.join(DATA_DIR, 'fake_numbers.json')
HISTORY_FILE = os.path.join(DATA_DIR, 'history.json')
STATS_FILE = os.path.join(DATA_DIR, 'stats.json')
# Funkcje pomocnicze
def load_json(file_path):
"""Ładuje dane z pliku JSON. Jeśli plik nie istnieje, zwraca pustą listę lub domyślny obiekt."""
if not os.path.exists(file_path):
if file_path.endswith('stats.json'):
return {"total_analyses": 0, "total_frauds_detected": 0}
else:
return []
with open(file_path, 'r', encoding='utf-8') as file:
try:
data = json.load(file)
return data
except json.JSONDecodeError:
logging.error(f"Nie można załadować danych z {file_path}. Plik jest uszkodzony.")
if file_path.endswith('stats.json'):
return {"total_analyses": 0, "total_frauds_detected": 0}
return []
def save_json(file_path, data):
"""Zapisuje dane do pliku JSON."""
with open(file_path, 'w', encoding='utf-8') as file:
json.dump(data, file, ensure_ascii=False, indent=4)
logging.info(f"Dane zostały zapisane do {file_path}.")
def add_fake_number(phone_number):
"""Dodaje numer telefonu do pliku fake_numbers.json jako fałszywy, jeśli jeszcze go tam nie ma."""
fake_numbers = load_json(FAKE_NUMBERS_FILE)
if phone_number not in fake_numbers:
fake_numbers.append(phone_number)
save_json(FAKE_NUMBERS_FILE, fake_numbers)
logging.info(f"Numer {phone_number} został pomyślnie dodany do fake_numbers.json.")
return True
else:
logging.info(f"Numer {phone_number} już istnieje w fake_numbers.json.")
return False
def is_fake_number(phone_number):
"""Sprawdza, czy dany numer telefonu jest oznaczony jako fałszywy w pliku fake_numbers.json."""
fake_numbers = load_json(FAKE_NUMBERS_FILE)
exists = phone_number in fake_numbers
logging.info(f"Sprawdzanie numeru {phone_number}: {'znaleziony' if exists else 'nie znaleziony'}.")
return exists
def get_fake_numbers():
"""Pobiera listę fałszywych numerów z pliku fake_numbers.json."""
fake_numbers = load_json(FAKE_NUMBERS_FILE)
return fake_numbers
def add_to_history(message, phone_number, analysis, risk, recommendations):
"""Dodaje wpis do historii analiz w pliku history.json."""
history = load_json(HISTORY_FILE)
history.append({
"timestamp": datetime.now().isoformat(),
"message": message,
"phone_number": phone_number,
"analysis": analysis,
"risk_assessment": risk,
"recommendations": recommendations
})
save_json(HISTORY_FILE, history)
logging.info(f"Dodano wpis do history.json dla numeru {phone_number}.")
def get_history():
"""Pobiera historię analiz z pliku history.json jako listę słowników."""
history = load_json(HISTORY_FILE)
logging.info("Historia analiz została pobrana pomyślnie.")
return history
def update_stats(fraud_detected=False):
"""Aktualizuje statystyki analiz w pliku stats.json."""
stats = load_json(STATS_FILE)
stats["total_analyses"] += 1
if fraud_detected:
stats["total_frauds_detected"] += 1
save_json(STATS_FILE, stats)
logging.info(f"Statystyki zostały zaktualizowane: Analiz {stats['total_analyses']}, Oszustw {stats['total_frauds_detected']}.")
def get_stats():
"""Pobiera statystyki analiz z pliku stats.json."""
stats = load_json(STATS_FILE)
logging.info("Statystyki zostały pobrane pomyślnie.")
return stats
def get_phone_info(phone_number):
"""Weryfikuje numer telefonu i zwraca informacje o kraju i operatorze."""
try:
parsed_number = phonenumbers.parse(phone_number, None)
country = geocoder.description_for_number(parsed_number, 'pl') # Zmiana na 'pl' dla polskiego
operator = carrier.name_for_number(parsed_number, 'pl') # Zmiana na 'pl' dla polskiego
if not country:
country = "Nieznany"
if not operator:
operator = "Nieznany"
logging.info(f"Numer {phone_number} - Kraj: {country}, Operator: {operator}.")
return country, operator
except phonenumbers.NumberParseException as e:
logging.error(f"Nie udało się przetworzyć numeru telefonu {phone_number}: {e}")
return "Nieznany", "Nieznany"
def simple_checks(message, language):
"""Przeprowadza proste sprawdzenia heurystyczne wiadomości SMS."""
warnings = []
scam_keywords = {
'Polish': ['pieniądze', 'przelew', 'hasło', 'kod', 'nagroda', 'wygrana', 'pilne', 'pomoc', 'opłata', 'bank', 'karta', 'konto', 'logowanie', 'transakcja', 'weryfikacja', 'dane osobowe', 'szybka płatność', 'blokada konta', 'powiadomienie'],
'German': ['Geld', 'Überweisung', 'Passwort', 'Code', 'Preis', 'Gewinn', 'dringend', 'Hilfe', 'Gebühr', 'Bank', 'Karte', 'Konto', 'Anmeldung', 'Transaktion', 'Verifizierung', 'persönliche Daten', 'schnelle Zahlung', 'Kontosperrung', 'Benachrichtigung'],
'English': ['money', 'transfer', 'password', 'code', 'prize', 'win', 'urgent', 'help', 'fee', 'bank', 'card', 'account', 'login', 'transaction', 'verification', 'personal information', 'quick payment', 'account lock', 'notification']
}
selected_keywords = scam_keywords.get(language, scam_keywords['English'])
message_lower = message.lower()
if any(keyword.lower() in message_lower for keyword in selected_keywords):
warnings.append("Wiadomość zawiera słowa kluczowe związane z potencjalnym oszustwem.")
if re.search(r'http[s]?://', message):
warnings.append("Wiadomość zawiera link.")
if re.search(r'\b(podaj|prześlij|udostępnij|sende|übermittle|teile|send|provide|share)\b.*\b(hasło|kod|dane osobowe|numer konta|Passwort|Code|persönliche Daten|Kontonummer|password|code|personal information|account number)\b', message_lower):
warnings.append("Wiadomość zawiera prośbę o poufne informacje.")
return warnings
def analyze_message(message, phone_number, additional_info, api_key, language):
"""Analizuje wiadomość SMS za pomocą API SambaNova."""
if not api_key:
logging.error("Brak klucza API.")
return "Brak klucza API.", "Brak klucza API.", "Brak klucza API."
url = "https://api.sambanova.ai/v1/chat/completions" # Upewnij się, że to poprawny URL
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
system_prompts = {
'Polish': """
Jesteś zaawansowanym asystentem AI specjalizującym się w identyfikacji fałszywych wiadomości SMS. Twoim zadaniem jest przeprowadzenie szczegółowej analizy wiadomości, wykorzystując głęboki proces myślenia i dostarczając kompleksową ocenę. Twoja odpowiedź powinna być podzielona na trzy sekcje:
<analysis>
**📝 Analiza Treści Wiadomości:**
- Przeprowadź szczegółową analizę treści wiadomości, identyfikując potencjalne czerwone flagi, takie jak błędy językowe, prośby o dane osobowe, pilne prośby o kontakt itp.
- Jakie elementy treści mogą wskazywać na oszustwo?
- Jakie słowa kluczowe są używane w wiadomości? (np. "pieniądze", "przelew", "nagroda")
- Jakie są reakcje na tę wiadomość w kontekście kulturowym i językowym?
**❓ Dodatkowe pytania do przemyślenia:**
- Kiedy i jak często otrzymujesz wiadomości z tego numeru?
- Czy numer nadawcy jest znany z innych źródeł?
- Jakie są konsekwencje dla Ciebie, jeśli ta wiadomość jest oszustwem?
- Jakie masz doświadczenia z podobnymi wiadomościami w przeszłości?
</analysis>
<risk_assessment>
**⚖️ Ocena Ryzyka Oszustwa:**
- Na podstawie analizy treści i dostępnych informacji oceń prawdopodobieństwo, że wiadomość jest oszustwem. Użyj skali od 1 do 10, gdzie 1 oznacza bardzo niskie ryzyko, a 10 bardzo wysokie ryzyko.
- Jakie czynniki wpływają na tę ocenę?
- Jakie są argumenty za i przeciw ocenie tej wiadomości jako oszustwa?
**❓ Dodatkowe pytania do przemyślenia:**
- Jakie inne wiadomości z tego numeru otrzymywałeś w przeszłości?
- Czy wiadomość zawiera jakiekolwiek inne informacje, które mogłyby być użyteczne w ocenie ryzyka?
- Jakie są Twoje dotychczasowe doświadczenia z oszustwami SMS?
- Jakie są Twoje przemyślenia na temat nadawcy tej wiadomości?
</risk_assessment>
<recommendations>
**💡 Zalecenia dla Użytkownika:**
- Podaj jasne i konkretne zalecenia dotyczące dalszych kroków, które użytkownik powinien podjąć.
- Jakie środki bezpieczeństwa powinny być wdrożone?
**❓ Dodatkowe pytania do przemyślenia:**
- Czy powinieneś zgłosić tę wiadomość do operatora sieci?
- Jakie dodatkowe kroki możesz podjąć, aby upewnić się, że nie padłeś ofiarą oszustwa?
- Czy masz dostęp do innych narzędzi, które mogą pomóc w ocenie tej wiadomości?
- Jakie działania możesz podjąć, aby zwiększyć swoje bezpieczeństwo w przyszłości?
</recommendations>
""",
'German': """
Du bist ein fortgeschrittener KI-Assistent, spezialisiert auf die Identifizierung gefälschter SMS-Nachrichten. Deine Aufgabe ist es, eine detaillierte Analyse der Nachricht durchzuführen, indem du einen tiefgreifenden Denkprozess nutzt und eine umfassende Bewertung lieferst. Deine Antwort sollte in drei Abschnitte unterteilt sein:
<analysis>
**📝 Nachrichteninhaltsanalyse:**
- Führe eine detaillierte Analyse des Nachrichteninhalts durch und identifiziere potenzielle rote Flaggen wie sprachliche Fehler, Aufforderungen zur Preisgabe persönlicher Daten, dringende Kontaktanfragen usw.
- Welche Elemente im Inhalt könnten auf Betrug hinweisen?
- Welche Schlüsselwörter werden in der Nachricht verwendet? (z. B. "Geld", "Überweisung", "Preis")
- Wie reagieren die Menschen auf diese Nachricht im kulturellen und sprachlichen Kontext?
**❓ Zusätzliche Fragen zur Überlegung:**
- Wann und wie oft erhältst du Nachrichten von dieser Nummer?
- Ist die Nummer des Absenders aus anderen Quellen bekannt?
- Was sind die Konsequenzen für dich, wenn diese Nachricht ein Betrug ist?
- Welche Erfahrungen hast du in der Vergangenheit mit ähnlichen Nachrichten gemacht?
</analysis>
<risk_assessment>
**⚖️ Betrugsrisikobewertung:**
- Bewerte die Wahrscheinlichkeit, dass die Nachricht betrügerisch ist, auf einer Skala von 1 bis 10, wobei 1 sehr geringes Risiko und 10 sehr hohes Risiko bedeutet.
- Welche Faktoren beeinflussen diese Bewertung?
- Was sind die Argumente für und gegen die Bewertung dieser Nachricht als Betrug?
**❓ Zusätzliche Fragen zur Überlegung:**
- Welche anderen Nachrichten hast du in der Vergangenheit von dieser Nummer erhalten?
- Enthält die Nachricht weitere Informationen, die bei der Risikobewertung hilfreich sein könnten?
- Welche bisherigen Erfahrungen hast du mit SMS-Betrügereien gemacht?
- Welche Gedanken hast du über den Absender dieser Nachricht?
</risk_assessment>
<recommendations>
**💡 Empfehlungen für den Benutzer:**
- Gib klare und spezifische Empfehlungen zu den nächsten Schritten, die der Benutzer unternehmen sollte.
- Welche Sicherheitsmaßnahmen sollten umgesetzt werden?
**❓ Zusätzne Fragen zur Überlegung:**
- Solltest du diese Nachricht deinem Mobilfunkanbieter melden?
- Welche weiteren Schritte kannst du unternehmen, um sicherzustellen, dass du nicht Opfer eines Betrugs geworden bist?
- Hast du Zugriff auf andere Werkzeuge, die dir helfen können, diese Nachricht zu bewerten?
- Welche Maßnahmen kannst du ergreifen, um deine Sicherheit in Zukunft zu erhöhen?
</recommendations>
""",
'English': """
You are an advanced AI assistant specializing in identifying fake SMS messages. Your task is to conduct a detailed analysis of the message, utilizing a deep thinking process and providing a comprehensive assessment. Your response should be divided into three sections:
<analysis>
**📝 Message Content Analysis:**
- Conduct a detailed analysis of the message content, identifying potential red flags such as language errors, requests for personal information, urgent contact requests, etc.
- What elements of the content may indicate fraud?
- What keywords are used in the message? (e.g., "money", "transfer", "prize")
- What are the cultural and linguistic reactions to this message?
**❓ Additional questions to consider:**
- When and how often do you receive messages from this number?
- Is the sender's number known from other sources?
- What are the consequences for you if this message is a fraud?
- What experiences have you had in the past with similar messages?
</analysis>
<risk_assessment>
**⚖️ Fraud Risk Assessment:**
- Assess the likelihood that the message is fraudulent on a scale from 1 to 10, where 1 indicates very low risk and 10 indicates very high risk.
- What factors influence this assessment?
- What are the arguments for and against assessing this message as fraud?
**❓ Additional questions to consider:**
- What other messages have you received from this number in the past?
- Does the message contain any other information that could be useful in assessing the risk?
- What previous experiences do you have with SMS scams?
- What are your thoughts on the sender of this message?
</risk_assessment>
<recommendations>
**💡 User Recommendations:**
- Provide clear and concrete recommendations regarding the next steps the user should take.
- What security measures should be implemented?
**❓ Additional questions to consider:**
- Should you report this message to your service provider?
- What additional steps can you take to ensure that you have not fallen victim to a scam?
- Do you have access to other tools that can help you assess this message?
- What actions can you take to enhance your security in the future?
</recommendations>
Your response should be formatted exactly as specified above, using the <analysis>, <risk_assessment>, and <recommendations> tags. Ensure that each section is thoroughly and comprehensively filled out.
"""
}
system_prompt = system_prompts.get(language, system_prompts['English']) # Domyślnie angielski, jeśli język nie jest obsługiwany
user_prompt = f"""Analyze the following message for potential fraud:
Message: "{message}"
Sender's Phone Number: "{phone_number}"
Additional Information:
{additional_info}
Provide your analysis and conclusions following the guidelines above."""
payload = {
"model": "Meta-Llama-3.1-8B-Instruct", # Upewnij się, że to poprawny model API
"messages": [
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_prompt}
],
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 0.9,
"stop": ["<|eot_id|>"]
}
try:
response = requests.post(url, headers=headers, json=payload)
if response.status_code == 200:
data = response.json()
ai_response = data['choices'][0]['message']['content']
analysis = re.search(r'<analysis>(.*?)</analysis>', ai_response, re.DOTALL)
risk_assessment = re.search(r'<risk_assessment>(.*?)</risk_assessment>', ai_response, re.DOTALL)
recommendations = re.search(r'<recommendations>(.*?)</recommendations>', ai_response, re.DOTALL)
analysis_text = analysis.group(1).strip() if analysis else "Brak analizy."
risk_text = risk_assessment.group(1).strip() if risk_assessment else "Brak oceny ryzyka."
recommendations_text = recommendations.group(1).strip() if recommendations else "Brak zaleceń."
return analysis_text, risk_text, recommendations_text
else:
logging.error(f"Błąd API: {response.status_code} - {response.text}")
return f"Błąd API: {response.status_code} - {response.text}", "Błąd analizy.", "Błąd analizy."
except Exception as e:
logging.error(f"Błąd połączenia z API: {e}")
return f"Błąd połączenia z API: {e}", "Błąd analizy.", "Błąd analizy."
def analyze_url(url):
"""Analizuje zawartość strony internetowej pod kątem oszustw."""
phishing_urls = []
# Sprawdzanie URL w PhishTank
def check_url_phishtank(url):
params = {
'format': 'json',
'url': url
}
try:
response = requests.post('https://checkurl.phishtank.com/checkurl/', data=params)
if response.status_code == 200:
data = response.json()
in_database = data.get('results', {}).get('in_database', False)
valid = data.get('results', {}).get('valid', False)
if in_database and valid:
return True
else:
logging.warning(f"Błąd podczas sprawdzania URL w PhishTank: {response.status_code}")
except Exception as e:
logging.error(f"Błąd podczas sprawdzania URL w PhishTank: {e}")
return False
# Sprawdzanie URL w Google Safe Browsing
def check_url_safe_browsing(url):
api_key = os.getenv('GOOGLE_SAFE_BROWSING_API_KEY')
if not api_key:
return None
unsafe_urls = []
headers = {'Content-Type': 'application/json'}
client_body = {
'client': {
'clientId': 'yourcompanyname',
'clientVersion': '1.0'
},
'threatInfo': {
'threatTypes': ["MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", "POTENTIALLY_HARMFUL_APPLICATION"],
'platformTypes': ["ANY_PLATFORM"],
'threatEntryTypes': ["URL"],
'threatEntries': [{'url': url}]
}
}
try:
response = requests.post(
f'https://safebrowsing.googleapis.com/v4/threatMatches:find?key={api_key}',
headers=headers,
json=client_body
)
if response.status_code == 200:
data = response.json()
matches = data.get('matches', [])
return [match['threat']['url'] for match in matches]
else:
logging.error(f"Błąd podczas komunikacji z Google Safe Browsing API: {response.status_code}")
except Exception as e:
logging.error(f"Błąd podczas sprawdzania URL w Google Safe Browsing: {e}")
return []
# Sprawdzanie URL w PhishTank
if check_url_phishtank(url):
phishing_urls.append(url)
# Sprawdzanie URL w Google Safe Browsing
unsafe_urls = check_url_safe_browsing(url)
if unsafe_urls:
phishing_urls.extend(unsafe_urls)
return phishing_urls # Zwraca listę zagrożonych URL
def extract_text_from_image(image_file):
"""Ekstrahuje tekst z przesłanego obrazu przy użyciu pytesseract."""
try:
image = Image.open(image_file)
text = pytesseract.image_to_string(image)
return text
except Exception as e:
logging.error(f"Błąd podczas ekstrakcji tekstu z obrazu: {e}")
return "Błąd podczas ekstrakcji tekstu."
def get_email_info(email):
"""Sprawdza informacje o nadawcy e-maila (np. domena, organizacja, kraj)."""
domain = email.split('@')[-1] # Prosta ekstrakcja domeny
# Możesz dodać więcej logiki do weryfikacji domeny
return {
"domain": domain,
"organization": "Nieznana organizacja", # Możesz dodać logikę, aby zidentyfikować organizację
"country": "Nieznany kraj" # Możesz dodać logikę, aby zidentyfikować kraj
}
def get_analysis_history():
"""Zwraca historię analiz z pliku history.json."""
return get_history() # Używamy get_history do uzyskania historii analiz
|