PayDay
简介point 20PayDayDifficulty INTERMEDIATErated by community INTERMEDIATE Things normally go smooth on payday. 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.186.39 Linux...
Exfiltrated
简介point 10Warm upDifficulty Easyrated by community INTERMEDIATE Attack and exfiltrate the target! 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.186.163 Linux 1. 信息...
Astronaut
简介point 10Warm upDifficulty Easyrated by community INTERMEDIATE One small step for man, one giant leap for ..... 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.200.12 ...
Flimsy
简介point 10Warm upDifficulty Easyrated by community INTERMEDIATE No more flimsy excuses 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.200.220 Linux 1. 信息收集收集受...
Levram
简介point 10Warm upDifficulty Easyrated by community Easy Part 3 of Mid Year CTF machines 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.200.24 Linux 1. 信息收集收集受...
Codo
简介point 10Warm upDifficulty Easyrated by community Easy Part 2 of Mid Year CTF machines 实验环境攻击者 Kali 192.168.45.200受害者 IP 192.168.200.23 Linux 1. 信息收集收集受...
Python文件操作 读取文件
1. read()方法文件对象.read(num)num表示要从文件中读取的数据的长度(单位是字节),如果没有传入num,那么就表示读取文件中所有的数据。读10个字节 读全部 2.readline()方法一次读一行 3....
pandas文件读取和保存
能读取和保存的格式如下 1. CSV读取csvpandas.read_csv(filepath,sep=',')filepath:文件路径usecols:制定读取的列名,列表形式 读取open和close列import pandas as pd stock_data = pd.read_c...
DataFrame运算
1. 算数运算准备数据import pandas as pdstock_data = pd.read_csv('/root/Documents/stock_data.csv')print(stock_data) 2. 算数运算加法close列全体加10print(stock_data['close'].add(10))...