Sign in to follow this  
Kamikaze

How do you send login requests into sites?

Recommended Posts

Any python tutorial out there?

Share this post


Link to post
Share on other sites

Go to the form you want to use for this.

Open chrome developer tools and go over to the network tab.

Make sure "preserve log" is checked.

Login.

Take a look at the request details and replicate them using a library like requests. Here are some useful URL's.

 

https://stackoverflow.com/questions/13147914/how-to-simulate-http-post-request-using-python-requests-module

https://stackoverflow.com/questions/48592572/can-i-use-requests-post-to-submit-a-form

https://dzone.com/articles/how-submit-web-form-python

https://www.geeksforgeeks.org/get-post-requests-using-python/

 

This is actually a pretty simple task and you could learn it by simply making a few Google searches.

Share this post


Link to post
Share on other sites

Go to the form you want to use for this.

Open chrome developer tools and go over to the network tab.

Make sure "preserve log" is checked.

Login.

Take a look at the request details and replicate them using a library like requests. Here are some useful URL's.

 

https://stackoverflow.com/questions/13147914/how-to-simulate-http-post-request-using-python-requests-module

https://stackoverflow.com/questions/48592572/can-i-use-requests-post-to-submit-a-form

https://dzone.com/articles/how-submit-web-form-python

https://www.geeksforgeeks.org/get-post-requests-using-python/

 

This is actually a pretty simple task and you could learn it by simply making a few Google searches.

 

Yeah, figured it out yesterday.

Share this post


Link to post
Share on other sites

DWC. This user has been banned for scamming.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this