This file contains hidden or 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
    
  
  
    
  | from pwn import ELF, process, log | |
| from pwnlib.util.packing import p32 | |
| # binary to exploit | |
| FILE = './ovrflw' | |
| BINARY = ELF(FILE) | |
| # LOCAL VERSION | |
| LIBC = ELF('/lib32/libc.so.6') | |
| LIBC_OFFSET = 0xf7d36000 | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import sys | |
| import requests | |
| from string import ascii_letters, digits, printable | |
| URL = '' | |
| COOKIES = { | |
| 'lang': 'english', | |
| 'PHPSESSID': '', | 
  
    
      This file contains hidden or 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 python3 | |
| import argparse | |
| import requests | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Util.number import long_to_bytes | |
| from base64 import b64decode | |
| import gmpy | |
| import sys | 
  
    
      This file contains hidden or 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 pwn import ELF, process, context, log, ssh, u64, p64 | |
| BINARY = '/opt/Configuration_Utility/Protobs' | |
| # BINARY = './re_protobs' | |
| elf = ELF(BINARY) | |
| LIBC_NAME = './Configuration_Utility/libc.so.6' | |
| libc = ELF(LIBC_NAME) | |
NewerOlder