1.打开网页,得到信息如下 2.打开hackbar,在body里传入post参数。 3.得到flag如下 4.主要考察post传参,和简单的php代码审计。 ...
分类:
Web程序 时间:
2021-05-24 04:45:46
阅读次数:
0
AtCoder Regular Contest 118 A - Tax Included Price int main() { IOS; ll k, c; cin >> n >> k; c = (100 * k - 1) / n + 1; cout << (n + 100) * c / 100 - ...
分类:
其他好文 时间:
2021-05-24 04:22:14
阅读次数:
0
任务1 #include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = ...
分类:
其他好文 时间:
2021-04-30 12:31:08
阅读次数:
0
利用GetModuleHandle()这个函数就可以获取主程序的句柄,然后在通过GetProcAddress()这个函数获取主程序的函数地址; 具体代码如下: HMODULE hModule=GetModuleHandle(NULL);//获取主程序句柄if (hModule)//判断是否获取成功 ...
分类:
其他好文 时间:
2021-04-30 12:04:41
阅读次数:
0
(1)同步块的设置和锁的选择,锁与同步块中处理语句直接的关系 设置Elevator(电梯对象)和Input(读入方法)两个线程,同步运行。 为了避免电梯在无需工作时轮询,将电梯的行为用synchronized封装起来,当满足“请求队列为空”、“电梯内无乘客”和“输入未停止”时,电梯用wait()停止 ...
分类:
其他好文 时间:
2021-04-26 13:59:01
阅读次数:
0
识别无符号数并计算其值 要实现的功能: 通过状态转换图来识别无符号数,并计算其值进行输出 程序的要求如下: 1. 在程序内采用二维数组保存识别无符号数的状态转换矩阵; 2. 在识别无符号数的过程中,实现把输入的无符号数字符串转换成数值显示(不能使用类似atoi等函数实现); 3. 要采用矩阵查表的方 ...
分类:
其他好文 时间:
2021-04-24 13:57:56
阅读次数:
0
一、问题报错 [ERROR] InnoDB: Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoint xxxx and the end yyyy. 因MySQL上存储的应用数据并没有多大,mysql下多张 ...
分类:
数据库 时间:
2021-04-22 15:22:00
阅读次数:
0
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:
其他好文 时间:
2021-04-21 12:32:16
阅读次数:
0
爆搜,按照题意来搜。。。 太难写了,当模拟写的,代码分成了很多块,长度比较难看。。。 #include<bits/stdc++.h> using namespace std; #define ll long long #define fastio ios::sync_with_stdio(false ...
分类:
其他好文 时间:
2021-04-20 15:37:24
阅读次数:
0
1.simple_php ?<?php show_source(__FILE__); include("config.php"); $a=@$_GET['a']; $b=@$_GET['b']; if($a==0 and $a){ echo $flag1; } if(is_numeric($b)){ ...
分类:
其他好文 时间:
2021-04-20 14:34:36
阅读次数:
0