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
import sys | |
import os | |
import warnings | |
import zlib | |
sys.path.append(os.getcwd() + '/' + "pylzma.egg") | |
import pylzma | |
import struct | |
import random | |
import shutil | |
from zipfile import ZipFile |
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
import inspect | |
from minitest import case, tests | |
from functools import wraps, partial | |
def makepartial(fn): | |
""" | |
This function is a decorator which allows functions with a fixed | |
number of arguments gracefully to be transformed into partial functions | |
given too few arguments to execute. |
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
import sys | |
import os | |
import warnings | |
import zlib | |
import struct | |
import random | |
import shutil | |
import zipfile | |
from zipfile import ZipFile | |
import time |
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
' based on | |
' https://stackoverflow.com/questions/17877389/how-do-i-download-a-file-using-vba-without-internet-explorer | |
' | |
' PowerShdll.dll by @p3nt4 | |
' https://github.com/p3nt4/PowerShdll | |
' | |
' rundll32 is a good candidate as blocking this abuse binary impacts certain Windows functionality - RDP/Office right-click | |
' shortcuts, and "run-as" a non-privileged user (perhaps a functionality edge-case) | |
Sub Document_Open() |