Created
November 15, 2012 16:34
-
-
Save antics/4079584 to your computer and use it in GitHub Desktop.
Login to Wordpress with curl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -D cookie1.txt blog.xrmplatform.org/wp-login.php | |
# step 1 | |
# get default cookie of blog and write cookie to cookie1.txt | |
# step 2 | |
# simulate browser Firefox( of course , you can use any browser agent<!--more--> what you want!) "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6" | |
# input your username and also password | |
# write new cookie to cookie2.txt | |
curl -A "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6" -D cookie2.txt -b cookie1.txt -F log=username -F pwd=password -F testcookie=1 -F wp-submit="Log In" -F redirect_to=blog.xrmplatform.org/wp-admin -F submit=login -F rememberme=forever blog.xrmplatform.org/wp-login.php | |
# currently cookie2.txt stored all cookie info | |
# we can get all admin page ,such as /wp-admin info by the follow command , and output html data to output.html | |
curl -L -o output.html --cookie cookie2.txt http://blog.xrmplatform.org/wp-admin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you all, especially @DeBaschdi . Just the ticket for making a quick script to monitor the functioning of a page on a client's site.