用于渗透测试、安全性、开发和乐趣的python库。

hackerman的Python项目详细描述


哈克曼

哈克曼图书馆是我做的有两个原因。

1. Because I want to make, package, and publish my own library
2. So I can use it in my penetration testing programs

所以是的

文档

密钥: $name-需要参数 英镑-可选参数 名称-函数名() name—类名 %type-返回类型

哈克曼

There's nothing here lol

hackerman.crypto

河豚(crypto.cipher.blowfish)

encrypt
$raw = raw bytes to encrypt
$password = plain text password
%bytes = encrypted bytes

decrypt
$raw = raw encrypted bytes to decrypt
$password = plain text password
%bytes = decrypted bytes

hmc(我自己的密码方法)

encrypt
$raw = raw bytes to encrypt
$password = plain text password
%bytes = encrypted bytes

decrypt
$raw = raw encrypted bytes to decrypt
$password = plain text password
%bytes = decrypted bytes

异或(crypto.cipher.xor)

encrypt
$raw = raw bytes to encrypt
$password = plain text password
%bytes = encrypted bytes

decrypt
$raw = raw encrypted bytes to decrypt
$password = plain text password
%bytes = decrypted bytes

rsa(crypto.publickey.rsa)

Key = RSA key class
£imp = default=False, if specified, needs to be an RSA key object
	encrypt = encrypt function
	$raw = raw bytes to encrypt with key
	%bytes = encrypted bytes

	decrypt = decrypt function
	$raw = raw encrypted bytes to decrypt with key
	%bytes = decrypted bytes

	export
	$fn = filename to save key to

importKey
$fn = filename to read key data from

洋葱(洋葱域)

generate = generate onion domain and key
%onion, %priv = onion domain, private key for said domain

处理程序

反向DNS(有效负载的处理程序。反向.dns)

NoCrypt = class needed if you don't want encryption
XORCrypt = class wrapper for xor en/de cryption
Handler = payload handler
	$crypt = method of encryption (NoCrypt, XORCrypt, or your own as long as it has the encrypt and decrypt methods)
	£send = default="send.com" domain for sending data (read transport.covert.dns.SpeedyClient)
	£listen = default="listen.com" (see above)

许可证

它是在gnu gpl下授权的(更多信息在“license”文件中)。这是我第一次添加许可证,所以我不知道我是否做得对。 基本上,不要发布封闭源代码版本,但是可以随意使用它做任何您想做的事情,不过,如果您相信我,那就很酷了。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java不适用于wildfly 8.2   java如何向ImageButton添加高程?   java如何使用带和空变量后缀的StrSubstitutor?   在AWS lambda上部署的springboot graphql应用程序中不允许使用java/graphql POST方法   java hiddenText=ca.a.getText();给出NullPointerException?   java如何将这两个正则表达式语句组合成一个字符串。repalcell()   java在Spring Boot中使用相同的存储库和实体创建多个数据源   用户界面如何在java GUI中检查复选框的状态?   更改Java列表中的引用   java一些HTTP请求不会出现在Fiddler中   java中带有<f:convertDateTime/>   jaxws+SSL中的java XML读取器错误XMLStreamException   html解析如何在java中使用Jsoup浏览网站   java Jackson如何在客户端代码中反序列化自定义的多态类型?   java字段、方法、基于类的注入有什么区别?我们如何使用这种注射剂?serviceResource注释需要哪些更改   java JPA:使用字符串字段,但修改它们并另存为字节数组