multiple fixes for urllib import for python2->3 conversion

This commit is contained in:
TrustedSec 2016-02-09 13:25:00 -05:00
parent 862d7acd68
commit e239ecf25a
6 changed files with 6 additions and 8 deletions

View file

@ -4,6 +4,7 @@ version 7.0.2
* added a capture recorder within SET so that you don't need to exit when using credential harvester with Apache specified. Can still exit whenever you want and will still be under your apache root directory, but this way - everything is self contained within SET itself.
* added disclaimer for if php files were rendered as text - means proper php plugins are not installed
* multiple fixes for urllib.imports for python2/3 compatibility
~~~~~~~~~~~~~~~~
version 7.0.1

View file

@ -12,8 +12,7 @@
# @TrustedSec
#
##########################################
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse
import urllib
import re
import threading
import sys

View file

@ -11,8 +11,7 @@
##########################################################################
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse
import urllib
import http.cookiejar
import sys
import random

View file

@ -36,8 +36,7 @@
##########################################################################
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse
import urllib
from Crypto.Cipher import AES
import sys
import os

View file

@ -11,7 +11,7 @@
############################################
from http.server import BaseHTTPRequestHandler
from http.server import HTTPServer
import urllib.parse
import urllib
import re
import os
import base64

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python
import subprocess
import re
import urllib.request, urllib.error, urllib.parse
import urllib
import os
from src.core.setcore import *
#