john the ripper 解密加盐后密文
source: Possible to crack salted-sha512? 密文是用 passowrd + salt 形式 SHA512 加密的, 所以就 1john --format='dynamic=sha512($p.$s)' hash.hash 然后在文件里是 hash$sal ...
Arch Yafu2 安装指南
YAFU is the result of an ongoing hobby project to understand how to factorlarge integers, and how to factor them fast. 参考: How I install YAFU version 2 ont ...
wsl2 / ubuntu 安装和配置 Emacs + mit-scheme
主要是看 SICP 书的时候配下环境 安装命令首先安装 Emacs 和 mit-scheme第一条命令可以直接安装最新开发版的 Emacs, 目前是 GNU Emacs 30.0.50 12sudo snap install emacs --edge --classicsudo apt install mit-sc ...
Eclipse java.lang.NoSuchMethodError: 'boolean com.ibm.icu.text.UTF16.isSurrogate(char)'
java.lang.NoSuchMethodError: ‘boolean com.ibm.icu.text.UTF16.isSurrogate(char)’Log1234567891011121314151617181920212223!ENTRY org.eclipse.core.jobs 4 2 2023-01- ...
org.gradle.internal.remote.internal.MessageIOException: Could not write '/127.0.0.1:<random port>'
问题在跑 Kotlin test 的时候有的时候会遇到, 用的是 junit test 12345678910111213141516171819202122232425262728293031323334353637Unexpected exception thrown.org.gradle.internal.r ...
Kotlin/Native lld-link: error: undefined symbol: std::__throw_bad_array_new_length()
问题在 GitHub Workflow 或者 本地运行 Kotlin/Native 的 link 任务报错:本地 & GitHub 环境: 12os = Windowscompiler = GCC 11.2.0 以下为在 GitHub Workflow 上的日志片段 12345678910111213 ...
CTF 入门的一些笔记
shellcode 注入需要解的程序, 目的是获取同目录下的 flag.txt 内容 12345678910111213141516171819// chall.c#include <stdio.h>#include <stdlib.h>void vuln(void){ char bu ...
KotlinSourceSet with name 'unixMain' not found.
背景build.gradle.kt 1234567891011121314151617181920212223242526272829303132333435plugins { kotlin("multiplatform")}group = "tech.eritq ...
qq协议 0825 和 0836 udp 登录包解析
qq协议 0825 和 0836 udp 登录包解析参考0825包参考: https://www.cnblogs.com/mRRRR/p/5288931.html虽然是2016年的, 但是里面的结构大体还是不变 参考: https://github.com/fa-ge/PCQQ-ProtocolPCQQ协议的实现, 这 ...
C++ 一种禁止方法被使用的宏
123456789#if defined(_MSC_VER)#define ShouldNotUse(msg) _Pragma("warning(error:4996)") [[deprecated(msg)]] _Pragma("warning(warning:4996)")# ...