This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://crackmes.one/crackme/5c9d9eea33c5d4419da55641 | |
import angr | |
import claripy | |
import time | |
from subprocess import Popen, PIPE | |
N = 25 # number of keys to generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://crackmes.one/crackme/5dce805c33c5d419aa0131ae | |
import angr | |
import claripy | |
import logging | |
import time | |
from subprocess import Popen, PIPE, STDOUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://crackmes.one/crackme/5d17962b33c5d41c6d56e1f2 | |
import string | |
import random | |
import time | |
from subprocess import Popen, PIPE, STDOUT | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://crackmes.one/crackme/5d17962b33c5d41c6d56e1f2 | |
from unicorn import * | |
from unicorn.x86_const import * | |
import sys | |
sys.path.append("../..") | |
from qiling import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# https://crackmes.one/crackme/5df26b4033c5d419aa013362 | |
import angr | |
import claripy | |
import subprocess | |
import sys | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# challenge page: https://crackmes.one/crackme/5dfd77a833c5d419aa013406 | |
import angr | |
import claripy | |
from datetime import datetime | |
def solve(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import angr | |
import claripy | |
import subprocess | |
from datetime import datetime | |
# argument to hook | |
def skip_banner(state): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import angr | |
import claripy | |
from datetime import datetime | |
# called in the hook to skip instructions | |
def skip_banner(state): | |
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
from lepton import * | |
from struct import pack | |
def main(): | |
with open("keygenme", "rb") as f: | |
elf_file = ELFFile(f) | |
elf_file.ELF_header.fields["e_shoff"] = pack("Q", 0x00003128) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# crackme page: https://crackmes.one/crackme/5d7c66d833c5d46f00e2c45b | |
# download link: https://crackmes.one/static/crackme/5d7c66d833c5d46f00e2c45b.zip | |
# zip archive password: crackmes.one | |
import angr | |
import claripy | |
import subprocess | |
from datetime import datetime |
NewerOlder