defeating google dork limit

update:
隐身会员:it can not work.
Tr4c3:I have checkd , it can work well.
鬼仔:抱歉,我当时没测试。
鬼仔注:相信这个提示大家遇到的不少吧?

来源:Tr4c3’s blog

well… if you have ever used google dorks you have probably gotten the following 403 forbidden error:

We’re sorry…

… but your query looks similar to automated requests from a computer virus or spyware application. To protect our users, we can’t process your request right now.

We’ll restore your access as quickly as possible, so try again soon. In the meantime, if you suspect that your computer or network has been infected, you might want to run a virus checker or spyware remover to make sure that your systems are free of viruses and other spurious software.

If you’re continually receiving this error, you may be able to resolve the problem by deleting your Google cookie and revisiting Google. For browser-specific instructions, please consult your browser’s online support center.

If your entire network is affected, more information is available in the Google Web Search Help Center.

We apologize for the inconvenience, and hope we’ll see you again on Google.

for example try the google search: filetype:php inurl:txt

to find rfi’s, around page 11-12 google will tell you to go ~censored~ yourself with the error above. Well.. there is a way around it, just use the code below and use the forward/back buttons I placed, sometimes it will ask you to enter captcha, but it will never actually stop you. So you can go all the way to the end of your dork searches. I made this shit a while ago so the code ain’t as effecient as it could be, but I ain’t coding it again(feel free to do so yourself). Javascript was made for firefox…

Also I had no idea where to post this so I’ll do it here.

<html>
<head>
<title>Google</title>
<script type=”text/javascript”>
<!–
window.onload = _start;

var g_start = 0, cpage = 1;
var url = “http://www.google.com/search?”;
var google, querybox, pagebox, showom;

function _start()
{
google = document.getElementById(“google”);
querybox = document.getElementById(“query”);
pagebox = document.getElementById(“page”);
showom = document.getElementById(“showom”);
}

function submitit()
{
g_start = 0;
cpage = 1;
if(!querybox.value)
{
google.src = “http://www.google.com/”;
return false;
}
fixframe(querybox.value, g_start);
pagebox.value = cpage;
}

function lucky()
{
if(!querybox.value)
google.src = “http://www.google.com/”;
else
google.src = “http://www.google.com/search?hl=en&q=”+escape(querybox.value)+”&btnI=I%27m+Feeling+Lucky&meta=”;
}

function schange(ab)
{
if(ab) {g_start += 10;++cpage;}
else {g_start -= 10;–cpage;}
if(cpage < 1) {g_start = 0;cpage = 1;}
pagebox.value = cpage;
fixframe(querybox.value, g_start);
}

function fixframe(inquery, instart)
{
var addurl;
if(!inquery) return false;
if(!instart) instart = 0;
addurl = “q=”+escape(inquery)+”&start=”+instart;
if(showom.checked) addurl += “&filter=0”;
google.src = url+addurl;
}

function movepage()
{
if(!querybox.value)
{
google.src = “http://www.google.com/”;
return false;
}
cpage = pagebox.value;
g_start = (cpage*10)-10;
fixframe(querybox.value, g_start);
}

function checkkey(x, send) {
if(window.event) kcode = x.keyCode
else if(x.which) kcode = x.which;
if(kcode == 13) {
if(send) submitit();
else movepage();
}
return false;
}

//–>
</script>
</head>
<body style=”margin:0px;overflow:hidden;”>

<div style=”position:absolute;width:100%;height:15%;top:3%;”>
<center>
<input type=”text” id=”query” name=”q” size=”35″ onkeypress=”checkkey(event, true)”>
<input type=”text” size=”2″ id=”page” onkeypress=”checkkey(event, false)”>
<br>

<input type=”button” value=”Google Search” onClick=”submitit()”>
<input type=”button” value=”I’m Feeling Lucky” onClick=”lucky()”>
<br>
<input type=”checkbox” value=”showom” id=”showom”> omitted results included
<br>
<input type=”button” value=”&lt;&lt; back” onClick=”schange(false)”>
<input type=”button” value=”forward &gt;&gt;” onClick=”schange(true)”>
</center>
</div>

<iframe src=”http://www.google.com/” id=”google” style=”position:absolute;width:100%;height:83%;top:20%;”>
</iframe>

</body>
</html>

相关日志

楼被抢了 3 层了... 抢座Rss 2.0或者 Trackback

发表评论