C# Coding Examples [Get AuthToken/Token/CustomCookies][Cracker/Checkers] | Software | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

C# Coding Examples [Get AuthToken/Token/CustomCookies][Cracker/Checkers]

C# Coding Examples [Get AuthToken/Token/CustomCookies][Cracker/Checkers]

LV
1
 

jediking

Member
Joined
Jun 11, 2022
Threads
12
Likes
5
Awards
4
Credits
820©
Cash
0$
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 This



Sort through them until you find something that looks like a login (Only way i can explain)



Step Three



Open Up Postman

Fill in The Info

Like This



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("https://anonfile.com/login", (RequestParams)null).Cookies.ToString().Replace("XSRF-TOKEN=", "Token=").Replace("USERSESSID=", "\nSESSION ID=").Replace("bpva=", "\nBPVA="); // Analyse The Cookes You Need
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

Preview



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

Preview





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

Preview



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
 
  • Like
Reactions: fognayerku

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Tips

Similar threads

Top Bottom