OP 04 November, 2023 - 03:15 PM
(This post was last modified: 04 November, 2023 - 03:18 PM by NotserpL1L.)
GDPS is geometry dash private server, and i heard it has bad security (btw sorry if i have bad english)
There's the github link for the core for what most GDPS use: Github link
I don't know is security of it is bad. As i said it's what i heard.
It got some security patches and it hashes passes but i think its possible to manipulate with it or smh.
And that's my question, is it possible to hack and get user password? Bypass security or smh?
There's request code in python:
if someone could try then contact me: 'notserpishere' (discord), i would apprecatice it. i would even pay if it was possible. but idk it is so ye... ;) 
This is a bump
There's the github link for the core for what most GDPS use: Github link
I don't know is security of it is bad. As i said it's what i heard.
It got some security patches and it hashes passes but i think its possible to manipulate with it or smh.
And that's my question, is it possible to hack and get user password? Bypass security or smh?
There's request code in python:
Code:
import random, requests
from string import ascii_letters, digits
possible_letters = ascii_letters + digits
def generate_rs(n: int) -> str:
return ("").join(random.choices(possible_letters, k=n)) #used for uuid generation
def generate_uuid(parts: [int] = (8, 4, 4, 4, 10)) -> str: #function to generate uuid
return ("-").join(map(generate_rs, parts))
data = {
"udid": generate_uuid(), # generate uuid for login
"userName": "here username", # here username
"password": "here password", # there is password
"secret": "Wmfv3899gc9" # dont change anything (important)
}
req = requests.post("https://novagdps.ps.fhgdps.com/accounts/loginGJAccount.php", data=data) # the link for gdps work.
print(req.text) # '-1' means login failed, '1' means its succesful

This is a bump