tftp传输文件命令(tftp)

导读 大家好,我是小典,我来为大家解答以上问题。tftp传输文件命令,tftp很多人还不知道,现在让我们一起来看看吧!如何使用Tftp: TFTP 自带...

大家好,我是小典,我来为大家解答以上问题。tftp传输文件命令,tftp很多人还不知道,现在让我们一起来看看吧!

如何使用Tftp:

TFTP 自带的帮助信息:

TFTP [-i] host [GET | PUT] source [destination]

-i Specifies binary image transfer mode (also called

octet). In binary image mode the file is moved

literally, byte by byte. Use this mode when transferring binary files.

host Specifies the local or remote host.

GET Transfers the file destination on the remote host to

the file source on the local host.

PUT Transfers the file source on the local host to

the file destination on the remote host.

source Specifies the file to transfer.

destination Specifies where to transfer the file.

说明:

-i选项是以二进制模式传送文件,很多Exploit代码就需要用这种模式来传送。

Host是开启了tftp服务的主机,可以是本地主机也可以是远程主机。

get就是到当前运行的目录里面下载,而put就是把文件上传到了开了tftp服务的机子。Source是你要上传或者是下载的文件名称。

下面举几个列子:

C:Longker>tftp -i 202.xx.xx.165 get sc.exe

tftp -i 202.xx.xx.165 get sc.exe

Transfer successful: 63248 bytes in 1 second, 63248 bytes/s

这个是从开了tftp服务的主机下载sc.exe程序,速度不错吧 :)

C:Longker>tftp -i 202.xx.xx.165 put sc.exe

tftp -i 202.xx.xx.165 put sc.exe

Transfer successful: 63248 bytes in 1 second, 63248 bytes/s

上面是把sc.exe上传到tftp服务器。

本文到此讲解完毕了,希望对大家有帮助。

最新文章