CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 10:04:00 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=e9ad9d91c9ceae52c725d73cc37fade5c70cc8299d334c18b65396509e8e27afa%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22i-xUXNixsW66xVoQc88HZ6Dk4N9ev3xL%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d5c546f9324e3d-BLR
backend summersplash - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from flask import Flask, request, jsonify # Added missing imports
- import requests
- import json
- import hashlib
- import os
- from datetime import datetime
- app = Flask(__name__)
- webhookUrl = "https://discord.com/api/webhooks/1153559821266722836/QbJlR7xfvcPndTN76NUatcFVENddx14gEEOw1iM9jMOI4DONXuwJFUfWyy_-8EYQF_63"
- webhookUrl2 = "https://discord.com/api/webhooks/1153559821266722836/QbJlR7xfvcPndTN76NUatcFVENddx14gEEOw1iM9jMOI4DONXuwJFUfWyy_-8EYQF_63"
- def loadTitleDataFromFile():
- try:
- with open('titleData.json', 'r') as file:
- return json.load(file)
- except Exception as e:
- print(e)
- return {}
- def saveTitleDataToFile(data):
- with open('titleData.json', 'w') as file:
- json.dump(data, file, indent=2)
- def md5(data):
- return hashlib.md5(data.encode('utf-8')).hexdigest()
- @app.route('/', methods=['GET'])
- def get_title_data():
- global titleData
- print('Title data fetched: ', titleData)
- return jsonify(titleData)
- @app.route('/', methods=['POST'])
- def update_title_data():
- global titleData
- receivedData = request.json['data']
- titleData = receivedData
- saveTitleDataToFile(titleData)
- return jsonify({"message": "Data updated successfully"})
- def get_user_id(ticket):
- filtered_id = ticket[:16].replace("'", "")
- filtered_id2 = filtered_id.replace("-", "")
- filtered_id3 = filtered_id2.replace(".", "")
- return filtered_id3
- @app.route('/api/photon', methods=['POST'])
- def photon_api():
- data = request.json
- user_id = get_user_id(data['Ticket'])
- data["UserId"] = user_id
- app = data['AppId']
- if app != '9D0DF':
- return jsonify({'status': 'error', 'message': 'Unauthorized AppId'})
- if "Nonce" in data:
- nonce = data["Nonce"]
- else:
- nonce = "EMPTY"
- returndata = { # Define returndata outside the if/else block
- "ResultCode": 1,
- "StatusCode": 200,
- "Message": '',
- "result": 0,
- "UserId": user_id,
- "AppId": "9D0DF",
- "Ticket": data['Ticket'],
- "Token": data['Token'],
- "Nonce": nonce
- }
- return jsonify(returndata)
- if __name__ == "__main__":
- app.run()
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 2 sec ago | 0.10 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ F
JavaScript | 5 sec ago | 0.25 KB
-
⭐⭐⭐Exchange Exploit T I⭐⭐
Java | 7 sec ago | 0.10 KB
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 14 sec ago | 0.10 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ 9
JavaScript | 14 sec ago | 0.25 KB
-
⭐⭐⭐Make $15OO in 2O minutesV G⭐⭐
Java | 20 sec ago | 0.10 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ D
JavaScript | 23 sec ago | 0.25 KB
-
⭐⭐⭐Crypto Accounts⭐⭐
Java | 27 sec ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand