randydev commited on
Commit
e1ba038
Β·
verified Β·
1 Parent(s): b4983e4

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +26 -0
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 = {}