Update main.py
Browse files
main.py
CHANGED
@@ -167,6 +167,32 @@ async def get_download_media_file(file_id: str = None):
|
|
167 |
"download": base64_image,
|
168 |
}
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
@fast_app.get("/user/author/admin")
|
171 |
async def get_author_chat_admin(username: str = None):
|
172 |
same_user = {}
|
|
|
167 |
"download": base64_image,
|
168 |
}
|
169 |
|
170 |
+
ALERT_WARN = """
|
171 |
+
π¨ Security Alert: API Key Activity Detected!
|
172 |
+
|
173 |
+
ποΈ Logs Path: {text_log}
|
174 |
+
|
175 |
+
π API Key: {api_key}
|
176 |
+
β οΈ If you didn't authorize this, **revoke your API key immediately** to prevent unauthorized access.
|
177 |
+
|
178 |
+
π **Never share your user_id** β it can be used for hacking attempts.
|
179 |
+
π Need help? Contact support: @xpushz
|
180 |
+
"""
|
181 |
+
|
182 |
+
@fast_app.get("/user/tg/send_message")
|
183 |
+
async def user_send_message(user_id: int = None, api_key: str = None, text_log: str = None):
|
184 |
+
try:
|
185 |
+
await bot.send_message(
|
186 |
+
user_id,
|
187 |
+
text=ALERT_WARN.format(
|
188 |
+
api_key=api_key,
|
189 |
+
text_log
|
190 |
+
)
|
191 |
+
)
|
192 |
+
return {"status": True}
|
193 |
+
except Exception as e:
|
194 |
+
return None
|
195 |
+
|
196 |
@fast_app.get("/user/author/admin")
|
197 |
async def get_author_chat_admin(username: str = None):
|
198 |
same_user = {}
|