From owner-freebsd-questions@FreeBSD.ORG Mon Mar 29 14:37:43 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB5AE106566C for ; Mon, 29 Mar 2010 14:37:43 +0000 (UTC) (envelope-from n01@list.ru) Received: from fallback1.mail.ru (fallback1.mail.ru [94.100.176.18]) by mx1.freebsd.org (Postfix) with ESMTP id 735C68FC08 for ; Mon, 29 Mar 2010 14:37:43 +0000 (UTC) Received: from f141.mail.ru (f141.mail.ru [217.69.128.96]) by fallback1.mail.ru (mPOP.Fallback_MX) with ESMTP id 2E0E25592D6 for ; Mon, 29 Mar 2010 17:46:05 +0400 (MSD) Received: from mail by f141.mail.ru with local id 1NwFHz-0008TA-00 for freebsd-questions@freebsd.org; Mon, 29 Mar 2010 17:45:59 +0400 Received: from [94.193.205.202] by win.mail.ru with HTTP; Mon, 29 Mar 2010 17:45:59 +0400 From: n01 To: freebsd-questions@freebsd.org Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: [94.193.205.202] Date: Mon, 29 Mar 2010 17:45:59 +0400 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: X-Spam: Not detected X-Mras: Ok X-Mailman-Approved-At: Mon, 29 Mar 2010 18:07:28 +0000 Subject: Send form to receive Cookies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: n01 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Mar 2010 14:37:43 -0000 Hi Guys, Goal: To get cookies from https://www.vip-computers.com/uk/login.aspx by filling in Login, Password and ticking the box remember me. How it was done before: I have tried lynx to do that but now it's (as I assume) blocked by their hosting provider. Question: Any other way to do that? Tried: curl -D /auto/cookies.txt --data-urlencode "ctl00$ctl00$content1$Content1$txtUser=username&ctl00$ctl00$content1$Content1$txtPass=password&ctl00$ctl00$content1$Content1$btnLogin=Login" https://www.vip- computers.com/uk/login.aspx (Failed) wget --cookies=on --keep-session-cookies --save-cookies=/auto/cookies.txt --post- data="ctl00$ctl00$content1$Content1$txtUser=username&ctl00$ctl00$content1$Content1$txtPass=password" https://www.vip-computers.com/uk/login.aspx (Failed)