|
hdshjffdd
初级用户
 
积分 131
发帖 53
注册 2006-7-31
状态 离线
|
『楼 主』:
如何在命令行向百度提交搜索字?
使用 LLM 解释/回答一下
如何在命令行向百度提交搜索字?
How to submit search words to Baidu in the command line?
|
|
2006-8-8 07:47 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
|
2006-8-8 11:05 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
我猜你是想用个循环恶意点击欺骗
I guess you want to use a loop to maliciously click and deceive
|

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |
|
2006-8-8 11:07 |
|
|
namejm
荣誉版主
       batch fan
积分 5226
发帖 1737
注册 2006-3-10 来自 成都
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
如果关键字有好几个,中间带有空格的话,那就要用以下格式(注意start后的引号):
start "" "http://www.baidu.com/s?wd=关键字1 关键字2 关键字3……"
If there are several keywords and there are spaces between them, then you need to use the following format (note the quotes after start):
start "" "http://www.baidu.com/s?wd=keyword1 keyword2 keyword3……"
|

尺有所短,寸有所长,学好CMD没商量。
考虑问题复杂化,解决问题简洁化。 |
|
2006-8-8 13:23 |
|
|
hdshjffdd
初级用户
 
积分 131
发帖 53
注册 2006-7-31
状态 离线
|
|
2006-8-8 13:49 |
|
|
hdshjffdd
初级用户
 
积分 131
发帖 53
注册 2006-7-31
状态 离线
|
|
2006-8-8 13:50 |
|
|
IceCrack
中级用户
   DOS之友
积分 332
发帖 168
注册 2005-10-6 来自 天涯
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
原来是这样的啊,服了
So it turns out to be like this, I'm convinced
|

测试环境: windows xp pro sp2 高手是这样炼成的:C:\WINDOWS\Help\ntcmds.chm |
|
2006-8-9 08:49 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
也简单
mshta "javascript:new ActiveXObject('WScript.Shell').Run(encodeURI('http://www.google.com/search?hl=zh-CN&q=关键字&lr='));window.close();"
Also simple
mshta "javascript:new ActiveXObject('WScript.Shell').Run(encodeURI('http://www.google.com/search?hl=zh-CN&q=keyword&lr='));window.close();"
|

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |
|
2006-8-11 22:54 |
|
|
luoxinxin1988
初级用户
 
积分 190
发帖 48
注册 2006-6-5
状态 离线
|
|
2006-8-12 17:37 |
|
|
holyman
初级用户
 
积分 42
发帖 20
注册 2006-10-24
状态 离线
|
|
2006-10-25 02:02 |
|
|
9527
银牌会员
     努力做坏人
积分 1185
发帖 438
注册 2006-8-28 来自 北京
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
唉,还是粗略写一下吧,方便以后使用,没有什么过滤之类的,是最最最基本的功能,大家可以增删功能
@echo off&setlocal
:start
cls
echo.&echo]&echo[&echo/&echo\&echo=
set/p a=请选择用哪个引擎搜索(Exit=0)(Google=1)(BaiDu=2):
if not defined a goto start
if %a% equ 0 goto :eof
goto 3
:1
echo ----------++++++++谷歌搜索++++++++----------
start "" "http://www.google.com/search?hl=zh-CN&q=%b%&lr="
goto :eof
:2
echo ----------++++++++百度搜索++++++++----------
start "" "http://www.baidu.com/s?wd=%b%&cl=3"
goto :eof
:3
set/p b=输入要搜索的关键字:
goto %a%
Hey, just write it roughly for convenience in future use. There's no filtering or anything, it's the most basic function. Everyone can add or delete functions
@echo off&setlocal
:start
cls
echo.&echo]&echo
|

我今后在论坛的目标就是做个超级坏人!!! |
|
2006-10-25 03:03 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
9527的这个p处理是强的流汗啊
The processing of p for 9527 is really powerful, sweating profusely.
|

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |
|
2006-10-25 04:35 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
这个也收藏了。以后做标签用用————
This is also collected. I'll use it for tags later. ————
|
|
2006-10-25 07:42 |
|
|
vkill
金牌会员
     
积分 4103
发帖 1744
注册 2006-1-20 来自 甘肃.临泽
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
很多搜索、提交等认真观察地址栏都可以找到的
Many can be found by carefully observing the address bar for many searches, submissions, etc.
|
|
2006-10-25 08:54 |
|
|
redtek
金牌会员
     
积分 2902
发帖 1147
注册 2006-9-21
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
8楼和11楼代码有意思~:)
无意中又看到此贴又欣赏了一遍~:)
The code in floor 8 and floor 11 is interesting~:) Accidentally saw this post again and enjoyed it again~:)
|

Redtek,一个永远在网上流浪的人……
_.,-*~'`^`'~*-,.__.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._ |
|
2006-11-24 23:00 |
|