Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

什么是零知识证明 (Zero-knowledge proof)A zero-knowledge proof (ZKP) is a technique that enables one party (the prover) to demonstrate to another party (the verifier) the truth of a certain statement withou...

简单记录一下今天面试问到的问题以及正确答案。基本上全是在问Linear Algebra的各种问题。不过有一点我没有想到的是,他们居然会让我讲我的论文以及CTF比赛的内容。(当然,论文的部分跟我预想的一样,他们应该只听懂了introduction的部分。毕竟这东西实在是太纯数了点,基本上没有任何实际应用。) 1. 怎么样可以快速确定一个矩阵的秩(rank)?(假设$A \in \mathbb{...

编码理论相关笔记

LatticesVectors 1702 Size and Basis \sqrt{4^2 + 6^2+2^2+5^2} = 919 Gram Schmidt 12345678910111213141516171819202122232425262728import numpy as np# 给定的基向量v1 = np.array([4, 1, 3, -1], dtype=float)v2...

各种概率分部

题目这道题给了源代码: 123456789101112131415161718192021222324252627282930313233343536373839#include <stdio.h>#include <stdlib.h>// --------------------------------------------------- SETUPvoid ig...

ret2reg。通过Buffer Overflow将返回地址修改成我们自己手写的/bin/sh命令。

通过Buffer Overflow来修改目标变量的值。

一些关于Pwn的基础知识。(包括一些pwn常用的Linux命令)

通过Buffer Overflow修改返回地址以调用目标函数并传递参数。