|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 16 楼』:
使用 LLM 解释/回答一下
Originally posted by xinswdong at 2007-1-5 21:44:
autolog.exe qq登陆器体积不大可以登陆多个qq
我用vbs 做过效果不好
on error resume next
QQPath="C:\progra~1\Tencent\QQ\QQ2006.exe"
Set WshShell=WScript ...
我的自动登录QQ的方法和13楼的差不多,不过13楼使用的sendkeys "+{Tab}"是行不通的,现在的QQ版本按Shift+Tab,光标是不会回到上面输入QQ号码的文本框里去的。
Originally posted by xinswdong at 2007-1-5 21:44:
autolog.exe QQ login tool is not large in size and can log in multiple QQs
I used VBS to do it, but the effect was not good
on error resume next
QQPath="C:\progra~1\Tencent\QQ\QQ2006.exe"
Set WshShell=WScript ...
My method of automatically logging in to QQ is similar to that of building 13, but the use of sendkeys "+{Tab}" in building 13 doesn't work. For the current QQ version, pressing Shift+Tab will not move the cursor back to the text box above to enter the QQ number.
|
|
2007-1-6 14:36 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
Originally posted by jmz573515 at 2007-1-5 23:15:
楼上的可以给一个完整代码参考一下吗?谢谢!
3楼已经写得很详细了:
.exe /START QQUIN:(QQ号码) PWDHASH:(QQ密码,注是不是你原来的密码,可用WinHex来读取密码) /STAT:40
qq.exe /start qquin:367257010 pwdhash:fHogjHldfLHJLhHlfjds+fjlks/ /start:40
::qq号码和hash码是我随便打上去的。
Originally posted by jmz573515 at 2007-1-5 23:15:
Can the person above provide a complete code for reference? Thanks!
The 3rd floor has written very detailed:
.exe /START QQUIN:(QQ number) PWDHASH:(QQ password, note that it is not your original password, you can use WinHex to read the password) /STAT:40
qq.exe /start qquin:367257010 pwdhash:fHogjHldfLHJLhHlfjds+fjlks/ /start:40
::The QQ number and hash code are randomly typed by me.
|
|
2007-1-6 14:39 |
|
|
PPdos
高级用户
   
积分 783
发帖 268
注册 2006-12-26
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
经测试一个批处理文件不能实现 多号登陆 如有高人 请指点。。
After testing, a batch file cannot achieve multi-account login. If there are experts, please give guidance.
|
|
2007-1-6 20:41 |
|
|
mouzeming
初级用户
 
积分 66
发帖 28
注册 2006-11-1
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
如果无聊的话可以让别人不能在你的计算机关闭你的QQ
关闭了自己又打开。。
If you are bored, you can make others unable to shut down your QQ on your computer. After shutting it down, it opens again by itself.
|
|
2007-1-6 23:42 |
|
|
wydos
中级用户
  
积分 304
发帖 117
注册 2006-4-4
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
多号登陆,xp测试成功,最新的qq测试成功
给个示例:
以下是1.txt文件内容 "D:\Program Files\Tencent\QQ\qq.exe" /START QQUIN:123456 PWDHASH:gdgdgdgfdgg==
"D:\Program Files\Tencent\QQ\qq.exe" /START QQUIN:123459 PWDHASH:fgfdgdfgfdf==
每行一qq号。
然后在命令行中输入 for /f "tokens=*" %i in (1.txt) do %i
多号登陆即可成功。
但如果是这样:
以下是1.bat内容 for /f "tokens=*" %%i in (1.txt) do %%i
运行1.bat则不成功,需要把第一个qq关掉,才能打开另一个qq。大家想个办法!!
Last edited by wydos on 2007-1-7 at 01:09 AM ]
Multi-account login, XP test successful, latest QQ test successful.
Here is an example:
The following is the content of file 1.txt
"D:\Program Files\Tencent\QQ\qq.exe" /START QQUIN:123456 PWDHASH:gdgdgdgfdgg==
"D:\Program Files\Tencent\QQ\qq.exe" /START QQUIN:123459 PWDHASH:fgfdgdfgfdf==
One QQ number per line.
Then enter the following in the command line
for /f "tokens=*" %i in (1.txt) do %i
Multi-account login can be successful.
But if it is like this:
The following is the content of 1.bat
for /f "tokens=*" %%i in (1.txt) do %%i
Running 1.bat is not successful, and you need to close the first QQ to open another QQ. Everyone think of a way!
Last edited by wydos on 2007-1-7 at 01:09 AM ]
|
|
2007-1-7 00:47 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 21 楼』:
使用 LLM 解释/回答一下
有生成PSDHASH码工具的朋友,麻烦上传一个。在网上找了许久,可惜还是没找到。
Friends who have tools to generate PSDHASH codes, please upload one. I've been searching online for a long time, but unfortunately still haven't found it.
|
|
2007-1-7 01:10 |
|
|
dosmania
初级用户
 
积分 172
发帖 54
注册 2007-1-2
状态 离线
|
『第 22 楼』:
使用 LLM 解释/回答一下
re wydos:
因为批命令里的命令是执行完一行再执行另一行,所以只能登录第一个QQ,关掉第一个QQ才执行第二条命令登录第二个QQ,所以不管怎么样都只有一个QQ在登录
re wydos:
Because the commands in the batch command are executed line by line, so only the first QQ can be logged in, and the second command to log in the second QQ will be executed only after closing the first QQ, so no matter what, only one QQ is logged in
|
|
2007-1-7 04:36 |
|
|
mouzeming
初级用户
 
积分 66
发帖 28
注册 2006-11-1
状态 离线
|
|
2007-1-7 04:37 |
|
|
PPdos
高级用户
   
积分 783
发帖 268
注册 2006-12-26
状态 离线
|
『第 24 楼』:
附件压缩后 222k 超过限制大小
使用 LLM 解释/回答一下
Originally posted by lxmxn at 2007-1-6 12:10 PM:
有生成PSDHASH码工具的朋友,麻烦上传一个。在网上找了许久,可惜还是没找到。
Originally posted by lxmxn at 2007-1-6 12:10 PM:
Friends who have tools to generate PSDHASH codes, please upload one. I have searched the Internet for a long time, but unfortunately still haven't found it.
|
|
2007-1-7 08:06 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 25 楼』:
使用 LLM 解释/回答一下
有生成PSDHASH码工具的朋友,麻烦上传一个。在网上找了许久,可惜还是没找到。
有就爽了
Friends who have tools to generate PSDHASH codes, please upload one. I've been searching online for a long time, but unfortunately still haven't found it.
It would be great to have one
|
|
2007-1-7 08:45 |
|
|
yuhaomiao
初级用户
 
积分 32
发帖 14
注册 2007-1-2
状态 离线
|
『第 26 楼』:
对第二十楼说的,请说清楚点!
使用 LLM 解释/回答一下
请回答问题回答的清楚些,你说的我试过了,不行,不知道是你说的不对,还是我没理解你说的东西,请说清楚点好吗?
Please answer the question clearly. I tried what you said, but it didn't work. I don't know if what you said is incorrect or I didn't understand what you said. Can you please make it clearer?
|
|
2007-1-7 11:22 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 27 楼』:
使用 LLM 解释/回答一下
Originally posted by electronixtar at 2007-1-6 19:45:
有就爽了
24 楼的朋友已经有了,只是文件有点大,论坛限制了上传了。
Originally posted by electronixtar at 2007-1-6 19:45:
It would be great if there is one
The friend on floor 24 already has it, but the file is a bit large, and the forum restricts uploads.
|
|
2007-1-7 18:45 |
|
|
zhoung0
初级用户
 
积分 54
发帖 18
注册 2005-11-5
状态 离线
|
『第 28 楼』:
使用 LLM 解释/回答一下
先注册控件 再运行QQpwdhash.exe
First, register the control, and then run QQpwdhash.exe
附件
1: 20067610242297166.zip (2007-1-8 03:52, 63.24 KiB, 下载附件所需积分 1 点
,下载次数: 40)
|
|
2007-1-8 03:52 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 29 楼』:
使用 LLM 解释/回答一下
Originally posted by zhoung0 at 2007-1-7 14:52:
先注册控件 再运行QQpwdhash.exe
怎么有木马病毒?
Originally posted by zhoung0 at 2007-1-7 14:52:
Register the control first, then run QQPwdhash.exe
Why is there a Trojan virus?
附件
1: kas.BMP (2007-1-8 04:38, 363.33 KiB, 下载附件所需积分 1 点
,下载次数: 7)
|
|
2007-1-8 04:38 |
|
|
zhoung0
初级用户
 
积分 54
发帖 18
注册 2005-11-5
状态 离线
|
『第 30 楼』:
使用 LLM 解释/回答一下
卡巴斯基是报QQpwdhash.exe为病毒吗??那还是不用为妙吧。当时测试正常。也没检测。再看了一下 QQpwdhash.exe是用VB6编写的 里面有它的源代码。
病毒可能性不大 QQPWDHASH.ocx这个控件就不清楚了。
Last edited by zhoung0 on 2007-1-8 at 07:05 AM ]
Is Kaspersky reporting QQpwdhash.exe as a virus?? Then it's better not to use it. The test was normal at that time. There was no detection. Take another look, QQpwdhash.exe is written in VB6 and has its source code in it. The possibility of being a virus is not high. As for the QQPWDHASH.ocx control, it's not clear.
Last edited by zhoung0 on 2007-1-8 at 07:05 AM ]
|
|
2007-1-8 06:49 |
|