mirror of
https://gitea.tendokyu.moe/AttackVector/AVNetwork.git
synced 2026-09-25 07:38:02 +03:00
13 lines
517 B
Python
13 lines
517 B
Python
from urllib.parse import parse_qs
|
|
from base64 import b64decode
|
|
from flask import Blueprint, request # Import necessary functions
|
|
from kbinxml import KBinXML
|
|
from variables.protocols import IIDX_XML, IIDX_RESULT, EAC_XML, EAC_RESULT, Respond, EAC_PROTOCOL_1, EAC_PROTOCOL_2
|
|
from time import time
|
|
from variables.strings.preLaunch import GenericOK
|
|
from variables.strings.common import heartbeat
|
|
|
|
bp = Blueprint(
|
|
"needAuth", __name__, url_prefix="/eacnet/needlessAuth"
|
|
) # Create a Blueprint for this route section
|