JDownloader Community - Appwork GmbH
 

Reply
 
Thread Tools Display Modes
  #1  
Old 17.06.2011, 15:49
ptom85
Guest
 
Posts: n/a
Default Help for reconnecting THOMSON TG789vn

Does anyone know a way to reconnect with this router?

LiveHeader ReconnectionScript doesn't work neither with nor without RAW modus...
Reply With Quote
  #2  
Old 18.06.2011, 12:19
remi
Guest
 
Posts: n/a
Default

Please, read "Getting started with Reconnection".
Reply With Quote
  #3  
Old 18.06.2011, 12:43
ptom85
Guest
 
Posts: n/a
Default

I did read the text, that's why my title is exactly as demanded in the text :-)

I even tried 2 programs, one was named curl and the other one I don't remember anymore...

I didn't find any method that worked with my router and if I search for my router, I don't even find anything especially for it.

And in no program nor in jDonwloader my router is listed...
Reply With Quote
  #4  
Old 18.06.2011, 12:50
remi
Guest
 
Posts: n/a
Default

Did you already read the manual or contact the manufacturere for more information. Every modern router should have a web interface and a way to reset or restart it.
Reply With Quote
  #5  
Old 18.06.2011, 12:52
ptom85
Guest
 
Posts: n/a
Default

I do have a way to disconnect and then reconnect... And it works. But the recording from jDownloader doesn't work. I even added some pause tags to the script, but the script always fails... Enabling RAW or disabling doesn't help either...

Manual reconnection is no problem...
Reply With Quote
  #6  
Old 18.06.2011, 13:04
remi
Guest
 
Posts: n/a
Default

OK. I'm just trying to understand where you are.

How do you add pause tags to the script if the script can't be recorded?

Did you already try to reconnect with the web interface and without using the recorder?
Reply With Quote
  #7  
Old 18.06.2011, 13:15
ptom85
Guest
 
Posts: n/a
Default

I tried reconnecting after pressing the create script button in jDownloader... It records everything and I get a success response. If I then try a reconnect in jDownloader, it fails...

I added a [[[WAIT seconds="10"/]]] tag after EVERY [[[/STEP]]] tag... But even that didn't help...

And yes, I tried that. Through the web interface everything works fine...

Thx for your help
Reply With Quote
  #8  
Old 18.06.2011, 13:26
remi
Guest
 
Posts: n/a
Default

OK. You're much more advanced in the procedure than I initially thought.

Inserting wait statements randomly is not a good approach. A wait statement can be useful when your router takes a lot of time disconnecting. If the router isn't ready to accept a connect instruction it won't execute the instruction.

Can you please show your script?

Did you enable the automatic reconnect feature in the toolbar?
Reply With Quote
  #9  
Old 18.06.2011, 13:34
ptom85
Guest
 
Posts: n/a
Default

I didn't know which step is the disconnect step so I thought, inserting a 10s wait after EVERY point would help :-). The disconnect needs about 3-5 seconds, not more...

Here's the script, without added pauses:
Code:
[[[HSRC]]]
[[[STEP]]]
[[[REQUEST]]]
GET / HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /util.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /b_menu.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
POST /?be=0&l0=-1&l1=-1 HTTP/1.1
Host: %%%routerip%%%

0=13&1=INTERNET&2=1365217218&5=2
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /util.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /b_menu.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
POST /?be=0&l0=-1&l1=-1 HTTP/1.1
Host: %%%routerip%%%

0=12&1=INTERNET&2=2824878620&5=2
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /util.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /b_menu.js HTTP/1.1
Host: %%%routerip%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[/HSRC]]]
And no, I didn't because it doesn't work. I always tried a manual reconnect - I tried the change IP button at the bottom of the liveHeader page...
Reply With Quote
  #10  
Old 18.06.2011, 14:02
remi
Guest
 
Posts: n/a
Default

I would guess that the step containing the string "0=12&1=INTERNET&2=2824878620&5=2" is the connect step. I would put a wait of 20 seconds before that step. You can always decrease the wait time if it ever works.

There are other options you can change as well. Try increasing the "First IP check wait time (sec)" and the "Timeout for ip change [sec]" periods in the advanced Reconnection settings.

I think you should also test whether the IP address changes in real circumstances. There might be a bug in the Change IP button. In that case the log might reveal something that's causing the problem.
Reply With Quote
  #11  
Old 18.06.2011, 14:17
ptom85
Guest
 
Posts: n/a
Default

Ok, thanks for the tips. I will try them in the evening and tell you, if something worked.Bc I'm at University at the moment...

Thx
Reply With Quote
  #12  
Old 18.06.2011, 14:19
ptom85
Guest
 
Posts: n/a
Default

PS: do I have to put a step tag around the pause tag? Because I didn't do that the last time... Just to make sure :-)
Reply With Quote
  #13  
Old 18.06.2011, 14:22
remi
Guest
 
Posts: n/a
Default

Yes.

[[[STEP]]][[[WAIT seconds="????"/]]][[[/STEP]]]

Happy studying!
Reply With Quote
  #14  
Old 18.06.2011, 14:23
ptom85
Guest
 
Posts: n/a
Default

Ok. So maybe because of that it didn't work ;-).

We will see :-)

Thx :-)
Reply With Quote
  #15  
Old 18.06.2011, 19:21
ptom85
Guest
 
Posts: n/a
Default

OK, I tried that. I even tried increasing the "First IP check wait time (sec)" and the "Timeout for ip change [sec]" to 15s and 30s.

Both didn't help...
Reply With Quote
  #16  
Old 18.06.2011, 19:44
ptom85
Guest
 
Posts: n/a
Default

PS: I tried adding the pause in RAW and normal mode, neither did work... But I can see, that he's waiting for 20s...

Actually it has to work, doesn't it? The script just sends a http request, waits, and sends another request... The same as the browser does...
Reply With Quote
  #17  
Old 19.06.2011, 10:56
remi
Guest
 
Posts: n/a
Default

Can you please check your IP address with another tool or with whatismyipaddress.com while the procedure is running? Maybe, jD is not able to confirm the IP address change.
Reply With Quote
  #18  
Old 19.06.2011, 16:59
ptom85
Guest
 
Posts: n/a
Default

I already checked that anyway... It really doesn't work... :-(
Reply With Quote
  #19  
Old 20.06.2011, 11:10
remi
Guest
 
Posts: n/a
Default

Then something might be blocking jD. Allow java and javaw in your firewall and virus software.
Reply With Quote
  #20  
Old 21.06.2011, 13:08
ptom85
Guest
 
Posts: n/a
Default

I even tried disabling my firewall and avira, but it didn't help either :-(
Reply With Quote
  #21  
Old 21.06.2011, 13:15
remi
Guest
 
Posts: n/a
Default

Disabling won't help. Configuring or un-installing them will help.

It's possible you need special removal software and registry cleaners for your virus.

Always restart your computer after such removals, because viruses are very difficult to remove.

If you've a firewall in your router you can temporarily remove that as well.
Reply With Quote
  #22  
Old 21.06.2011, 14:00
ptom85
Guest
 
Posts: n/a
Default

If I try it with fiddler, I can see, that I get a 403 forbidden response. Do you know, who is sending this response? Is it the router?

And I'm just using the windows firewall and avira. And avira doesn't block anything, I am sure.
Reply With Quote
  #23  
Old 21.06.2011, 14:10
remi
Guest
 
Posts: n/a
Default

You need to inspect the traffic between jD and the router. If fiddler doesn't show the source and the destination of the packages you need to use another tool.

FYI:

Quote:
403 Forbidden

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.
(source : "**External links are only visible to Support Staff**)
Reply With Quote
  #24  
Old 21.06.2011, 14:23
ptom85
Guest
 
Posts: n/a
Default

Actually, Fiddler doesn't show anything from jD... Even if I just watch jD...

But I tried sending the request that Firefox sends again, and then I get the 403 answer, although Firefox gets a good response...

My router has a firewall, but I can't get into it... It says, it's set to transparent. But it's not telling me more...

What do you think, that the router refuses the connection from my java prog.?
Reply With Quote
  #25  
Old 21.06.2011, 16:10
ptom85
Guest
 
Posts: n/a
Default

Actually, I found or better made a way, that's working for me :-).

I just coded a program, that opens an window with a browser, simulates a click, waits, simulates a second click and closes... The only bad thing in the moment is, that the window is shown in front of everything, because otherwise I don't know jet how to simulate the click event... But probably there is a way...

But I'm still interested in solving the problem, but I can't just remove my firewall...
Reply With Quote
  #26  
Old 21.06.2011, 22:38
Freeloader
Guest
 
Posts: n/a
Default

0=12&1=INTERNET&2=2824878620&5=2 does the value change after evry new reconnection?

it looks like some kind of key doesnt it ? or is it my imagination? after every recoonect the key should change? therefore shouldnt work?

I already have a source code for that router will send it to jiaz when I have time, guess it needs to be parsed

Last edited by Freeloader; 21.06.2011 at 22:42.
Reply With Quote
  #27  
Old 22.06.2011, 09:38
ptom85
Guest
 
Posts: n/a
Default

mhm... maybe... Actually I thought, I checked that, but maybe I just took a look at the O=12 and the 2 at the end... maybe it's really a key in the middle... I will check that and replay.
Reply With Quote
  #28  
Old 22.06.2011, 10:34
remi
Guest
 
Posts: n/a
Default

If it would be a key then there are at least two, because I see two of those strings in the script.

The problem is not the firewall on your router.

The problem is the virus and/or the firewall on your computer. I've experience with some of those tools and I know how badly some of them are coded. The only test worthwhile at this moment is removing them to see whether they block the traffic. You might need special un-install tools and registry cleaners.

Of course, you're free to conduct other tests. It's your time, not mine.
Reply With Quote
  #29  
Old 23.06.2011, 01:21
ptom85
Guest
 
Posts: n/a
Default

Ok, now I know the problem. It's like you said, after EVERY request, a key is generated. It comes like this in the html response:
<input type='hidden' name='2' value='2247079314'>

Does the scripting language in jD allow to read such values and reconstruct new requests?

On the other hand, it's probably not much work in perl or so...
Reply With Quote
  #30  
Old 23.06.2011, 02:07
ptom85
Guest
 
Posts: n/a
Default

I just found a way, that works perfectly and flowless. I am now reconnecting with a simple and very short perl script :-). It's optimal for me, because I've installed perl anyway...

Of cource I can post the script if someone is interested in it

Thx a lot to everyone though :-)
Reply With Quote
  #31  
Old 23.06.2011, 10:34
remi
Guest
 
Posts: n/a
Default

Yes, publish it anyway. Someone on this planet might buy the same router.
Reply With Quote
  #32  
Old 23.06.2011, 11:27
ptom85
Guest
 
Posts: n/a
Default

PERL Script for reconnection:

Code:
use strict;

use LWP::UserAgent;
use HTTP::Request;
use URI::URL;

# main
my $key = find_key(send_request("GET"));
$key = find_key(send_request("POST", "0=13&1=aINTERNET&2=".$key."&5=2"));
print "Disconnected!\nWaiting for connection...\n";
send_request("POST", "0=12&1=aINTERNET&2=".$key."&5=2");
print "Connected!\n";

################
# find key
################
sub find_key()
{
	my ($content) = @_;

	if ($content =~ m/<input type='hidden' name='2' value='(\d+)'/)
	{
		return $1;
	}
	return;
}

################
# send request
################
sub send_request()
{
	my($type, $content) = @_;
	
	my $user_agent  = new LWP::UserAgent;
	my $url  = new URI::URL(($type == "POST") ? "**External links are only visible to Support Staff** : "**External links are only visible to Support Staff**);
	my $req = new HTTP::Request($type, "$url");
	if (defined($content) && $type == "GET")
	{
		$req->content($content);
		$req->content_type("application/x-www-form-urlencoded");
	}
	return $user_agent->request($req)->content;
}
The only bad thing is, that you have to have installed perl...
Reply With Quote
  #33  
Old 24.06.2011, 21:32
Freeloader
Guest
 
Posts: n/a
Default

You should be able to do the same with JDs script format, heres an example how jiaz did it for another router

Spoiler:
[[[HSRC]]]

[[[STEP]]]
[[[REQUEST]]]
GET /setup.cgi?next_file=Status.htm HTTP/1.1
Host: %%%routerip%%%
Authorization: Basic %%%basicauth%%%

[[[/REQUEST]]]
[[[PARSE]]]
num:SID.*?value=\"(\d+)
[[[/PARSE]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
POST /setup.cgi?next_file=Status.htmi HTTP/1.1
Host: %%%routerip%%%
Authorization: Basic %%%basicauth%%%

ctype=pppoe&ifstatus=Up&todo=disconnect&SID=%%%num%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]][[[WAIT seconds="4"/]]][[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
GET /setup.cgi?next_file=Status.htm HTTP/1.1
Host: %%%routerip%%%
Authorization: Basic %%%basicauth%%%

[[[/REQUEST]]]
[[[PARSE]]]
num:SID.*?value=\"(\d+)
[[[/PARSE]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST]]]
POST /setup.cgi?next_file=Status.htm HTTP/1.1
Host: %%%routerip%%%
Authorization: Basic %%%basicauth%%%

ctype=pppoe&ifstatus=Down&todo=connect&SID=%%%num%%%
[[[/REQUEST]]]
[[[/STEP]]]

[[[/HSRC]]]
Reply With Quote
  #34  
Old 16.11.2011, 19:16
heldiho53
Guest
 
Posts: n/a
Default

Hello I'm new in this forum (newbie with Jdownloader too) and I have the same router as ptom85, so I can't reconnect. What should I do with the perl script? (Sorry I didn't understand). I tried to start the script in CMD and it says: Disconnecting... and then connecting again but my Ip adress didn't change. Can you help me please ?
Reply With Quote
  #35  
Old 16.11.2011, 21:31
Freeloader
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by heldiho53 View Post
Hello I'm new in this forum (newbie with Jdownloader too) and I have the same router as ptom85, so I can't reconnect. What should I do with the perl script? (Sorry I didn't understand). I tried to start the script in CMD and it says: Disconnecting... and then connecting again but my Ip adress didn't change. Can you help me please ?
First make sure that you have a dynamic Ip address visit whatismyip.com (memorize ur IP) then > turn off the power switch on ur router and then turn it back on and refresh whatismyip.com > if ur IP has chnged then it is dynamic. If it hasnt changed then its "sticky IP"
Reply With Quote
  #36  
Old 01.02.2012, 13:01
Viper780
Guest
 
Posts: n/a
Default

Hi everyone

I've also an Thomson TG789Vn but in an other IP Range (i belive he has Telekom Austria as an ISP but that shouldn't matter except for the Router IP adress in the script, but this is one line to change ).

My problem is that he hasn't entered any account information, like username and password to login but for my config it is requierd and i cant ad anny user without an name or password.

And yes i've an dynamic IP Adress (changes after an reboot or an reconnect) and no the RecconectionSCript helped me either
Reply With Quote
  #37  
Old 01.02.2012, 13:16
remi
Guest
 
Posts: n/a
Default

Try Jiaz/Freeloaders' script in post #33. Enter your login and password in jD's reconnection -> LiveHeader/Curl window.
Reply With Quote
  #38  
Old 01.02.2012, 13:34
Freeloader
Guest
 
Posts: n/a
Default

Viper780 send us the script you recorded with JDownloader and also send us the source code of the page where u disconnect and reconnect the router
Reply With Quote
  #39  
Old 01.02.2012, 14:41
Viper780
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by remi View Post
Try Jiaz/Freeloaders' script in post #33. Enter your login and password in jD's reconnection -> LiveHeader/Curl window. ;)
that script also didn't work for me

Quote:
Originally Posted by Freeloader View Post
Viper780 send us the script you recorded with JDownloader and also send us the source code of the page where u disconnect and reconnect the router
The scriptcode:

Spoiler:

Code:
[[[HSRC]]]
    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET / HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET /login.lp HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        if-none-match: ""3e51-a9371f20""
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        POST /login.lp HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        content-type: application/x-www-form-urlencoded
        content-length: 80

rn=QS3djNtDOknkk1LXjR7qLAA%3D&hidepw=cedc77d441fb6303a9decaa64bf92074&user=root2
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET / HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET /util.js HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: */*
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET /b_menu.js HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: */*
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        POST /?be=0&l0=-1&l1=-1 HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        content-type: application/x-www-form-urlencoded
        content-length: 32

0=13&1=Internet&2=3142419004&5=1
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET /util.js HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: */*
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        GET /b_menu.js HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: */*
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        [[[/REQUEST]]]
    [[[/STEP]]]

    [[[STEP]]]
        [[[REQUEST raw="true"]]]
        POST /?be=0&l0=-1&l1=-1 HTTP/1.1
        Host: %%%routerip%%%
        user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
        accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
        accept-encoding: gzip, deflate
        connection: keep-alive
        cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
        content-type: application/x-www-form-urlencoded
        content-length: 32

0=12&1=Internet&2=2549589470&5=1
        [[[/REQUEST]]]
    [[[/STEP]]]

[[[/HSRC]]]


the sourcecode of the homepage with an connect/disconnect button:

Spoiler:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "**External links are only visible to Support Staff**>
<html>
<head>
  <title>Thomson Gateway - Home</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <script type="text/javascript">var g_navitem = -1;</script>
  <script type="text/javascript"> var g_focus = -1;</script>
  <script type='text/javascript' src='/util.js'></script>

  <link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body background='/images/demo.gif' onLoad="setFocus();" height="100%" style="margin:0px;">
  <noscript>
    <h1>THOMSON - Thomson</h1>
    <h4>To view the Web interface of your device, JavaScript must be supported and enabled on your browser! <br><br>Please enable scripting and refresh your browser.</h4>
  </noscript>
  <table cellspacing="0" cellpadding="0" border="0" style="margin-top:10px;" height="100%">
    <tr>
      <td colspan="2">
        <table cellspacing="0" cellpadding="0" border="0" class="banner" width="100%">
          <tr>


          	<td height="69" width="610" style="background:url(/images/banner_left.gif) no-repeat top left;">
				<span id="productName" class="product" colspan="2">
		          	<script type="text/javascript">
		                var headerText = 'Thomson TG789vn';
		                document.write(headerText.replace(" ","&nbsp;"));
		              </script>
				</span>	              
	              <span class="displaySettings" id="displaySettings">

	              	<script type="text/javascript">             			              		
	              		if (0==1) {	              			
							document.write('Display level'+':&nbsp;');
							if (g_state[BE] ==0) {								
								document.write('<strong>'+'Basic'+'</strong>'+'&nbsp;');
								document.write('<a href="javascript:switchmode(1)">'+'Expert'+'</a>');
							} else {
								document.write('<a href="javascript:switchmode(0)">'+'Basic'+'</a>'+'&nbsp;');
								document.write('<strong>'+'Expert'+'</strong>');							
							}
						}
					</script>
					<span class="langSelect" id="langSelect">
						<script type="text/javascript">
	              			if (0==1)
								document.write('&nbsp;|&nbsp;');
							document.write('Language'+':');
						</script><form name="langSelect" action="/cgi/language.cgi" method=post><span class="langSelect"><input type="hidden" name=30 value="en"><input type="hidden" name='2' value='2026676547'></span></form>

					</span>            
				</span>
                <script type="text/javascript">					
                    if (0==1) {
                      var start;
                      var urlstr = "://";
                      if ((start=location.href.indexOf(urlstr)) != -1) {
                        var url = new String(location.href.substr(start+urlstr.length));
                        GoAndRemember("/aws.lp", "url="+url);
                      }
                    }
                </script>
				<script type="text/javascript">
					if (g_state[NM] ==0) {
						if (document.getElementById('langSelect').innerHTML.search("setLanguage")==-1)
							document.getElementById('langSelect').style.visibility = "hidden";
					} else {
						document.getElementById('displaySettings').style.visibility = "hidden";
					}
	              </script>	
	              <script type="text/javascript">					
					if ((g_state[NM] ==1) || ((document.getElementById('langSelect').innerHTML.search("setLanguage")==-1) && (0==0)) ) {
						document.getElementById('displaySettings').style.visibility = "hidden";
					} else {
						document.getElementById('productName').innerHTML+="<br>"
						if (document.getElementById('langSelect').innerHTML.search("setLanguage")==-1)
								document.getElementById('langSelect').style.visibility = "hidden";						
					}
	              </script>	
            </td>

            <td class="login">
				<script type="text/javascript">
					var username = new String('root2');
					var loginText = 'Logged in as'+':&nbsp;';
					if (username.length > 0 && 1 && g_state[NM] ==0)
						document.write(loginText+'<a href="javascript:openWndCentered(\'/cgi/b/users/usrpage/?nm=1\', \'userpage\', 795, 560, \'yes\', \'yes\')">'+username+'</a>');
				</script>

            </td>            
          </tr> 
        </table>
      </td>
    </tr>
    <tr>
      <td valign="top" style="padding: 25px 30px 0px  15px;">
        <script type="text/javascript">writeMenu();</script>
      </td>




      <td valign="top">
        <table cellpadding="0" cellspacing="0" border="0" style="margin-top:15px;margin-right:15px;">

          <script type="text/javascript">writeNavBar();</script>
          <tr>

            <td>
              <table width="700" cellspacing="0" cellpadding="0" border="0">
                <tr>

                  <td>

                   <script type="text/javascript">pm_write_messages();</script>


<div class='contentcontainer'>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>
<tr><td class='icon' valign='top' width='100px'><a href="javascript:GoAndRemember('/cgi/b/ST/','')"><img src='/images/stxx__xl.gif' alt='Thomson Gateway'></a></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Thomson Gateway</span></td><td align='right'></td></tr>
<tr><td colspan='2'><table cellspacing='0' cellpadding='0'>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/info/', '' )">Information</a></td><td width='20'></td><td class='homeline' colspan='2' width='250'></td></tr>

<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>




<tr><td width='40' valign='top'></td> <td class='homeline' width='150'>Product Name:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>TG789vn</td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'>Software Release:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>8.4.3.H</td></tr>
</table></td></tr></table></td></tr></table></div>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>
<tr><td class='icon' valign='top' width='100px'><a href="javascript:GoAndRemember('/cgi/b/bb/','')"><img src='/images/bbc_grxl.gif' alt='Broadband Connection OK'></a></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Broadband Connection</span></td><td align='right'></td></tr>






<tr><td colspan='2'><table cellspacing='0' cellpadding='0'>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/is/_bridge_/ov/', 'name=vdsl2' )">vdsl2</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Connected</td></tr>
<form name='PPPConn0' action='/' method='post'>
<input type='hidden' name='0' value=''>
<input type='hidden' name='1' value=''>
<input type='hidden' name='2' value='1641833525'>



<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/is/_pppoe_/ov/', 'name=Internet' )">Internet</a>:</td><td width='20'></td><td class='homeline' width='150'>Connected</td><td width='150' align='right'><input type='button' name='13' value='Disconnect' onClick='submitForm(document.PPPConn0,13,0,"Internet","",0,"")' >







</td></tr>
<input type='hidden' name='5' value="1">
</form>
</table></td></tr></table></td></tr></table></div>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>
<tr><td class='icon' valign='top' width='100px'><a href="javascript:GoAndRemember('/cgi/b/toolbox/','')"><img src='/images/tbox__xl.gif' alt='Toolbox'></a></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Toolbox</span></td><td align='right'></td></tr>
<tr><td colspan='2'><table cellspacing='0' cellpadding='0'>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/remote_admin.lp', '' )">Remote Access</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Disabled</td></tr>

<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/games/ov/', '' )">Game &amp; Application Sharing</a></td><td width='20'></td><td class='homeline' colspan='2' width='250'></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/secpol/ov/', '' )">Firewall</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>-</td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/sfltr/ov/', '' )">Parental Control</a></td><td width='20'></td><td class='homeline' colspan='2' width='250'></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>









<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/_voip_/ov/', '' )">Telephony</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Disabled</td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/_voip_/pb/', '' )">Address Book</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Disabled</td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/sipserver/ov/', '' )">Sip Server</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Disabled</td></tr>

</table></td></tr></table></td></tr></table></div>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>

<tr><td class='icon' valign='top' width='100px'><a href="javascript:GoAndRemember('/cgi/b/lan/','')"><img src='/images/hnw___xl.gif' alt='Home Network'></a></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Home Network</span></td><td align='right'></td></tr>
<tr><td colspan='2'><table cellspacing='0' cellpadding='0'>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/iwla__la.gif' alt='WLAN Interface'></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/_wli_/ov/', 'name=WLAN: Salierigasse%252034_8' )">Wireless</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=NexusS&key=00:21:6b:cc:bd:92' )">NexusS</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=Unknown-38-e7-d8-67-58-f9&key=38:e7:d8:67:58:f9' )">Unknown-38-e7-d8-67-58-f9</a></td></tr>


<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=NexusS&key=78:d6:f0:0f:be:d9' )">NexusS</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=android-3399bf22450ee1a2&key=00:26:37:3b:1b:c7' )">android-3399bf22450ee1a2</a></td></tr>








<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=ubuntu&key=00:15:00:5e:83:4c' )">ubuntu</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=Unknown-f0-a2-25-a6-99-94&key=f0:a2:25:a6:99:94' )">Unknown-f0-a2-25-a6-99-94</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>


<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=user-desktop&key=74:2f:68:ee:28:db' )">user-desktop</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/ieth__la.gif' alt='Ethernet Interface'></td> <td class='homeline' width='150'>Ethernet:</td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=q9550&key=00:22:15:4f:f3:fd' )">q9550</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=ss4200&key=00:15:17:31:c6:dd' )">ss4200</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=ET9000&key=00:16:b4:02:fb:94' )">ET9000</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>

<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=julian&key=00:16:17:91:3f:05' )">julian</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=Unknown-00-19-c5-f0-ed-44&key=00:19:c5:f0:ed:44' )">Unknown-00-19-c5-f0-ed-44</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'><a href="javascript:GoAndRemember('/cgi/b/_dev_/ov/', 'name=Unknown-70-71-bc-43-e7-d0&key=70:71:bc:43:e7:d0' )">Unknown-70-71-bc-43-e7-d0</a></td></tr>
<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'><img src='/images/ipho__la.gif' alt='Phone Interface'></td> <td class='homeline' width='150'><a href="javascript:GoAndRemember('/cgi/b/_voip_/ov/', '' )">Telephony</a>:</td><td width='20'></td><td class='homeline' colspan='2' width='250'>Phone 1</td></tr>



<tr><td height='5' colspan='5'><img src='/images/spacer.gif' width='1' height='5' border='0' alt=''></td></tr>
<tr><td width='40' valign='top'></td> <td class='homeline' width='150'></td><td width='20'></td><td class='homeline' colspan='2' width='250'>Phone 2</td></tr>










</table></td></tr></table></td></tr></table></div>
<script type='text/javascript'>generateTasks()</script>
</div>
                  </td>
                </tr>
              </table>
            </td>
          </tr>

        </table>
      </td>
    </tr>
  </table>
</body>
</html>


Or this one a special page only for this connection :

Spoiler:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "**External links are only visible to Support Staff**>
<html>
<head>
  <title>Thomson Gateway - Internet</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <script type="text/javascript">var g_navitem = -1;</script>
  <script type="text/javascript"> var g_focus = -1;</script>
  <script type='text/javascript' src='/util.js'></script>

  <link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body background='/images/demo.gif' onLoad="setFocus();" height="100%" style="margin:0px;">
  <noscript>
    <h1>THOMSON - Thomson</h1>
    <h4>To view the Web interface of your device, JavaScript must be supported and enabled on your browser! <br><br>Please enable scripting and refresh your browser.</h4>
  </noscript>
  <table cellspacing="0" cellpadding="0" border="0" style="margin-top:10px;" height="100%">
    <tr>
      <td colspan="2">
        <table cellspacing="0" cellpadding="0" border="0" class="banner" width="100%">
          <tr>

          	<td height="69" width="610" style="background:url(/images/banner_left.gif) no-repeat top left;">
				<span id="productName" class="product" colspan="2">
		          	<script type="text/javascript">
		                var headerText = 'Thomson TG789vn';
		                document.write(headerText.replace(" ","&nbsp;"));
		              </script>
				</span>	              
	              <span class="displaySettings" id="displaySettings">
	              	<script type="text/javascript">             			              		
	              		if (0==1) {	              			
							document.write('Display level'+':&nbsp;');
							if (g_state[BE] ==0) {								
								document.write('<strong>'+'Basic'+'</strong>'+'&nbsp;');
								document.write('<a href="javascript:switchmode(1)">'+'Expert'+'</a>');
							} else {
								document.write('<a href="javascript:switchmode(0)">'+'Basic'+'</a>'+'&nbsp;');
								document.write('<strong>'+'Expert'+'</strong>');							
							}
						}
					</script>
					<span class="langSelect" id="langSelect">
						<script type="text/javascript">
	              			if (0==1)
								document.write('&nbsp;|&nbsp;');
							document.write('Language'+':');
						</script><form name="langSelect" action="/cgi/language.cgi" method=post><span class="langSelect"><input type="hidden" name=30 value="en"><input type="hidden" name='2' value='2912686527'></span></form>

					</span>            
				</span>
                <script type="text/javascript">					
                    if (0==1) {
                      var start;
                      var urlstr = "://";
                      if ((start=location.href.indexOf(urlstr)) != -1) {
                        var url = new String(location.href.substr(start+urlstr.length));
                        GoAndRemember("/aws.lp", "url="+url);
                      }
                    }
                </script>
				<script type="text/javascript">
					if (g_state[NM] ==0) {
						if (document.getElementById('langSelect').innerHTML.search("setLanguage")==-1)
							document.getElementById('langSelect').style.visibility = "hidden";
					} else {
						document.getElementById('displaySettings').style.visibility = "hidden";
					}
	              </script>	
	              <script type="text/javascript">					
					if ((g_state[NM] ==1) || ((document.getElementById('langSelect').innerHTML.search("setLanguage")==-1) && (0==0)) ) {
						document.getElementById('displaySettings').style.visibility = "hidden";
					} else {
						document.getElementById('productName').innerHTML+="<br>"
						if (document.getElementById('langSelect').innerHTML.search("setLanguage")==-1)
								document.getElementById('langSelect').style.visibility = "hidden";						
					}
	              </script>	
            </td>
            <td class="login">
				<script type="text/javascript">
					var username = new String('root2');
					var loginText = 'Logged in as'+':&nbsp;';
					if (username.length > 0 && 1 && g_state[NM] ==0)
						document.write(loginText+'<a href="javascript:openWndCentered(\'/cgi/b/users/usrpage/?nm=1\', \'userpage\', 795, 560, \'yes\', \'yes\')">'+username+'</a>');
				</script>

            </td>            
          </tr> 
        </table>
      </td>
    </tr>
    <tr>
      <td valign="top" style="padding: 25px 30px 0px  15px;">
        <script type="text/javascript">writeMenu();</script>
      </td>

      <td valign="top">
        <table cellpadding="0" cellspacing="0" border="0" style="margin-top:15px;margin-right:15px;">
          <script type="text/javascript">writeNavBar();</script>
          <tr>
            <td>
              <table width="700" cellspacing="0" cellpadding="0" border="0">
                <tr>
                  <td>

                   <script type="text/javascript">pm_write_messages();</script>


<div class='contentcontainer'>
<form name='PPPConn' action='/cgi/b/is/_pppoe_/ov/' method='post'>
<input type='hidden' name='0' value=''>
<input type='hidden' name='1' value=''>
<input type='hidden' name='2' value='3305701000'>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>
<tr><td class='icon' valign='top' width='100px'><img src='/images/cintgrxl.gif' alt='Internet Connection OK'></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Internet</span></td><td align='right'><input type='button' name='13' value='Disconnect' onClick='submitForm(document.PPPConn,13,0,"Internet","",0,"")' >
</td></tr>

<tr><td colspan='2'><input type='hidden' name='5' value="1">
<br><table cellspacing='0' cellpadding='0' width='100%'><tr><td width='40' valign='top'><img src='/images/bull__md.gif' alt=''></td><td valign='top'>
<span class='blocktitle'>Connection Information</span><br>
<table width='100%' class='datatable' cellspacing='0' cellpadding='0'>
<tr><td></td><td width='30px'></td><td width='220px'></td><td width='50px'></td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Uptime:</td><td colspan='3'>0 days, 0:07:08</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Data Transferred (Sent/Received) [MB/GB]:</td><td colspan='3'>110,80 / 3,73</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Username:</td><td colspan='3'>000031986@vdsl.sil.at</td></tr>

<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Password:</td><td colspan='3'>********</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Remember Password:</td><td colspan='3'>Yes</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>IP Address:</td><td colspan='3'>188.118.241.45</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>
<tr><td width='170'>Primary DNS:</td><td colspan='3'>213.129.232.1</td></tr>
<tr><td height='7' colspan='4'><img src='/images/spacer.gif' width='1' height='7' border='0' alt=''></td></tr>

<tr><td width='170'>Secondary DNS:</td><td colspan='3'>213.129.226.2</td></tr>
</table>
</td></tr></table>
</td></tr></table></td></tr></table></div>
</form>
<script type='text/javascript'>generateTasks()</script>
</div>
                  </td>
                </tr>
              </table>
            </td>

          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
</html>
Reply With Quote
  #40  
Old 01.02.2012, 16:12
Freeloader
Guest
 
Posts: n/a
Default

record the script in normal mode dont use raw format test the script below before sending me normal script



I want you to set JD log level to all and test the script , if it fails send me the log file and your normal script

Spoiler:
Code:
[[[HSRC]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
GET / HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
GET /login.lp HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
if-none-match: ""3e51-a9371f20""
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
POST /login.lp HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
content-type: application/x-www-form-urlencoded
content-length: 80

rn=QS3djNtDOknkk1LXjR7qLAA%3D&hidepw=cedc77d441fb6303a9decaa64bf92074&user=root2
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
GET / HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=

[[[/REQUEST]]]
[[[PARSE]]]
num:'hidden'.name='2'.value='(\d+)
[[[/PARSE]]]
[[[/STEP]]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
POST /?be=0&l0=-1&l1=-1 HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
content-type: application/x-www-form-urlencoded
content-length: 32

0=13&1=Internet&2=%%%num%%%&5=1
[[[/REQUEST]]]
[[[/STEP]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
GET / HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=

[[[/REQUEST]]]
[[[PARSE]]]
num:name='2'.value='(\d+)'></
[[[/PARSE]]]
[[[/STEP]]]]

[[[STEP]]]
[[[REQUEST raw="true"]]]
POST /?be=0&l0=-1&l1=-1 HTTP/1.1
Host: %%%routerip%%%
user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
accept-language: de-at,de;q=0.8,de-de;q=0.7,en;q=0.5,en-gb;q=0.3,en-us;q=0.2
accept-encoding: gzip, deflate
connection: keep-alive
cookie: xAuth_SESSION_ID=QS3djNtDOknkk1LXjR7qLAA=
content-type: application/x-www-form-urlencoded
content-length: 32

0=12&1=Internet&2=%%%num%%%&5=1
[[[/REQUEST]]]
[[[/STEP]]]

[[[/HSRC]]]

Last edited by Freeloader; 01.02.2012 at 16:25.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 16:42.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.