linux命令——mv
mv命令是move的縮寫形式,通過這個命令可以移動文件以及重命名文件!在滲透測試中常用於重命名文件,在命令執行漏洞中,我們需要上傳webshell或者nc這類的工具,如果直接wget的話,很有可能被防或者被殺,因此我們需要先wget一個文本文件或者圖像文件到遠程服務器上,然後再通過mv來重命名來還原文件!
基本使用語法(移動):
mv 源文件 目標目錄
[email protected]:~/eth10/eth10# ls test1 test.txt [email protected]:~/eth10/eth10# ls test1 [email protected]
基本使用語法(重命名):
mv 源文件 重命名後的文件
[email protected]:~/eth10/eth10# ls test1 test1.txt [email protected]:~/eth10/eth10# mv test1.txt test.txt [email protected]