|
cain
中级用户
  
积分 201
发帖 72
注册 2005-11-20
状态 离线
|
『第 16 楼』:
使用 LLM 解释/回答一下
谢谢chenall,完全可行。
Thanks chenall, it works perfectly.
|
|
2007-5-17 17:05 |
|
|
suntb
高级用户
   
积分 581
发帖 277
注册 2006-12-23
状态 离线
|
|
2007-5-17 20:15 |
|
|
chenall
银牌会员
    
积分 1276
发帖 469
注册 2002-12-23 来自 福建泉州
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
对#和&这两个特殊字符进行URL编码.可以解决当密码出现这两个字符时无法登录的情况.
- @echo off
- ::设置登录邮箱名为yeah或126
- set mail=yeah
- ::设置用户
- set "user=username
- :设置密码
- set "pass=password
- setlocal enabledelayedexpansion
- set "pass=!pass:#=%%23!"
- set "pass=!pass:&=%%26!"
- endlocal&set "pass=%pass%"
- ::yeah登录URL
- set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::126邮箱登录URL
- set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::登录
- cmd /c start "" "%%%mail%%%"
chenall 发表于: 2007-05-18 08:44
URL-encode the special characters # and &. This can solve the problem that you can't log in when the password contains these two characters.
- @echo off
- ::Set the login email name to yeah or 126
- set mail=yeah
- ::Set user
- set "user=username
- :Set password
- set "pass=password
- setlocal enabledelayedexpansion
- set "pass=!pass:#=%%23!"
- set "pass=!pass:&=%%26!"
- endlocal&set "pass=%pass%"
- ::Yeah login URL
- set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::126 email login URL
- set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::Login
- cmd /c start "" "%%%mail%%%"
chenall Posted on: 2007-05-18 08:44
此帖被 +8 点积分 点击查看详情 评分人:【 lxmxn 】 | 分数: +8 | 时间:2007-5-18 13:00 |
|
|

QQ:366840202
http://chenall.net |
|
2007-5-18 08:48 |
|
|
xswdong
中级用户
  
积分 216
发帖 129
注册 2007-2-14
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
高!实在是高!!!
chenall能否做出登陆126或163网盘哪,期待中^
Last edited by xswdong on 2007-5-24 at 10:17 AM ]
Wow! That's really amazing!!!
Can chenall make a login for 126 or 163 cloud disk, looking forward to it ^
Last edited by xswdong on 2007-5-24 at 10:17 AM ]
|
|
2007-5-23 23:50 |
|
|
cain
中级用户
  
积分 201
发帖 72
注册 2005-11-20
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
如果密码能做到不是明文就好了,就像QQ自动登陆器生成的登陆脚本一样是密文的。
If only the password could not be in plain text, just like the login script generated by the QQ auto-login tool which is in ciphertext.
|
|
2007-5-24 09:15 |
|
|
itolaiai
初级用户
 
积分 25
发帖 11
注册 2007-5-18
状态 离线
|
『第 21 楼』:
使用 LLM 解释/回答一下
i 不错不错...学到东西了..没想到可以这样应用
i 不错不错...学到东西了..没想到可以这样应用
i Not bad, not bad... Learned something.. Didn't expect it could be applied like this
|
|
2007-5-24 17:35 |
|
|
lotus516
高级用户
    论坛上抢劫的
积分 551
发帖 246
注册 2006-9-21
状态 离线
|
『第 22 楼』:
使用 LLM 解释/回答一下
我想知道可不可以自动下载附见!邮箱中就一个邮件,有附件的!
I want to know if I can automatically download the attached file! There is only one email in the mailbox, and there is an attachment!
|
|
2007-9-2 00:17 |
|
|
dahongpao
新手上路

积分 7
发帖 4
注册 2006-5-28
状态 离线
|
|
2007-10-20 10:54 |
|
|
putao
初级用户
 
积分 80
发帖 41
注册 2007-10-5
状态 离线
|
|
2007-10-20 11:15 |
|
|
5548646
初级用户
 
积分 81
发帖 28
注册 2007-8-27
状态 离线
|
『第 25 楼』:
有两个地方看不懂
使用 LLM 解释/回答一下
set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&p
为什么这地方要加引号呢 而且 我去掉就不行了
cmd /c start "" "%%%mail%%%"
为什么要用3个% 我觉得要两个就可以了 但两个却不行
set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&p
Why are quotes added here? And it doesn't work if I remove them.
cmd /c start "" "%%%mail%%%"
Why use three %? I think two would be enough, but two don't work.
|
|
2007-10-20 11:55 |
|
|
ckys
新手上路

积分 12
发帖 6
注册 2007-10-19
状态 离线
|
|
2007-10-20 14:40 |
|
|
jiaxiang269
初级用户
 
积分 84
发帖 30
注册 2007-10-29
状态 离线
|
『第 27 楼』:
使用 LLM 解释/回答一下
This is a URL link. It is an address for logging in. The part like %var% and %num% are probably placeholders for variables. The meaning is that it is a login page link. And it's about not being able to directly input WWW.163.COM to access it in this specific context described. The translation of the text within the brackets is as above.
|
|
2007-10-30 02:54 |
|
|
jiaxiang269
初级用户
 
积分 84
发帖 30
注册 2007-10-29
状态 离线
|
『第 28 楼』:
使用 LLM 解释/回答一下
明白了"https://reg.163.com/logins.jsp?username=%username%&password=%
password%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"是他的联接地址吧,哈哈
Got it, "https://reg.163.com/logins.jsp?username=%username%&password=%
password%&url=http://fm163.163.com/coremail/fcg/ntesdoor2" is his connection address, haha
|
|
2007-10-30 03:00 |
|
|
jiaxiang269
初级用户
 
积分 84
发帖 30
注册 2007-10-29
状态 离线
|
『第 29 楼』:
使用 LLM 解释/回答一下
@echo off
set "username=用户名"
set "password=密码"
start "163邮箱登录中" "www.126.com"
其是只要把里边的连接地址改成你想打开的网址就行了
@echo off
set "username=用户名"
set "password=密码"
start "163邮箱登录中" "www.126.com"
In fact, as long as you change the link address inside to the website you want to open.
|
|
2007-10-30 03:07 |
|
|
ldr2zjj
初级用户
 
积分 167
发帖 95
注册 2007-5-6
状态 离线
|
『第 30 楼』:
使用 LLM 解释/回答一下
刚刚我也想知道126的登录方法`~谢谢了`~
Just now I also want to know the login method of 126~ thank you~
|
|
2007-11-1 02:45 |
|