awd比賽常用命令行及自動化指令碼

2021-08-29 16:27:00 字數 1156 閱讀 9064

_author_ = peanuts

最近是要打第二次awd,總結一下免得自己到時候手忙腳亂?

ssh -i -id_ras user@ip

ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]

將公鑰複製,實現免密登陸,root處換成需要的。

sftp:

scp:

ps檔案上傳完後要注意執行的許可權必要的時候 chmod +x 檔名
def exploit(host,port):

try:

flag = get_flag(host,port)

submit(flag,token)

except exception as m:

print(m)

def exploit_it():

with open("ip_file")as f :

for line in f:

host = line.split(":")[0]

port = int(line.split(":")[1])

print "[+] exploiting:%s:%d" % (host,port)

exploit(host,port)

def submit(flag, token):

url = "wangzhi"

pos =

print "[+] submiting flag : [%s]" % (pos)

response = requests.post(url,data=data)

content = response.content

print "[+] content : %s " % (content)

if failed in content:

print "[-]failed"

return false

else:

print "[+] success!"

return true

mysql常用命令行 mysql常用命令行操作語句

第一招 mysql服務的啟動和停止 net stop mysql net start mysql 第二招 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是...

常用命令行

more的語法 more 檔名 enter 向下n行,需要定義,預設為1行 ctrl f 向下滾動一屏 空格鍵 向下滾動一屏 ctrl b 返回上一屏 輸出當前行的行號 q 退出more dos命令 1.dir 列出當前目錄下的檔案和資料夾 2.md 建立目錄 3.rd 刪除目錄 rd s 資料夾名...

gcc常用命令行

gcc g 在執行編譯工作的時候,總共需要以下幾步 1.預處理,生成.i的檔案 預處理器cpp 2.將預處理後的檔案轉換成組合語言,生成檔案.s 編譯器egcs 3.有彙編變為目標 機器 生成.o的檔案 彙編器as 4.連線目標 生成可執行程式 鏈結器ld gcc能夠處理的字尾有 a.c c c語言...