sql注入中联合查询group_concat位置 前言 题目环境 buuctf中[极客大挑战 2019]LoveSQL 联合查询中group_concat位置 思路 普通姿势 直到 可以看到报错,但我们的语句并没有任何错误 换到第三个位置就可以正常显示 本地实验也是会报错 最终payload都是在最 ...
分类:
数据库 时间:
2020-11-25 12:47:10
阅读次数:
12
引入 1.为什么要使用深浅拷贝 涉及到容器类型的修改操作时,想要保留原来的数据或修改后的数据,这是就需要使用到深浅拷贝来进行操作了 2.以下使用列表list1 = [ "str", 123, [111,222]]拷贝来进行实验 一.赋值操作 1.赋值操作原理 赋值过后, 源列表与新列表指向的是同一个 ...
分类:
其他好文 时间:
2020-11-25 12:27:04
阅读次数:
4
1. 实验任务1 assume cs:code, ds:data data segment db 'Nuist' db 5 dup(2) data ends code segment start: mov ax, data mov ds, ax mov ax, 0b800H mov es, ax m ...
分类:
其他好文 时间:
2020-11-24 12:39:43
阅读次数:
7
#include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("Enter a,b,c:"); while(scanf("%f%f%f",&a,&b,&c)!=EOF){ ...
分类:
其他好文 时间:
2020-11-24 12:17:23
阅读次数:
9
#PHP九九乘法表# <html><head></head><body><p> <?php header('Content-Type:text/html;charest=utf-8'); $i=1; $n=1; $sum;for($n=1;$n<=9;$n++){ for($i=1;$i<=$n;$ ...
分类:
其他好文 时间:
2020-11-24 12:14:54
阅读次数:
8
一、指令编码(硬编码)的结构 二、前缀指令是分组的: 1、 LOCK 和 REPEAT 前缀指令 LOCK F0 //如果再汇编指令中加上 LOCK ,当前这个地址,在多个CPU执行的时,某个时刻只能有一个CPU能读这个地址 REPNE/REPNZ F2 //重复执行后面的某个指令, REP/REP ...
分类:
其他好文 时间:
2020-11-23 12:33:57
阅读次数:
7
  { int n,a,b,i,s; printf("Enter a number:"); scanf("%d",&n); while(n){ i=0; s=0; while(n!=0){ a=n%10 ...
分类:
其他好文 时间:
2020-11-23 12:22:09
阅读次数:
3
#include "stdafx.h" #include <stdio.h> int main(int argc, char* argv[]) { char a,b,c,d,e; scanf("%c%c%c%c%c",&a,&b,&c,&d,&e); putchar(a); putchar(b); ...
分类:
其他好文 时间:
2020-11-23 12:14:20
阅读次数:
5