2018年1月3日

IDA 宏定义

摘要: /* This file contains definitions used by the Hex-Rays decompiler output. It has type definitions and convenience macros to make the output more readable. Copyright (c) 2007-2011 Hex-Rays... 阅读全文

posted @ 2018-01-03 22:43 gwind 阅读(2095) 评论(0) 推荐(0) 编辑

2017年12月23日

实验吧-catalyst-system

摘要: 刚学逆向很多都不懂,本题也是在看了 http://countersite.org/articles/reverse_engineering/136-revers-s-alexctf-2017.html上的writeup 后才有点明白,但还有一些不明白的地方,写这个writeup一方面记录自己的思考过 阅读全文

posted @ 2017-12-23 13:23 gwind 阅读(432) 评论(0) 推荐(0) 编辑

python整数转ASCII码

摘要: # *-* coding:utf-8 *-* import binascii data = [1441465642, 251096121, -870437532, -944322827, 647240698, 638382323, 282381039, -966334428, -58112612, 605226810] result = [] # 转十六进制 def to_16(data):... 阅读全文

posted @ 2017-12-23 12:39 gwind 阅读(3377) 评论(0) 推荐(0) 编辑

2017年12月16日

mdbtools使用

摘要: 1、导入数据库到mysql(将key.mdb导入MySQL的test数据库,此时只导入表结构) mdb-schema key.mdb mysql | mysql -u root -p test 2、将表导入数据库(此时可将表的内容导入数据库中) mdb-export -I mysql key.mdb 阅读全文

posted @ 2017-12-16 00:18 gwind 阅读(1013) 评论(0) 推荐(0) 编辑

python之MD5、base64\base32解密

摘要: # -*- coding:utf-8 -*- import hashlib import base64 # 求最大公约数gys # def gys(m, n): # c = 1 # while(c != 0): # c = m % n # m = n # n = c # return m # MD5加密 # m = ha... 阅读全文

posted @ 2017-12-16 00:02 gwind 阅读(951) 评论(0) 推荐(0) 编辑

2017年12月12日

CTF常用在线工具总结

摘要: 在线工具 MD5加密 MD5解密(推荐) MD5解密(推荐) MD5解密 escap加解密 维吉尼亚密码 SHA 对称加密AES DES\3DES RC4\Rabbit Quoted-printable 栅栏密码 希尔密码 猪圈密码 培根密码(方式1) rot13\18解码 rot13\18编码 凯 阅读全文

posted @ 2017-12-12 22:58 gwind 阅读(2896) 评论(0) 推荐(0) 编辑

2017年12月11日

hash扩展长度攻击及hashdump使用

摘要: 摘自: 1、http://www.freebuf.com/articles/web/69264.html 2、https://www.cnblogs.com/pcat/p/5478509.html 0×01 引言 为什么会想到这个呢?上周末做了“强网杯”的童鞋们应该都能知道吧,它其中有个密码学的题目 阅读全文

posted @ 2017-12-11 21:33 gwind 阅读(4837) 评论(0) 推荐(0) 编辑

ssh登录问题

摘要: ssh username@ip 密码正确但是登陆ssh时permission denied 阅读全文

posted @ 2017-12-11 00:19 gwind 阅读(156) 评论(0) 推荐(0) 编辑

2017年12月9日

RSA的共模攻击

摘要: 实验吧题目:http://www.shiyanbar.com/ctf/1834 参考:http://hebin.me/2017/09/07/%e8%a5%bf%e6%99%aectf-strength/ 首先说一下RSA的工作原理,RSA涉及一下几个参数: 要加密的信息为m,加密后的信息为c; 模n 阅读全文

posted @ 2017-12-09 23:32 gwind 阅读(16807) 评论(1) 推荐(3) 编辑

RSA工作原理

摘要: 摘自:http://www.ruanyifeng.com/blog/2013/07/rsa_algorithm_part_two.html 一、基础数论 1、互质关系 如果两个正整数,除了1以外,没有其他公因子,我们就称这两个数是互质关系(coprime)。比如,15和32没有公因子,所以它们是互质 阅读全文

posted @ 2017-12-09 23:15 gwind 阅读(17795) 评论(2) 推荐(3) 编辑

导航