rust学习日记
go固然很好,但学go最好的时间是三年前,其次是现在而现在,rust正是三年前的gohttps://kaisery.github.io/trpl-zh-cn/ch01-03-hello-cargo.html 2022.11.09cargo newcargo build [–release]car ...
Read more
cmake编译UPX
│8: git clone https://github.com/upx/upx/ --recursive │ │9: cd C:\Users\MECHREVO\CLionProjects\upx88\upx │ │11: D:\cmake\bin\cmake.exe -B 9 ...
Read more
一些代码审计
读https://www.leavesongs.com/PENETRATION/cachet-from-laravel-sqli-to-bug-bounty.html有感,去找一下有类似bug的问题 简单来说 就是存在where\(\$\w+\)的代码 但是再回溯一下 scopeSearch 方法 ...
Read more
sql注入总结
关于SQL结构SQL基本结构就是 SELECT [column] FROM [table] 而这条查询语句会产生一个新的table,记为x,而table部分可以是实际的table,也可以是查询产生的table SQL的基本语句为增删改查,也就是INSERT/DELETE FROM/ ...
Read more
coreui-windows-npm-i报错
12npm config set msvs_version 2017 npm config set msbuild_path "D:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin ...
Read more
laravel日记
1234$request->validate([ 'email' => 'required|email', 'password' => 'required|confirmed|min:8', ...
Read more
日记
用 update-alternatives 管理多版本 比如 update-alternatives –display java 列出java版本然后 update-alternatives –config php 选择版本
Read more
学pwn日记
vim可以在命令行中用 %!xxd 进入16进制查看 然后可以用**%!xxd -r**恢复
Read more
unidbg
https://www.jianshu.com/p/9b53af35d5f7 https://github.com/zhkl0228/unidbg
Read more
frida常用js
7777 执行 1frida -U -f com.example.android -l script.js 通过python执行 123456789101112import timeimport fridadevice8 = frida.get_device_manager().add_remo ...
Read more