160个CrackMe之001

1. 程序分析 想要破解一个程序,必须先了解这个程序。所以,在破解过程中,对最初程序的分析很重要,它可以帮助我们理解作者的目的和意图,特别是对于注

Python小工具

谷歌多语言翻译 环境配置 1 2 3 pip uninstall googletrans==4.0.0-rc1 pip install googletrans==3.1.0a0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 from googletrans import Translator translator = Translator() data = '国家' print(translator.translate(data, "zh-CN").text)

Python入门学习

1. Python 基础 1.1 数据类型和变量 字符串是以单引号’或双引号"括起来的任意文本。 如果字符串里面有很多字符都需要转义,就需要加很多

音乐小工具

删除重复文件: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 import os import hashlib def get_file_hash(file_path): """ 计算文

从内存角度看待对象-静态分析

1. 源码 debug 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 #include <stdio.h> class Base { public: Base() { printf("Base()\n"); } virtual

Ubuntu常用命令

Ubuntu下关闭占用端口的进程 启动hugo发现端口1313已经被使用了 1 2 3 4 $ snap run hugo server -D port 1313 already in use, attempting to use an available port Start building sites … hugo v0.111.3-5d4eb5154e1fed125ca8e9b5a0315c4180dab192+extended linux/amd64 BuildDate=2023-03-12T11:40:50Z VendorInfo=snap:0.111.3 可以查看
0%