首页 > TAG信息列表 > 未写

SSRF学习(未写完)

SSRF学习(未写完) SSRF简介 ​ SSRF,Server-Side Request Forgery,服务端请求伪造,是一种由攻击者构造形成由服务器端发起请求的一个漏洞。一般情况下,SSRF 攻击的目标是从外网无法访问的内部系统。(正是因为它是由服务端发起的,所以它能够请求到与它相连而与外网隔离的内部系统) ​ SSRF

NOIP2021 打铁记(未写完,待更)

早上6点摸黑起床.... 坐地铁去高中部,蹭校车。 今年是我第一次参加noip,希望开门红(WA) 在地铁上在洛谷打卡,中吉,竟然没有大吉!? 打卡QQ,在每个群里发一遍rp++ 上车了,找cmb要了2块巧克力。 到达gf,crx老师派巧克力,由于我的厚颜无耻绝顶聪明,骗走了3块巧克力。 在门口和同学拍了张照,然后就进

数学

目录L7 整数反转L9 回文数(未写)用Rand7()实现Rand10()(!!!!!字节腾讯常考)JS44 数字序列中某一位的数字(未写)JS62 圆圈中最后剩下的数字(未写) L7 整数反转 class Solution { public: int reverse(int x) { int boundry = INT_MAX / 10; int result = 0;

未写完

code:  #include <cstdio> #include <string> #include <cstring> #include <algorithm> using namespace std; const int N=200006; int cur_id; namespace IO { void setIO(string s) { string i

String的源码理解(未写完)

String本质上是一个char数组(jdk 9之后是byte数组),并且是一个声明为final的数组,并且String的不可变也是通过这种把数组声明为final来实现的 public final class String implements java.io.Serializable, Comparable<String>, CharSequence { /** The value is used for character s