コード例 #1
0
ファイル: splash.py プロジェクト: runejuhl/pwntools
def splash():
    log.trace('\x1b[G\x1b[?25l')
    for c in range(8):
        for line in _lines:
            log.trace(color(c % 8, line) + '\n')
            sleep(0.005)
        for _ in _lines:
            log.trace('\x1b[F')
    for line in _lines:
        log.trace(line + '\n')
    log.trace('\x1b[?25h')
コード例 #2
0
ファイル: splash.py プロジェクト: 7h3rAm/pwntools
def splash():
    """Put this at the beginning of your exploit to create the illusion that your sploit is enterprisey and top notch quality"""
    log.trace('\x1b[G\x1b[?25l')
    for c in range(8):
        for line in _lines:
            log.trace(color(c % 8, line) + '\n')
            sleep(0.005)
        for _ in _lines:
            log.trace('\x1b[F')
    for line in _lines:
        log.trace(line + '\n')
    log.trace('\x1b[?25h')
コード例 #3
0
ファイル: splash.py プロジェクト: yudevan/pwntools
def splash():
    """Put this at the beginning of your exploit to create the illusion that your sploit is enterprisey and top notch quality"""
    log.trace('\x1b[G\x1b[?25l')
    for c in range(8):
        for line in _lines:
            log.trace(color(c % 8, line) + '\n')
            sleep(0.005)
        for _ in _lines:
            log.trace('\x1b[F')
    for line in _lines:
        log.trace(line + '\n')
    log.trace('\x1b[?25h')