Screenshot of Menu/ESP:
Config/Scripts Location:
C:\SteamLibrary\steamapps\common\Counter-Strike Global Offensive
Installation Instructions:
1. Install python (
ADD IT TO PATH!!!)
2. Install Flask with "pip install Flask"
3. Launch CS2 with argument "
-allow_third_party_software"
4. Run "run_server.bat"
5. Inject "never_shit.dll" with Standard or LdrLoadDLL
6. Inject "redder_bitch.dll" with Standard or LdrLoadDLL
7. Wait 1–2 minutes, and hopefully, the injection will be successful
Why? Because the script was looking in Release/requests/... but you said the folder is just called requests. So it was hitting FileNotFoundError and sending the DLL the literal text "file not found". The DLL read that, realized it was fake auth data, and shat the bed with error so edit it and make it to this buddy by the way ai fixed this u have to be ashemed of ur self
from flask import Flask, Response
import threading
import os
app = Flask(__name__)
# Dynamically grab the folder this script is in
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
request_counters = {
'system_info': 0
}
counter_lock = threading.Lock()
def get_next_id(endpoint):
with counter_lock:
request_counters[endpoint] += 1
return request_counters[endpoint]
def get_file_content(path):
try:
with open(path, 'rb') as f:
return f.read()
except FileNotFoundError:
# THIS IS THE NEW DEBUG LINE. If it fails, it will print the EXACT path it tried to find in the console.
print(f"[gosh] FILE NOT FOUND: {path}")
return f"file {path} not found".encode()
@app.route('/login', methods=['GET', 'POST'])
def login():
# REMOVED 'Release' from the path. Now it looks directly in the requests folder.
path = os.path.join(BASE_DIR, 'requests', 'login', 'response_content.json')
content = get_file_content(path)
return Response(
content,
status=200,
mimetype='application/json',
headers={'Connection': 'close'}
)
@app.route('/info', methods=['GET', 'POST'])
def info():
# REMOVED 'Release' from the path.
path = os.path.join(BASE_DIR, 'requests', 'info', 'response_content.bin')
content = get_file_content(path)
return Response(
content,
status=200,
mimetype='application/octet-stream',
headers={'Connection': 'close'}
)
@app.route('/system/info', methods=['GET', 'POST'])
def system_info():
req_id = get_next_id('system_info')
# REMOVED 'Release' from the path.
path = os.path.join(BASE_DIR, 'requests', 'system_info', f'response_content_{req_id}.bin')
content = get_file_content(path)
return Response(
content,
status=200,
mimetype='application/octet-stream',
headers={'Connection': 'close'}
)
if __name__ == '__main__':
app.run(host='127.0.0.1', port=1488)