Hi Proxo Master,
Sorry for asking basic command in Proxomitron. I want to ask you, is there simple way to add query command: Front query, back query and middle query in proxomitron. I want configure proxo so it have function like query command in opera mini handler.
I want modify command, so the request site will redirect and in proxomitron log window will look
Front Query : GET
http://[email protected] HTTP/1.1
or
Back Query : GET
http://[email protected] HTTP/1.1
Can you tell me how to write the command. I want add somesite.com@ in every time i browse. Thanks very much for everyone who show me the specific command how to add that in Front, Middle, and Back Query. Sorry for my stupid question
(Oct. 08, 2012 07:20 AM)ciprut003 Wrote: [ -> ]Sorry for my stupid question
Actually, I'm not sure it is possible but this does work in the test window.
Code:
[HTTP headers]
In = FALSE
Out = FALSE
Key = "! : RDIR:query back (0ut)"
URL = "\1&$RDIR(http:@//\[email protected])"
In = FALSE
Out = FALSE
Key = "! : RDIR:query front (0ut)"
URL = "\1&$RDIR(http:@//somesite.com@\1)"
(Oct. 09, 2012 12:15 AM)JJoe Wrote: [ -> ] (Oct. 08, 2012 07:20 AM)ciprut003 Wrote: [ -> ]Sorry for my stupid question
Actually, I'm not sure it is possible but this does work in the test window.
Code:
[HTTP headers]
In = FALSE
Out = FALSE
Key = "! : RDIR:query back (0ut)"
URL = "\1&$RDIR(http:@//\[email protected])"
In = FALSE
Out = FALSE
Key = "! : RDIR:query front (0ut)"
URL = "\1&$RDIR(http:@//somesite.com@\1)"
Thanks master JJoe Its work,
Actually, there are still some questions yet. I want to know how to configure Proxomitron so it has totally functions like Operamini handler.
How to add command custom http server and custom http socket in proxomitron? Can you show me the command? And also the other command to Add port to Non-port URL...
Thank u so much, Master JJOE
(Oct. 09, 2012 12:44 PM)ciprut003 Wrote: [ -> ]How to add command custom http server and custom http socket in proxomitron? Can you show me the command? And also the other command to Add port to Non-port URL...
I don't think the Proxomitron can use socket protocol but I have never tried.
To have the Proxomitron use an http proxy server,
http://proxomitron.info/45/help/External...ialog.html . However, I haven't tried using a "@" as in
http://www.globe.com.ph/globe.asp@8080.
To remove or add strings (ports) and prevent addition of unwanted / try something like
Remove:
\#string\#&$RDIR(http:@//\@@somesite.com)
or
\0string\1&$RDIR(http:@//\0\
[email protected])
Add port:
\0&$RDIR(http:@//\
[email protected])
The specifics depend upon need.
Notes;
The @ in "$RDIR(http:@//" is not standard use. Its use causes the Proxomitron to provide desired output but there may be consequences.
I have any problem and want to ask.
This is about RDIR and JUMP. The Similar function is to redirect to another URL. However, JUMP just tells the browser to go to the new location. my problem is when i use JUMP function, there is confirmation dialog in my browser. I want go to google.com URL By Jumping from facebook
I have written a command like this, just like writing RDIR command
In = FALSE
Out = TRUE
Key = "! : JUMP:0.facebook.com (0ut)"
URL = "\1&$JUMP(http:@//0.facebook.com@\1)"
Can someone explain to me the fault that occurred?
Not really a fault.
It may be possible to embed username and password for a resource in a url. Looks like http(s)://username:password@resource.
Evidently your browser recognizes it and $JUMP (unlike $RDIR) allows the browser to see it.
IE dropped support for embed username and password under http(s),
http://support.microsoft.com/default.asp...LN];834489 .
Quote:Internet Explorer versions 3.0 to 6.0 support the following syntax for HTTP or HTTPS URLs:
http(s)://username:password@server/resource.ext
You can use this URL syntax to automatically send user information to a Web site that supports the basic authentication method.
A malicious user might use this URL syntax to create a hyperlink that appears to open a legitimate Web site but actually opens a deceptive (spoofed) Web site. For example, the following URL appears to open http://www.wingtiptoys.com but actually opens http://example.com:
http://[email protected]
Note In this case, Internet Explorer 6 Service Pack 1 (SP1) and Internet Explorer 6 for Microsoft Windows Server 2003 only display "http://example.com" in the Address bar. However, earlier versions of Internet Explorer display "http://[email protected]" in the Address bar.
Additionally, malicious users can use this URL syntax together with other methods to create a link to a deceptive (spoofed) Web site that displays the URL to a legitimate Web site in the Status bar, Address bar, and Title bar of all versions of Internet Explorer.
Another problem with $JUMP is that you must add something to prevent an infinite loop.
\0&$JUMP(siteb)
A. The browser requests sitea,
B. Proxomitron $JUMPs to siteb,
C. Browser requests siteb,
D. Go To B and start Infinite loop
(^siteb)\0&$JUMP(siteb) doesn't loop.
Assuming the $JUMP works after dismissing the "Confirm" dialog, the browser may allow you to disable the warnings.