看着这个 http://www.dotnetperls.com/ashx
我可能会有这样的代码:
string file = context.Request.QueryString["file"];
if (file == "logo")
{
r.WriteFile("Logo1.png");
}
else
{
r.WriteFile("Flower1.png");
}
这应该允许我根据我在浏览器中输入的URL查看不同的内容,例如:
http://www.dotnetperls.com/?file=logo
http://www.dotnetperls.com/?file=sth_else_eg_flower
我现在面临的问题是,只知道http://www.dotnetperls.com/?file
我可以阅读file
变量的所有假设选项是什么?在这种情况下,它将是" logo"等等。
我现实所拥有的是http://www.somewebstie.com/somefile.ashx?somevariable=
。我可以谷歌上传字符串以获得一些结果(即http://www.somewebstie.com/somefile.ashx?somevariable=abcde
或http://www.somewebstie.com/somefile.ashx?somevariable=xyz
)因此我知道它存在并且以某种方式可搜索。我只是想知道所有其他的" abcde"和" xyz"。如果我只是尝试http://www.somewebstie.com/somefile.ashx
我得到一个单行错误,说我给出了一个错误的变量,我在网站的源代码中看不到任何重要内容。
这里可能很重要 - 我对网络技术一无所知。
答案 0 :(得分:0)
您无法获取此信息。它全部隐藏在代码实现中。没有已发布的格式(默认情况下),它将显示代码正在查找的所有可用选项。