Need help of web developer

Justin Bill

Newbie
Joined
Dec 17, 2018
Messages
37
Reaction score
4
Is there any way to. access a website's database with database name, username and password?
And is it possible to login with session token without password?
 
Is there any way to. access a website's database with database name, username and password?
You'll also need the ip address of the server and the port if other than the default is used.
Also, the user must have the privilege to connect from your ip address (or all, but that's just bad config for a website's db).

P.S. I'm sure you're asking this for educational purposes.
 
You'll also need the ip address of the server and the port if other than the default is used.
Also, the user must have the privilege to connect from your ip address (or all, but that's just bad config for a website's db).
P.S. I'm sure you're asking this for educational purposes.

If I do not have that ip+privileges. Then is there any way to control?
Ps: yes it is for educational purpose
 
If I do not have that ip+privileges. Then is there any way to control?
Ps: yes it is for educational purpose

There's no way to get access to a database without knowing the server IP. Also the database server must allow remote connections from any ip range.
 
Is there any way to. access a website's database with database name, username and password?

yes if you login on the IP where the database it is on the sql port were it accept connections...

And is it possible to login with session token without password?

yes if you have the access token you have all you need to login to whatever that token gives access to...
 
Back
Top