|
tonly
新手上路

积分 2
发帖 1
注册 2007-2-12
状态 离线
|
『第 61 楼』:
使用 LLM 解释/回答一下
顶。。。。。。。。。。。。。。
Top. . . . . . . . . . . . . .
|
|
2007-4-19 02:09 |
|
|
flying008
中级用户
  
积分 245
发帖 103
注册 2006-6-30
状态 离线
|
『第 62 楼』:
使用 LLM 解释/回答一下
这个代码在WINDOWS2000上执行时,尤其用NETSH命令会出现“找 不到接口:本地连接”的错误提示,
而且用其它批处理调用NETSH命令来修改网关、IP、DNS、MASK时都会出现找不到接口:本地连接的提示,
请问大大是什么原因?
When this code is executed on WINDOWS 2000, especially when using the NETSH command, an error message "Interface not found: Local Area Connection" will appear. Moreover, when other batch scripts call the NETSH command to modify the gateway, IP, DNS, and MASK, the prompt of "Interface not found: Local Area Connection" will also appear. May I ask the great one, what is the reason?
|
|
2007-4-19 05:44 |
|
|
gang9869
新手上路

积分 16
发帖 8
注册 2007-4-19
状态 离线
|
『第 63 楼』:
使用 LLM 解释/回答一下
先做个记号,,试试先,有问题再来
Just make a mark first, let's try first, come back if there's a problem
|
|
2007-4-19 07:00 |
|
|
qasa
高级用户
   
积分 959
发帖 311
注册 2006-4-11 来自 广东-LianJiang
状态 离线
|
『第 64 楼』:
使用 LLM 解释/回答一下
这个代码在WINDOWS2000上执行时,尤其用NETSH命令会出现“找 不到接口:本地连接”的错误提示,
而且用其它批处理调用NETSH命令来修改网关、IP、DNS、MASK时都会出现找不到接口:本地连接的提示,
请问大大是什么原因?
我只在Windows XP SP2 运行通过,Windows 2K 我没有测试过,以上问题应该是内核的不兼容造成。
When this code is executed on WINDOWS2000, especially when using the NETSH command, an error message "Interface not found: Local Area Connection" will appear.
Moreover, when other batch scripts call the NETSH command to modify the gateway, IP, DNS, MASK, the prompt of "Interface not found: Local Area Connection" will also appear.
May I ask the great one, what is the reason?
I have only run it on Windows XP SP2. I haven't tested Windows 2K. The above problem should be caused by incompatibility of the kernel.
|

κχυμγνξοθπρωψιαδλεηφβτζσ┬╀┾┳┞┯┰┱┣┲┳╂╁│├┟┭┠这是什么??这就是我的人生 |
|
2007-4-20 12:04 |
|
|
gang9869
新手上路

积分 16
发帖 8
注册 2007-4-19
状态 离线
|
『第 65 楼』:
使用 LLM 解释/回答一下
不知道什么原因,我的XPSP2改不了IP,DNS,机器号倒是改了。MAC没错
如果把 CS-CDKEY 自动绑定MAC加进去,就完美了
I don't know the reason, I can't change the IP, DNS in my XPSP2, but I have changed the machine number. The MAC is correct. If adding the automatic binding of CS-CDKEY to MAC is included, it will be perfect.
|
|
2007-4-20 12:21 |
|
|
qasa
高级用户
   
积分 959
发帖 311
注册 2006-4-11 来自 广东-LianJiang
状态 离线
|
『第 66 楼』:
使用 LLM 解释/回答一下
不知道什么原因,我的XPSP2改不了IP,DNS,机器号倒是改了。MAC没错
如果把 CS-CDKEY 自动绑定MAC加进去,就完美了
如果MAC没错的话,文件存放路径在C:\IP,应该是没问题的,请再检查一下。
CS-CDKEY原本我也想加这个功能上去的,但我用了CS启动器,启动CS的时候自动改CS-CDKEY的,所以我就没加上去了,呵呵。
I don't know the reason, I can't change the IP, DNS in my XPSP2, but the machine number has been changed. The MAC is correct.
If the CS-CDKEY can be automatically bound to the MAC, it will be perfect.
If the MAC is correct, the file storage path is in C:\IP, which should be no problem, please check again.
I originally wanted to add this function to CS-CDKEY, but I used the CS launcher, which automatically changes CS-CDKEY when starting CS, so I didn't add it, hehe.
|

κχυμγνξοθπρωψιαδλεηφβτζσ┬╀┾┳┞┯┰┱┣┲┳╂╁│├┟┭┠这是什么??这就是我的人生 |
|
2007-4-20 12:35 |
|
|
gang9869
新手上路

积分 16
发帖 8
注册 2007-4-19
状态 离线
|
『第 67 楼』:
使用 LLM 解释/回答一下
把防ARP攻击加进去
:读取本机Mac地址
if exist c:\\ipconfig.txt del c:\\ipconfig.txt
ipconfig /all >c:\\ipconfig.txt
if exist c:\\phyaddr.txt del c:\\phyaddr.txt
find "Physical Address" c:\\ipconfig.txt >c:\\phyaddr.txt
for /f "skip=2 tokens=12" %%M in (c:\\phyaddr.txt) do set Mac=%%M
:读取本机ip地址
if exist c:\\IPAddr.txt del c:\\IPaddr.txt
find "IP Address" c:\\ipconfig.txt >c:\\IPAddr.txt
for /f "skip=2 tokens=15" %%I in (c:\\IPAddr.txt) do set IP=%%I
:绑定本机IP地址和MAC地址
arp -s %IP% %Mac%
:读取网关地址
if exist c:\\GateIP.txt del c:\\GateIP.txt
find "Default Gateway" c:\\ipconfig.txt >c:\\GateIP.txt
for /f "skip=2 tokens=13" %%G in (c:\\GateIP.txt) do set GateIP=%%G
:读取网关Mac地址
if exist c:\\GateMac.txt del c:\\GateMac.txt
arp -a %GateIP% >c:\\GateMac.txt
for /f "skip=3 tokens=2" %%H in (c:\\GateMac.txt) do set GateMac=%%H
:绑定网关Mac和IP
arp -s %GateIP% %GateMac%
arp -s 125.90.79.187 00-E0-4D-0F-67-11
arp -s 125.90.79.188 00-E0-4D-0F-0A-3B
arp -s 125.90.79.189 00-E0-4D-0F-0A-4B
arp -s 125.90.79.190 00-E0-4D-0D-F8-BE
Add anti-ARP attack
:Read the local Mac address
if exist c:\\ipconfig.txt del c:\\ipconfig.txt
ipconfig /all >c:\\ipconfig.txt
if exist c:\\phyaddr.txt del c:\\phyaddr.txt
find "Physical Address" c:\\ipconfig.txt >c:\\phyaddr.txt
for /f "skip=2 tokens=12" %%M in (c:\\phyaddr.txt) do set Mac=%%M
:Read the local IP address
if exist c:\\IPAddr.txt del c:\\IPaddr.txt
find "IP Address" c:\\ipconfig.txt >c:\\IPAddr.txt
for /f "skip=2 tokens=15" %%I in (c:\\IPAddr.txt) do set IP=%%I
:Bind local IP address and MAC address
arp -s %IP% %Mac%
:Read gateway address
if exist c:\\GateIP.txt del c:\\GateIP.txt
find "Default Gateway" c:\\ipconfig.txt >c:\\GateIP.txt
for /f "skip=2 tokens=13" %%G in (c:\\GateIP.txt) do set GateIP=%%G
:Read gateway Mac address
if exist c:\\GateMac.txt del c:\\GateMac.txt
arp -a %GateIP% >c:\\GateMac.txt
for /f "skip=3 tokens=2" %%H in (c:\\GateMac.txt) do set GateMac=%%H
:Bind gateway Mac and IP
arp -s %GateIP% %GateMac%
arp -s 125.90.79.187 00-E0-4D-0F-67-11
arp -s 125.90.79.188 00-E0-4D-0F-0A-3B
arp -s 125.90.79.189 00-E0-4D-0F-0A-4B
arp -s 125.90.79.190 00-E0-4D-0D-F8-BE
|
|
2007-4-21 02:00 |
|
|
zhuangyu81
新手上路

积分 2
发帖 1
注册 2007-4-24
状态 离线
|
|
2007-4-24 08:08 |
|
|
zwf2003
新手上路

积分 9
发帖 4
注册 2006-12-12
状态 离线
|
『第 69 楼』:
使用 LLM 解释/回答一下
发现只可以修改“本地连接”,如果是“本地连接2”的就改不了IP了。
I found that only "Local Area Connection" can be modified, and if it's "Local Area Connection 2", the IP cannot be changed.
|
|
2007-4-25 12:42 |
|
|
hhong
新手上路

积分 13
发帖 7
注册 2006-10-10
状态 离线
|
『第 70 楼』:
使用 LLM 解释/回答一下
实用的工具!!!!!牛人-可人
Practical tools!!!!!牛人 - Keren
|
|
2007-4-26 03:17 |
|
|
zzl007
新手上路

积分 4
发帖 2
注册 2007-4-29
状态 离线
|
|
2007-4-29 10:16 |
|
|
devil991
新手上路

积分 2
发帖 1
注册 2007-4-30
状态 离线
|
|
2007-4-30 11:15 |
|
|
ccuu668
初级用户
 
积分 57
发帖 29
注册 2006-12-27
状态 离线
|
『第 73 楼』:
使用 LLM 解释/回答一下
楼主辛苦了.特别感谢你.
The landlord has worked hard. Special thanks to you.
|
|
2007-5-2 08:38 |
|
|
rising1985
新手上路

积分 8
发帖 4
注册 2007-4-5
状态 离线
|
『第 74 楼』:
使用 LLM 解释/回答一下
谢谢楼主,先下载下看看,真的好用的话,给你加分。。。不过偶没权利 哈哈!!!
Thank you, the landlord. I'll download it first and take a look. If it's really useful, I'll give you extra points... But I have no right, haha!!!
|
|
2007-5-2 10:29 |
|
|
lifei666
初级用户
 
积分 23
发帖 11
注册 2006-12-19
状态 离线
|
|
2007-5-3 02:06 |
|