Código:
@Echo OFF & TITLE Bing Searcher & Setlocal EnableDelayedExpansion
:: Con la configuración de FIREFOX siguiente:
:: 1) -setDefaultBrowser
:: 2) about:config browser.link.open_newwindow.override.external=1
:: 3) addons.mozilla.org Click&Clean
Set "Search=http://www.pcre.org/news.txt"
bitsadmin.exe /transfer myDownloadJob /download /priority normal %Search% %TMP%\news.txt
Set "TextFile=%TMP%\news.txt"
DEL %TMP%\news.txt
Set "Explore=%ProgramFiles%\Mozilla Firefox\Firefox.exe "
If Defined ProgramFiles(x86) (Set "Explore=%ProgramFiles(x86)%\Mozilla Firefox\Firefox.exe ")
Set "Query=http://www.bing.com/search?q="
REM cear aqui la parte de login en email
Set /A "MAXQueries=%random% %% 10 + 33"
Set /A "PLUSwait=10000"
Set /A "MINwait=5000"
Set /A "QueryCount=0"
:Loop
FOR /F "Usebackq Tokens=* Delims=" %%@ IN ("%TextFile%") DO (
Set "Search=%%@"
Set "Search=!Search: =+!"
Start /B "Iteration" "!Explore!" "!Query!!Search!"
Set /A "Wait=!random! %% !PLUSwait! + !MINwait!"
ping.exe 1.1.1.1 -n 1 -w !Wait! >NUL
Set /A "QueryCount+=1"
TITLE Bing Searcher : !QueryCount!
If !QueryCount! EQU !MAXQueries! (Goto :End)
)
:End
Start /b "Iteration" "%Explore%" "http://www.bing.com"
echo WScript.echo Chr(7) > beep.vbs
cscript beep.vbs
del beep.vbs
P.D. ¿ cómo podría meter todo el BEEP en una sola linea de código sin crear el archivo .vbs ? No me funciona la siguiente
Código:
ECHO WSCRIPT.ECHO CHR(7) ^| CSCRIPT
P.P.D.
La búsqueda por frases no me convence como algo aleatorio e indistinguible de una búsqueda manual.
Tal vez una búsqueda de varias palabras, siendo cada búsqueda diferente incluso en número de palabras con un máximo de palabras MAXWORDS, utilizando cada vez uno de los temas de búsqueda que nos da el buscador con un máximo de links MAXBING; sobre una lista en fila de palabras en ingles WORDLIST , tomando al azar cada palabra de esa lista...
... estoy terminando ese nuevo BATCH que con mis conocimientos no es muy elegante.