摘要: https://zhuanlan.zhihu.com/p/144847471 零知识证明想要解决的问题是,让一方向另一方证明他知道某个问题的答案但却不想透露该问题的具体答案。是不是有种贱贱的感觉? https://blog.csdn.net/qq_35739903/article/details/1 阅读全文
posted @ 2023-04-02 16:59 noobwei 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 数据结构Remake第四天 🌲 隔壁拿来直接能跑的 #include <iostream> using namespace std; typedef struct Node {//定义二叉树结构 char data; struct Node *lchild,*rchild; }*BiTree,Bi 阅读全文
posted @ 2023-03-26 17:02 noobwei 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 数据结构remake第三天 栈和串 栈的基本操作 #include <stdio.h> #include <stdlib.h> typedef int SElemType; typedef struct SeqStack { SElemType *data; int maxlen; int top; 阅读全文
posted @ 2023-03-25 17:02 noobwei 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Shell运算符 表达式和运算符之间要有空格,例如 2+2 是不对的,必须写成 2 + 2,这与我们熟悉的大多数编程语言不一样。 完整的表达式要被 `` 包含 算术运算符与C语言的没有区别 算术运算符 下面是算术运算符的例子 > expr 14 % 9 5 > expr 10 + 10 20 > e 阅读全文
posted @ 2023-03-21 16:48 noobwei 阅读(17) 评论(0) 推荐(0) 编辑
摘要: https://github.com/trustedsec/social-engineer-toolkit/issues/503 error in setoolkit #503 使用setoolkit的时候碰到了**[\*] Looks like the web_server can't bind 阅读全文
posted @ 2023-03-20 20:28 noobwei 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 数据结构remake第二天 静态链表 可以理解为没有指针的编程语言的替代方案,增加cur作为p->next #include<stdio.h> #include<stdlib.h> #define MAXSIZE 10 typedef int ElemType; typedef struct Nod 阅读全文
posted @ 2023-03-19 14:53 noobwei 阅读(13) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/wiki/软件测试 https://www.ibm.com/cn-zh/topics/software-testing https://www.softwaretestingmaterial.com/software-testing/ https:/ 阅读全文
posted @ 2023-03-18 15:22 noobwei 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 数据结构remake第一天 线性表的操作 // // baby DataStructrue.cpp // dataStructure // // Created by on 2023/3/17. #include<stdio.h> #define N 10 #define MAX 20 typede 阅读全文
posted @ 2023-03-17 19:58 noobwei 阅读(11) 评论(0) 推荐(0) 编辑
摘要: CHAP-1 (单选题, 10分)数字通信相对于模拟通信具有( )的优点 A. 占用频带小B. 抗干扰能力强C. 传输容量大D. 易于频分复用 正确答案: B (单选题, 10分)M进制的离散消息源消息源,其平均信息量最大时的概率分布为( ) A. 均匀分布B. 正态分布C. 瑞利分布D. 指数分布 阅读全文
posted @ 2023-02-24 14:58 noobwei 阅读(804) 评论(0) 推荐(0) 编辑
摘要: pikachu靶场 环境:phpstudy(MySQL5.7.26+Apache2.4.39)+pikachu靶场 暴力破解 基于表单的暴力破解 填写账号密码,submit时抓包 send to intruder之后设置爆破字典 跑出可以使用的账号和密码,登录成功 其实上面一张图已经可以看到密码了 阅读全文
posted @ 2022-12-27 16:55 noobwei 阅读(79) 评论(0) 推荐(0) 编辑