摘要: [数学运算、加密解密相关] gmpy安装使用方法 gmpy2安装使用方法 PyCrpyto windows安装使用方法 PyCryptodome安装使用方法 python libnum库安装使用方法 yafu安装使用方法以及mismatched parens解决方法 z3-solver安装和使用方法 阅读全文
posted @ 2018-02-19 11:42 pcat 阅读(1895) 评论(0) 推荐(3) 编辑
摘要: 使用docker-ce,pull一个ubuntu:22.04镜像,run后进行 apt update 更新一会,就报错: Reading package lists... Done E: Problem executing scripts APT::Update::Post-Invoke 'rm - 阅读全文
posted @ 2022-11-22 00:06 pcat 阅读(1605) 评论(0) 推荐(0) 编辑
摘要: 在Kali上启动msfconsole,报错: WARN: Unresolved or ambiguous specs during Gem::Specification.reset: io-console (~> 0.5) Available/installed versions of this g 阅读全文
posted @ 2021-04-06 14:45 pcat 阅读(1590) 评论(0) 推荐(2) 编辑
摘要: FlashText算法可用于大规模替换、检索文档中的关键字。 本文要介绍的是FlashText算法的python实现模块。 论文:https://arxiv.org/abs/1711.00046 文章:FlashText – A library faster than Regular Express 阅读全文
posted @ 2020-05-05 15:04 pcat 阅读(1970) 评论(0) 推荐(0) 编辑
摘要: 运行wpscan报错 /usr/local/lib/site_ruby/2.7.0/rubygems/dependency.rb:313:in `to_specs': Could not find 'nokogiri' (~> 1.8.0) - did find: [nokogiri-1.10.9] 阅读全文
posted @ 2020-05-03 03:23 pcat 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: zsteg可以检测PNG和BMP图片里的隐写数据。 目前,zsteg支持检测: LSB steganography in PNG & BMP zlib-compressed data OpenStego Camouflage 1.2.1 LSB with The Eratosthenes set g 阅读全文
posted @ 2020-04-03 10:29 pcat 阅读(22663) 评论(0) 推荐(0) 编辑
摘要: Z3是一个微软研究院开源的theorem prover(定理证明器),支持位向量、布尔、数组、浮点数、字符串以及其他数据类型。Z3是一个SMT solver以及支持SMTLIB的格式。 这里简单介绍几个概念: SAT(Boolean Satisfiability Problem/布尔可满足性问题) 阅读全文
posted @ 2020-03-29 14:48 pcat 阅读(10629) 评论(0) 推荐(0) 编辑
摘要: Dockerfile的部分内容如下: RUN mkdir /root/.pip && echo -e "[global]\nindex-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf RUN pip inst 阅读全文
posted @ 2020-03-26 11:54 pcat 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: frida是一个轻量级别的hook框架。官网介绍:Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. frida由两部分组成:一部分是运行在系统上的交互工具frida 阅读全文
posted @ 2020-03-16 09:13 pcat 阅读(22894) 评论(2) 推荐(1) 编辑
摘要: 在Kali上进行metasploit的更新: apt-get update apt-get install -y metasploit-framework 执行msfconsole,报错: You must use Bundler 2 or greater with this lockfile. 看 阅读全文
posted @ 2020-03-15 22:54 pcat 阅读(4061) 评论(1) 推荐(0) 编辑
摘要: gmpy是一种C编码的Python扩展模块,提供对GMP(或MPIR)多精度算术库的访问。gmpy 1.17是1.x系列的最终版本,没有进一步的更新计划。所有进一步的开发都在2.x系列(也称为gmpy2)中进行。 0x01 windows上安装gmpy 访问https://www.lfd.uci.e 阅读全文
posted @ 2019-10-08 00:42 pcat 阅读(7252) 评论(1) 推荐(0) 编辑