Skip to content

Commit

Permalink
[six] Add missing imports to six
Browse files Browse the repository at this point in the history
  • Loading branch information
heapcrash committed Jul 10, 2020
1 parent 8b1c25f commit 53ecb27
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions pwnlib/adb/bootloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import ctypes
import io
import os
import six
import sys

from pwnlib.log import getLogger
Expand Down
1 change: 1 addition & 0 deletions pwnlib/memleak.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import functools
import string

import six
from six.moves import range

from pwnlib.context import context
Expand Down
1 change: 1 addition & 0 deletions pwnlib/rop/gadgets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
import six

class Gadget(object):
"""
Expand Down
1 change: 1 addition & 0 deletions pwnlib/shellcraft/templates/arm/linux/egghunter.asm
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<% import six %>
<% from pwnlib.shellcraft.arm import mov %>
<% from pwnlib.util.packing import unpack %>
<% from pwnlib import constants %>
Expand Down
1 change: 1 addition & 0 deletions pwnlib/shellcraft/templates/arm/linux/open_file.asm
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<% import six %>
<%page args="filepath, flags = 'O_RDONLY', mode = 0644"/>
<%docstring>Opens a file. Leaves the file descriptor in r0.

Expand Down

0 comments on commit 53ecb27

Please sign in to comment.