-
Run the command:
python pixiv_auth.py login
This will open the browser with Pixiv login page.
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 -*- | |
import argparse | |
import math | |
import gdb | |
import pwndbg.arch | |
import pwndbg.commands |
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
from pwn import * | |
import binascii | |
import time | |
class Enc: | |
key = list(binascii.unhexlify('7d07cba30c2a82cf2b2119e5ff2c2e8d')) | |
i = 0 | |
def __init__(self, key2=None): | |
if key2: |