随笔分类 - 艺术
摘要:OSCP Security Technology - Network Scanning(1) Scanning with Nmap namp -sn -oN /root/sweep.txt 192.168.2.0/24 nmap --help kali@kali:~$ nmap --help Nma
阅读全文
摘要:OSCP Security Technology - Information Gathering Common Tools Google https://support.google.com/websearch/answer/2466433?hl=en Exploit-DB/Google Hacki
阅读全文
摘要:OSCP Security Technology - Introduction Modules Introduction to Kali Linux Information Gathering Scanning Enumeration Netcat Buffer Overflows Exploita
阅读全文
摘要:Master in Burp Suite - Tools Introductions(1) Introduction to Burp Proxy tab How to configure proxy and intercept request Deploy our target website -
阅读全文
摘要:Security and Cryptography in Python - TLS SSL protocol Refer to :https://en.wikipedia.org/wiki/Transport_Layer_Security
阅读全文
摘要:Security and Cryptography in Python - HMAC Implement in Python import hashlib # Alice and Bob share a secret key secret_key = "secret key".encode() #
阅读全文
摘要:Security and Cryptography in Python - Hash Functions(4) Why iterate over hash function and demonstrated by implementation in Python Code in Python: im
阅读全文
摘要:Security and Cryptography in Python - Hash Functions(3) How password are Verified https://docs.python.org/3/library/hashlib.html https://en.wikipedia.
阅读全文
摘要:Security and Cryptography in Python - Hash Functions(2) Digital Signatures works - uses hash functions https://en.wikipedia.org/wiki/RSA_(cryptosystem
阅读全文
摘要:Security and Cryptography in Python - Hash Functions(1) Properties of a Hash Function It is an one-way deterministic function The output is dependent
阅读全文
摘要:Security and Cryptography in Python - Public Key Encryption Systems - RSA(3) Wrong use of RSA Breaks it import math import random def is_prime(p): for
阅读全文
摘要:Security and Cryptography in Python - Public Key Encryption Systems - RSA(2) The security of RSA and Implement an Attack import math import random def
阅读全文
摘要:Security and Cryptography in Python - Public Key Encryption Systems - RSA(1) RSA - 1977 Key generation p,q ← primes n = p * q ← modulus e ← exponent d
阅读全文
摘要:Security and Cryptography in Python - Key Exchange(4) Implementing Differ-Hellman Key Exchange import math import random def is_prime(p): for i in ran
阅读全文
摘要:Security and Cryptography in Python - Key Exchange(3) Diffie–Hellman key exchange: https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange P
阅读全文
摘要:Security and Cryptography in Python - Key Exchange(2) def is_prime(p): for i in range(2, p): if p % i == 0: return False return True print(is_prime(7)
阅读全文
摘要:Security and Cryptography in Python - Key Exchange(1) # 14 + 15 mode 12 val = (14 + 15) % 12 print(val) # 4 * 5 mode 12 val = (4 * 5) % 12 print(val)
阅读全文
摘要:Security and Cryptography in Python - Block Cipher(3)
阅读全文
摘要:Security and Cryptography in Python - Block Cipher(2) Double DES from pyDes import * import random message = "01234567" key_11 = random.randrange(0, 2
阅读全文
摘要:Security and Cryptography in Python - Block Cipher(1) DES https://en.wikipedia.org/wiki/Data_Encryption_Standard GOST https://en.wikipedia.org/wiki/GO
阅读全文

浙公网安备 33010602011771号