コード例 #1
0
ファイル: ftphoney.py プロジェクト: TarllesRoman/honeypot_ftp
 def ftp_RMD(self, path):
     FTP.sendLine(self, '250 Requested File Action Completed OK')
コード例 #2
0
ファイル: ftphoney.py プロジェクト: TarllesRoman/honeypot_ftp
 def ftp_RNTO(self, toName):
     FTP.sendLine(self, '250 Requested File Action Completed OK')
コード例 #3
0
ファイル: ftphoney.py プロジェクト: TarllesRoman/honeypot_ftp
 def ftp_MKD(self, path):
     FTP.sendLine(self, '257 Folder created')
コード例 #4
0
ファイル: ftphoney.py プロジェクト: TarllesRoman/honeypot_ftp
 def ftp_STOR(self, path):
     FTP.sendLine(self,
                  '125 Data connection already open, starting transfer')
     FTP.sendLine(self, '226 Transfer Complete.')
コード例 #5
0
ファイル: ftphoney.py プロジェクト: TarllesRoman/honeypot_ftp
 def ftp_RNFR(self, fromName):
     FTP.sendLine(self,
                  '350 Requested file action pending further information.')
コード例 #6
0
ファイル: ftp.py プロジェクト: alexbredo/honeypot-ftp
	def ftp_RMD(self, path):
		FTP.sendLine(self, '250 Requested File Action Completed OK')
コード例 #7
0
ファイル: ftp.py プロジェクト: alexbredo/honeypot-ftp
	def ftp_MKD(self, path):
		FTP.sendLine(self, '257 Folder created')
コード例 #8
0
ファイル: ftp.py プロジェクト: alexbredo/honeypot-ftp
	def ftp_RNTO(self, toName):
		FTP.sendLine(self, '250 Requested File Action Completed OK')
コード例 #9
0
ファイル: ftp.py プロジェクト: alexbredo/honeypot-ftp
	def ftp_RNFR(self, fromName):
		FTP.sendLine(self, '350 Requested file action pending further information.')
コード例 #10
0
ファイル: ftp.py プロジェクト: alexbredo/honeypot-ftp
	def ftp_STOR(self, path):
		FTP.sendLine(self, '125 Data connection already open, starting transfer')
		FTP.sendLine(self, '226 Transfer Complete.')