Im back with another thread.
Today learn how to get a auth token from a site.
Step One
First Find A Site
CTRL+SHIFT+I Then Navigate to Network
Step Two
You should Notice Something Will Popup in networks tab
Like
Sort through them until you find something that looks like a login (Only way i can explain)
Step Three
Open Up
Fill in The Info
Like
Press Send And See if it works.
If it does Continue to Step 4
Step Four
Not Providing Full Source Or You will Not Learn
Now make a using statement with HttpRequest Like Below.
using (HttpRequest httpRequest = new HttpRequest())
{
}
Step Five
To add custom headers
Some Services Require certain headers (See Step Seven)
httpRequest.AddHeader("Header", "Value");
Step Six
Now We Can Find Cookies And Search For Specific Ones For Example See Below
string Cookie = httpRequest.Get("
Colorful.Console.WriteLine(Cookie, Color.Green); // Now We Need To See Them
Step Seven (Analyse The Request Properly)
Since I Do Not Want to spoonfeed you guys.
You need to learn
The Data you need to do the login should be at the bottom of the network tab
Some Headers Are Required to login to certain sites so you need to make sure to add headers that are needed.
You can use postman to help you simulate the request
Cookies Tab in the network tab will provide you with some cookies you may need to login to major sites (twitch, etc...)
You may need a Session ID Cookie Or A Auth Cookie
Overall
There will be more threads coming soon.
Im sorry this thread is short and less indepth but i will make it up to you guys soon.
Leave Suggestions On What i Should Do A Tutorial On Next
Today learn how to get a auth token from a site.
Step One
First Find A Site
CTRL+SHIFT+I Then Navigate to Network
Step Two
You should Notice Something Will Popup in networks tab
Like
Bağlantıları görmek için lütfen
Giriş Yap
Sort through them until you find something that looks like a login (Only way i can explain)
Step Three
Open Up
Bağlantıları görmek için lütfen
Giriş Yap
Fill in The Info
Like
Bağlantıları görmek için lütfen
Giriş Yap
Press Send And See if it works.
If it does Continue to Step 4
Step Four
Not Providing Full Source Or You will Not Learn
Now make a using statement with HttpRequest Like Below.
using (HttpRequest httpRequest = new HttpRequest())
{
}
Step Five
To add custom headers
Some Services Require certain headers (See Step Seven)
httpRequest.AddHeader("Header", "Value");
Step Six
Now We Can Find Cookies And Search For Specific Ones For Example See Below
string Cookie = httpRequest.Get("
Bağlantıları görmek için lütfen
Giriş Yap
", (RequestParams)null).Cookies.ToString().Replace("XSRF-TOKEN=", "Token=").Replace("USERSESSID=", "\nSESSION ID=").Replace("bpva=", "\nBPVA="); // Analyse The Cookes You NeedColorful.Console.WriteLine(Cookie, Color.Green); // Now We Need To See Them
Step Seven (Analyse The Request Properly)
Since I Do Not Want to spoonfeed you guys.
You need to learn
The Data you need to do the login should be at the bottom of the network tab
Bağlantıları görmek için lütfen
Giriş Yap
Some Headers Are Required to login to certain sites so you need to make sure to add headers that are needed.
You can use postman to help you simulate the request
Bağlantıları görmek için lütfen
Giriş Yap
Cookies Tab in the network tab will provide you with some cookies you may need to login to major sites (twitch, etc...)
You may need a Session ID Cookie Or A Auth Cookie
Bağlantıları görmek için lütfen
Giriş Yap
Overall
There will be more threads coming soon.
Im sorry this thread is short and less indepth but i will make it up to you guys soon.
Leave Suggestions On What i Should Do A Tutorial On Next