Deprecated: Array and string offset access syntax with curly braces is deprecated in /www/wwwroot/www.andyccr.com/uw/inc/init.php on line 557
实验 [USWCAX]

用户工具

站点工具


Writing /www/wwwroot/www.andyccr.com/uw/data/cache/9/9aa68870bcae7c26e699825099c4d8ea.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing /www/wwwroot/www.andyccr.com/uw/data/cache/9/9aa68870bcae7c26e699825099c4d8ea.metadata failed
Writing /www/wwwroot/www.andyccr.com/uw/data/meta/%E5%AE%9E%E9%AA%8C.meta failed
实验
Writing /www/wwwroot/www.andyccr.com/uw/data/cache/b/bdc6cc99fdbeab25ef4202e2d01b6e47.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing /www/wwwroot/www.andyccr.com/uw/data/cache/b/bdc6cc99fdbeab25ef4202e2d01b6e47.xhtml failed

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录 前一修订版
后一修订版
前一修订版
实验 [2020/03/28 18:11]
uwacx
实验 [2020/10/17 15:40] (当前版本)
行 1: 行 1:
 当然,这里还是实验室啦,属于技术部管辖。 当然,这里还是实验室啦,属于技术部管辖。
 +  * 作为技术部成员,我先来放一串Python检验FTP账户的代码''​
 +import ftplib
 +def login_ftp(host):​
 +    user = input('​FTP账号:'​)
 +    password = input('​FTP密码:'​)
 +    try:
 +        ftp = ftplib.FTP(host)
 +        ftp.login(user,​password)
 +        print('​FTP login successful!'​)
 +        ftp.quit()
 +        return True
 +    except:
 +        print('​FTP login fail!'​)
 +        return False
 + 
 +def main():
 +    host = '​192.168.0.176' ​  #​metasploitable的IP地址
 +    login_ftp(host)
 + 
 +if __name__ == '​__main__':​
 +    main()''​
 +      * 当然,这里还是实验话题为主
实验.1585390310.txt.gz · 最后更改: 2020/10/17 15:38 (外部编辑)