
Python
HeliantHuSiHM
Python/Go, CTFer
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CTF中常用的Python脚本
分享一下我学习CTF一个月的Python脚本.有栅栏, 凯撒, Rot13, xor等....原创 2018-12-23 10:43:53 · 7627 阅读 · 2 评论 -
Python3 Rot_13 算法
import strings1 = "a1zLbgQsCESEIqRLwuQAyMwLyq2L5VwBxqGA3RQAyumZ0tmMvSGM2ZwB4tws"rot13_1 = string.ascii_lowercase[:13]rot13_2 = string.ascii_lowercase[13:]result = []for i in s1: find_1 = rot13_1.find(i.lower()) if find_1 != -原创 2018-12-19 09:15:35 · 1091 阅读 · 0 评论 -
RSA共模攻击 Python脚本
最实用的RSA共模攻击Python实现.原创 2019-01-08 21:10:39 · 7210 阅读 · 0 评论 -
TensorFlow 使用Dataset读取CSV数据 (启用Eager)
1. 导入模块 并且屏蔽warningimport tensorflow as tfimport tensorflow.contrib.eager as tfeimport globimport osos.environ["TF_CPP_MIN_LOG_LEVEL"] = "2"2.启用eagertf.enable_eager_execution()3.定义读取数据函数def ...原创 2019-06-12 21:13:17 · 1807 阅读 · 0 评论 -
Python进程和线程的应用. (快速上手!
学会使用Python进程和线程进程模块:from multiprocessing import Process线程模块:from threading import Thread两者都可以通过被继承的方式重写内置run方法举个栗子:class RewriteClass(Process): def __init__(self): super().__init__(...原创 2019-07-15 16:52:57 · 238 阅读 · 0 评论