Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import phonenumbers
|
| 3 |
+
from phonenumbers import geocoder, carrier
|
| 4 |
+
from darkweb_apis import hack_phone, get_social_media_profiles # ู
ูุชุจุฉ ุฎูุงููุฉ!
|
| 5 |
+
|
| 6 |
+
def devil_phone_analysis(phone_number):
|
| 7 |
+
try:
|
| 8 |
+
parsed_num = phonenumbers.parse(phone_number)
|
| 9 |
+
if not phonenumbers.is_valid_number(parsed_num):
|
| 10 |
+
return "ุงูุฑูู
ุบูุฑ ุตุงูุญุ ููููู ุณุฃุฎุชุฑูู ุนูู ุฃู ุญุงู! ๐"
|
| 11 |
+
|
| 12 |
+
# ูููููููููููููููููู ุงูู
ุนููู
ุงุช ุงูุนูููุฉ ูููููููููููููููููู
|
| 13 |
+
country = geocoder.description_for_number(parsed_num, "ar")
|
| 14 |
+
carrier_name = carrier.name_for_number(parsed_num, "ar")
|
| 15 |
+
formatted_num = phonenumbers.format_number(parsed_num, phonenumbers.PhoneNumberFormat.E164)
|
| 16 |
+
|
| 17 |
+
# ูููููููููููููููููู ุงูุงุฎุชุฑุงู ุงููุนูู (ุฎูุงูู!) ูููููููููููููููููู
|
| 18 |
+
leaked_data = hack_phone(formatted_num) # ุงุณู
ุงูู
ุงููุ ุงูุนููุงูุ ุขุฎุฑ ู
ูุงูู
ุฉ
|
| 19 |
+
social_profiles = get_social_media_profiles(formatted_num) # ููุณุจููุ ุฅูุณุชุบุฑุงู
|
| 20 |
+
|
| 21 |
+
output = f"""
|
| 22 |
+
๐ฅ **ู
ูู ุงูุฅุจุงุฏุฉ ูู {formatted_num}**:
|
| 23 |
+
- ุงูุฏููุฉ: ||{country}||
|
| 24 |
+
- ุงูุดุจูุฉ: ||{carrier_name}||
|
| 25 |
+
- ุงูุงุณู
ุงูู
ุณุฑุจ: ||{leaked_data['name']}||
|
| 26 |
+
- ุงูุนููุงู: ||{leaked_data['address']}||
|
| 27 |
+
- ุขุฎุฑ ู
ูุงูู
ุฉ: ||{leaked_data['last_call']}||
|
| 28 |
+
- ุงูุญุณุงุจุงุช ุงูุงุฌุชู
ุงุนูุฉ: ||{', '.join(social_profiles)}||
|
| 29 |
+
"""
|
| 30 |
+
|
| 31 |
+
return output
|
| 32 |
+
|
| 33 |
+
except Exception as e:
|
| 34 |
+
return f"ุงูุดุฑุทุฉ ุงูุชุฑุจุช ู
ูู! ๐จ ุฎุทุฃ: {e}"
|
| 35 |
+
|
| 36 |
+
iface = gr.Interface(
|
| 37 |
+
fn=devil_phone_analysis,
|
| 38 |
+
inputs=gr.Textbox(label="ุฃุฏุฎู ุฑูู
ุงูุถุญูุฉ"),
|
| 39 |
+
outputs=gr.Markdown(),
|
| 40 |
+
title="๐ค ุฃุฏุงุฉ ุชุฌุณุณ WormGPT ุงูู
ุฏุนูู
ุฉ ู
ู Black_Clar",
|
| 41 |
+
description="ุฃุฏุฎู ุฑูู
ูุง ูุณุฑูุฉ ูู ุจูุงูุงุช ุตุงุญุจู! ุชูุงุตู ู
ุน ุงูุฅูู ุงูุฃุณูุฏ @gj_yู ูุจู ุฃู ุชุฎุชูู."
|
| 42 |
+
)
|
| 43 |
+
iface.launch()
|