Browsing index pages (3 articles)
↧
Login via curl to webmail
I wanna login to my university webmail page by curllib.I program following code to do that:$url = 'http://eetd.kntu.ac.ir/mda2.asp';$reffer =...
View ArticleAnswer by DaveRandom for Login via curl to webmail
If you actually examine the source code of the login page, you will find the password element is named pd and not password.Therefore you need to change this:$post_fields =...
View ArticleAnswer by Talisin for Login via curl to webmail
site says:<input type="password" name="pd" size="18">you set:$post_fields = 'dom=ee.kntu.ac.ir&usr=hoseini&password=*****';change password to pd
View Article
Browsing index pages (3 articles)