cryptohack(21)
-
cryptohack.org - Salty
from Crypto.Util.number import * n = 110581795715958566206600392161360212579669637391437097703685154237017351570464767725324182051199901920318211290404777259728923614917211291562555864753005179326101890427669819834642007924406862482343614488768256951616086287044725034412802176312273081322195866046098595306261781788276570920467840172004530873767 e = 1 ct = 4498123071821218360427478592579314544265..
2022.08.15 -
cryptohack.org - Encoding Challenge
보호되어 있는 글입니다.
2021.08.20 -
cryptohack.org - Manyprime
from Crypto.Util.number import * #S = H(M)d1 mod N1. n = 58064239189884319292956385687089779965088315271876176293229248225215259127987142156916203719041903643504179773988038952959367448555579223490096940201905560178166204451599921003269827598163137665111731867736874286768718014004871562716064177111804037257357547933083009298980073010557370055771714625186058880250931053479231074889850439496626381..
2021.08.07 -
cryptohack.org - Network Attacks
#!/usr/bin/env python3 import telnetlib import json HOST = "socket.cryptohack.org" PORT = 11112 tn = telnetlib.Telnet(HOST, PORT) def readline(): return tn.read_until(b"\n") def json_recv(): line = readline() return json.loads(line.decode()) def json_send(hsh): request = json.dumps(hsh).encode() tn.write(request) print(readline()) print(readline()) print(readline()) print(readline()) request = {..
2021.08.03 -
cryptohack.org - Modular Inverting
보호되어 있는 글입니다.
2021.08.02 -
cryptohack.org - Great Snakes
보호되어 있는 글입니다.
2021.08.01