Web-based arbitrary file grab?

Started by kanen, December 14, 2011, 03:03:33 PM

Previous topic - Next topic

kanen

When running newLisp in web mode and using the DragonFly framework, I've noticed redirection works fine, except when someone types something like:


http://server//root-file

In this case, it grabs the /root-file contents and displays them as plain text in the browser.



Am I missing some obvious setting? This is clearly a problem.
. Kanen Flowers http://kanen.me[/url] .

saulgoode

#1
My speculation is that the problem is arising from the way Apache's mod_write handles parsing (assuming you are using mod_rewrite). Guile developer Andy Wingo offers a good description of this http://wingolog.org/archives/2010/12/23/doing-it-wrong">on his weblog.

kanen

#2
I'm invoking newLisp and DragonFly directly:


/usr/bin/newlisp" /var/web/framework/newlisp-redirection.lsp  -http -d 8080 -w /var/web

Short of writing a pre-processor prior to the url-rewrites in DragonFly, I just don't see any way to fix this issue, which only happens when I double slash for a root file return.



(major security issue, by the way)


Quote from: "saulgoode"My speculation is that the problem is arising from the way Apache's mod_write handles parsing (assuming you are using mod_rewrite). Guile developer Andy Wingo offers a good description of this http://wingolog.org/archives/2010/12/23/doing-it-wrong">on his weblog.
. Kanen Flowers http://kanen.me[/url] .