Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.



1573 posts

Uber Geek

Trusted

Topic # 105855 12-Jul-2012 11:25 Send private message

So I've had an issue with my Gargoyle 1.5.5 system, where a file I was downloading now requires authentication.

http://www.geekzone.co.nz/forums.asp?forumid=66&topicid=105722

A helpful sidefx found that when you login in to the router a script called \utiltity\get_password_cookie.sh is called with the password= post variables.

So I'm calling this with the correct password, but what I'm not seeing is a "hash" cookie in a HttpWebResponse Cookie collection.  What I'm actually getting is a byte array as a return value for webClient.UploadData that contains the Set-Cookie:hash= etc

I then need to try and use this in a subsequent request, but for the life of me cannot get it to work.

Anyone have any pointers?

I can post parts of the code if need be, I've implemented an extended WebClient (CookieAwareWebClient) to deal with the cookies, but at the point that the CookieAwareWebClient is processing the response, the hash cookie does not exist.




Previously knows as psycik

NextPVR Based HTPC:

2 x HVR3000 - DVB-S - Freeview, HVR3000 - DVB-T Freeview|HD, Nova-T 500 - Dual Freeview|HD, Digital Coax --> Yamaha RX-v540, 8600GT --> Samsung LA46A650D via HDMI
Clients:
Popcorn Hour A-100, 1xATV2, 1xATV3
Windows 7 Ultimate Host
4x2TB + 1x1.5TB using DriveBender, VMWare Server 2 with 1xW7, 2xW2k3 1xUbuntu 11.10 Desktop, 1xWHS2011, Plex


Create new topic
1148 posts

Uber Geek


  Reply # 654815 12-Jul-2012 21:41 Send private message

If you haven't already solved it, this works, if a bit ugly. 

I had to fix 1.5.4 as per this first though: http://www.gargoyle-router.com/phpbb/viewtopic.php?f=12&t=2590

EDIT: What, no [code] tags on geekzone?! :D  Also obviously put your password into password=********


using System;
using System.Net;
using System.Text;

namespace GargoyleLogin
{
class Program
{
static void Main()
{
var result = GetCookies("http://192.168.51.1/utility/get_password_cookie.sh", "password=*********");
Console.Out.Write("Cookies: " + result);
var csvResult = HttpGetWithCookies("http://192.168.51.1/bandwidth.csv", result);
Console.Out.Write("csv:\n" + csvResult);
Console.In.ReadLine();
}

private static string GetCookies(string uri, string parameters)
{
var req = WebRequest.Create(uri);
req.ContentType = "application/x-www-form-urlencoded";
req.Method = "POST";
byte[] bytes = Encoding.ASCII.GetBytes(parameters);
req.ContentLength = bytes.Length;
System.IO.Stream os = req.GetRequestStream();
os.Write(bytes, 0, bytes.Length);
os.Close();
WebResponse resp = req.GetResponse();
var sr = new System.IO.StreamReader(resp.GetResponseStream());
var cookies = sr.ReadToEnd().Trim();
return cookies.Replace("Set-Cookie:", "").Replace("path=/", "").Replace("\n", " ");
}

public static string HttpGetWithCookies(string uri, string cookies)
{
var req = WebRequest.Create(uri);
req.Headers["Cookie"] = cookies;
WebResponse resp = req.GetResponse();
var sr = new System.IO.StreamReader(resp.GetResponseStream());
return sr.ReadToEnd().Trim();
}
}
}




1573 posts

Uber Geek

Trusted

  Reply # 654817 12-Jul-2012 21:46 Send private message

Hm. Awesome. I'll try that tomorrow.




Previously knows as psycik

NextPVR Based HTPC:

2 x HVR3000 - DVB-S - Freeview, HVR3000 - DVB-T Freeview|HD, Nova-T 500 - Dual Freeview|HD, Digital Coax --> Yamaha RX-v540, 8600GT --> Samsung LA46A650D via HDMI
Clients:
Popcorn Hour A-100, 1xATV2, 1xATV3
Windows 7 Ultimate Host
4x2TB + 1x1.5TB using DriveBender, VMWare Server 2 with 1xW7, 2xW2k3 1xUbuntu 11.10 Desktop, 1xWHS2011, Plex




1573 posts

Uber Geek

Trusted

  Reply # 655015 13-Jul-2012 13:00 Send private message

Worked great thanks!!




Previously knows as psycik

NextPVR Based HTPC:

2 x HVR3000 - DVB-S - Freeview, HVR3000 - DVB-T Freeview|HD, Nova-T 500 - Dual Freeview|HD, Digital Coax --> Yamaha RX-v540, 8600GT --> Samsung LA46A650D via HDMI
Clients:
Popcorn Hour A-100, 1xATV2, 1xATV3
Windows 7 Ultimate Host
4x2TB + 1x1.5TB using DriveBender, VMWare Server 2 with 1xW7, 2xW2k3 1xUbuntu 11.10 Desktop, 1xWHS2011, Plex


Create new topic





Twitter »
Follow us to receive Twitter updates when new discussions are posted in our forums:



Follow us to receive Twitter updates when news items and blogs are posted in our frontpage:



Follow us to receive Twitter updates when new jobs are posted to our jobs board:



Follow us to receive Twitter updates when tech item prices are listed in our price comparison site:




News »

Trending now »
Hot discussions in our forums right now:

Sky outbid for EPL rights (Premier League Pass discussion)
Created by JonnyCam, last reply by yitz on 20-Jun-2013 20:21 (294 replies)
Pages... 18 19 20


Orcon Genius Go discussion
Created by freitasm, last reply by ptinson on 20-Jun-2013 22:10 (103 replies)
Pages... 5 6 7


Polar Blast
Created by BlueShift, last reply by Dav4122 on 20-Jun-2013 23:09 (39 replies)
Pages... 2 3


I am been sued - HELP!
Created by BaaaaD, last reply by mattgreen on 20-Jun-2013 21:31 (79 replies)
Pages... 4 5 6


Slingshot Global Mode announced
Created by freitasm, last reply by richms on 20-Jun-2013 22:10 (63 replies)
Pages... 3 4 5


Condenser Dryer: anyone has one?
Created by joker97, last reply by graemew on 18-Jun-2013 21:08 (31 replies)
Pages... 2 3


Sky News UK now streaming on Apple TV
Created by steve98, last reply by jarledb on 20-Jun-2013 12:00 (19 replies)
Pages... 2


Calling all mazda 3/Axela owners in NZ
Created by coolcat21, last reply by Kingy on 19-Jun-2013 09:51 (37 replies)
Pages... 2 3



Geekzone Jobs »
Most recent NZ jobs in technology:

Mobile Developer - iOS
Posted 20-Jun-2013 16:38

Systems Administrator
Posted 20-Jun-2013 16:38

Senior SharePoint Developer
Posted 20-Jun-2013 16:38

Mobile Developer - Android
Posted 20-Jun-2013 16:38

B2B Service Executive
Posted 20-Jun-2013 15:38

Systems Administrator
Posted 20-Jun-2013 15:38

Solutions Architect
Posted 20-Jun-2013 15:38


Geekzone Live »
Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.

Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.

Alternatively, you can receive a daily email with Geekzone updates.