From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: Request to merge: new-updxlrtr-v3.0: Enabling GET-Params for %xlrtrsettings
Date: Fri, 26 Apr 2013 12:35:41 +0200 [thread overview]
Message-ID: <1366972541.32654.154.camel@rice-oxley.tremer.info> (raw)
In-Reply-To: <CAAiW7AcJw4j9MfnZVjoZ3pg02t1udXPCfR0xHU-p9XS6s8Xk+w@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1140 bytes --]
On Thu, 2013-04-25 at 13:55 +0200, Jörn-Ingo Weigert wrote:
> I'm not really happy about re-implementing basic Features of HTML via
> JS,
> just cause of a limited processing (and thats what this return if...
> is)
No, it is a lot easier to make this kind of attack - without JS. All the
JS interpreters in modern browsers have a restriction that they cannot
send requests across different domains. That does not count for image
URL, etc.
For example the following code would indeed work:
<img src="https://192.168.1.1:444/cgi-bin/exploitable.cgi?blah=blubb" ...>
You cannot send POST requests that easy.
> Sure, if there is a better solution to only on GET and POST methods it
> would be great to implement
My proposal would be to create a new function which only reads the query
string and returns a hash array with all the attributes that you want to
have. All the rest is ignored. For example:
# URL: https://192.168.1.1:444/cgi-bin/some.cgi?param1=123
my @values = ("param1");
my %hash = getquerystring(@values);
print $hash{'param1'};
> 123
This leaves getcgihash untouched, so we don't create new problems here.
-Michael
next parent reply other threads:[~2013-04-26 10:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CAAiW7AcJw4j9MfnZVjoZ3pg02t1udXPCfR0xHU-p9XS6s8Xk+w@mail.gmail.com>
2013-04-26 10:35 ` Michael Tremer [this message]
[not found] <CAAiW7AdWAdBvkLqNGjcE0MLp-LqhP_T2rjRpktdSBRurjfzfWA@mail.gmail.com>
2013-04-25 10:29 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1366972541.32654.154.camel@rice-oxley.tremer.info \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox