pupy/client/sources/buildenv.sh

263 lines
8.9 KiB
Bash
Raw Normal View History

#!/bin/sh
unset WINEARCH WINEPREFIX
set -xe
SELF=`readlink -f $0`
CWD=`dirname $0`
SOURCES=`readlink -f $CWD/../../`
2017-01-08 04:58:09 +00:00
PYTHON64="https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi"
PYTHON32="https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi"
PYTHONVC="https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi"
2017-01-08 04:58:09 +00:00
# PYCRYPTO32="http://www.voidspace.org.uk/downloads/pycrypto26/pycrypto-2.6.win32-py2.7.exe"
# PYCRYPTO64="http://www.voidspace.org.uk/downloads/pycrypto26/pycrypto-2.6.win-amd64-py2.7.exe"
# PYWIN32="http://downloads.sourceforge.net/project/pywin32/pywin32/Build%20220/pywin32-220.win32-py2.7.exe"
# PYWIN64="http://downloads.sourceforge.net/project/pywin32/pywin32/Build%20220/pywin32-220.win-amd64-py2.7.exe"
PACKAGES="rpyc pyaml rsa pefile rsa netaddr win_inet_pton netaddr tinyec pycryptodome cryptography pypiwin32"
PACKAGES="$PACKAGES mss pyaudio scapy impacket pyOpenSSL colorama pyuv"
BUILDENV=${1:-`pwd`/buildenv}
if [ -f $BUILDENV/.ready ]; then
echo "Buildenv at $BUILDENV already prepared"
exit 0
fi
exec < /dev/null
WINE=${WINE:-wine}
WINE32="$BUILDENV/win32"
WINE64="$BUILDENV/win64"
DOWNLOADS="$BUILDENV/downloads"
MINGW64=${MINGW64:-x86_64-w64-mingw32-g++}
MINGW32=${MINGW32:-i686-w64-mingw32-g++}
WINPTY=../../pupy/external/winpty
mkdir -p "$BUILDENV"
mkdir -p "$DOWNLOADS"
WINEARCH=win32 WINEPREFIX=$WINE32 wineboot
if [ ! $? -eq 0 ]; then
echo "apt-get install wine32"
exit 1
fi
WINEARCH=win64 WINEPREFIX=$WINE64 wineboot
if [ ! $? -eq 0 ]; then
echo "apt-get install wine64"
exit 1
fi
for dist in $PYTHON32 $PYTHON64 $PYTHONVC $WINETRICKS; do
2017-03-10 20:26:10 +00:00
wget -qcP $DOWNLOADS $dist
done
for prefix in $WINE32 $WINE64; do
2016-10-21 20:19:14 +00:00
rm -f $prefix/dosdevices/y:
rm -f $prefix/dosdevices/x:
ln -s ../../downloads $prefix/dosdevices/y:
ln -s $SOURCES $prefix/dosdevices/x:
done
WINEPREFIX=$WINE32 wineserver -k || true
[ ! -f $WINE32/drive_c/.python ] && \
2017-01-08 04:58:09 +00:00
WINEPREFIX=$WINE32 msiexec /i Y:\\python-2.7.13.msi /q && \
touch $WINE32/drive_c/.python
2016-10-21 20:19:14 +00:00
WINEPREFIX=$WINE32 wineboot -r
WINEPREFIX=$WINE32 wineserver -k || true
2016-10-21 20:19:14 +00:00
[ ! -f $WINE64/drive_c/.python ] && \
2017-01-08 04:58:09 +00:00
WINEPREFIX=$WINE64 msiexec /i Y:\\python-2.7.13.amd64.msi /q && \
touch $WINE64/drive_c/.python
2016-10-21 20:19:14 +00:00
WINEPREFIX=$WINE64 wineboot -r
WINEPREFIX=$WINE64 wineserver -k || true
2016-10-21 20:19:14 +00:00
for prefix in $WINE32 $WINE64; do
2016-10-21 20:19:14 +00:00
[ ! -f $prefix/drive_c/.vc ] && \
WINEPREFIX=$prefix msiexec /i Y:\\VCForPython27.msi /q && \
touch $prefix/drive_c/.vc
done
2017-03-14 06:47:30 +00:00
export WINEPREFIX=$WINE64
wine reg delete 'HKLM\Software\Microsoft\Windows\CurrentVersion' /v SubVersionNumber /f || true
wine reg delete 'HKLM\Software\Microsoft\Windows\CurrentVersion' /v VersionNumber /f || true
wine reg delete 'HKLM\Software\Microsoft\Windows NT\CurrentVersion' /v CSDVersion /f || true
wine reg delete 'HKLM\Software\Microsoft\Windows NT\CurrentVersion' /v ProductName /f || true
wine reg delete 'HKLM\Software\Microsoft\Windows NT\CurrentVersion' /v CurrentBuildNumber /f || true
wine reg delete 'HKLM\Software\Microsoft\Windows NT\CurrentVersion' /v CurrentVersion /f || true
wine reg delete 'HKLM\System\CurrentControlSet\Control\ProductOptions' /v ProductType /f || true
wine reg delete 'HKLM\System\CurrentControlSet\Control\ServiceCurrent' /v OS /f || true
wine reg delete 'HKLM\System\CurrentControlSet\Control\Windows' /v CSDVersion /f || true
wine reg delete 'HKCU\Software\Wine' /v Version /f || true
wine reg delete 'HKLM\System\\CurrentControlSet\\Control\\ProductOptions' /v ProductType /f || true
wine reg add \
'HKCU\Software\Microsoft\DevDiv\VCForPython\9.0' \
/t REG_SZ /v installdir \
/d 'C:\Program Files (x86)\Common Files\Microsoft\Visual C++ for Python\9.0' \
/f
wine reg add \
'HKLM\System\CurrentControlSet\Control\ProductOptions' \
/v ProductType /d "WinNT" /f
wine reg add \
'HKLM\Software\Microsoft\Windows NT\CurrentVersion' \
/t REG_SZ /v CSDVersion \
/d 'Service Pack 1' \
/f
wine reg add \
'HKLM\Software\Microsoft\Windows NT\CurrentVersion' \
/t REG_SZ /v ProductName \
/d 'Microsoft Windows 7' \
/f
wine reg add \
'HKLM\Software\Microsoft\Windows NT\CurrentVersion' \
/t REG_SZ /v CurrentBuildNumber \
/d '7601' \
/f
wine reg add \
'HKLM\Software\Microsoft\Windows NT\CurrentVersion' \
/t REG_SZ /v CurrentVersion \
/d '6.1' \
/f
wine reg add \
'HKLM\System\CurrentControlSet\Control\Windows' \
/t REG_DWORD /v CSDVersion \
/d 256 \
/f
wineboot -fr
wineserver -k || true
# Well, some strange goes on, so let's ensure it was changed
sed -i $WINEPREFIX/system.reg -e 's@"CurrentBuildNumber"="3790"@"CurrentBuildNumber"="7601"@g'
sed -i $WINEPREFIX/system.reg -e 's@"CSDVersion"="Service Pack 2"@"CSDVersion"="Service Pack 1"@g'
sed -i $WINEPREFIX/system.reg -e 's@"CurrentVersion"="5.2"@"CurrentVersion"="6.1"@g'
sed -i $WINEPREFIX/system.reg -e 's@"ProductName"="Microsoft Windows XP"@"ProductName"="Microsoft Windows 7"@g'
unset WINEPREFIX
2016-12-03 06:11:56 +00:00
2016-10-21 20:19:14 +00:00
for prefix in $WINE32 $WINE64; do
2016-11-01 17:35:56 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m pip install --upgrade pip
2016-12-03 06:11:56 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m pip install --upgrade setuptools
2016-11-01 17:35:56 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m pip install --upgrade $PACKAGES
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m pip install --upgrade --no-binary :all: psutil
2017-03-21 10:42:33 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m pip uninstall -y cffi
2017-03-10 20:26:10 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -O -m compileall -q C:\\Python27\\Lib || true
2017-03-14 22:06:46 +00:00
WINEPREFIX=$prefix wine C:\\Python27\\python -m compileall -q C:\\Python27\\Lib || true
done
# WINEPREFIX=$WINE32 wine C:\\Python27\\python.exe -m easy_install -Z $PYWIN32
# WINEPREFIX=$WINE64 wine C:\\Python27\\python.exe -m easy_install -Z $PYWIN64
cat >$WINE32/python.sh <<EOF
#!/bin/sh
unset WINEARCH
export WINEPREFIX=$WINE32
2016-11-01 17:35:56 +00:00
exec wine C:\\\\Python27\\\\python.exe "\$@"
EOF
chmod +x $WINE32/python.sh
cat >$WINE32/cl.sh <<EOF
#!/bin/sh
2016-10-21 20:19:14 +00:00
unset WINEARCH
export WINEPREFIX=$WINE32
export VCINSTALLDIR="C:\\\\Program Files\\\\Common Files\\\\Microsoft\\\\Visual C++ for Python\\\\9.0\\\\VC"
export WindowsSdkDir="C:\\\\Program Files\\\\Common Files\\\\Microsoft\\\\Visual C++ for Python\\\\9.0\\\\WinSDK"
export INCLUDE="\$VCINSTALLDIR\\\\Include;\$WindowsSdkDir\\\\Include"
export LIB="\$VCINSTALLDIR\\\\Lib;\$WindowsSdkDir\\\\Lib"
export LIBPATH="\$VCINSTALLDIR\\\\Lib;\$WindowsSdkDir\\\\Lib"
exec wine "\$VCINSTALLDIR\\\\bin\\\\cl.exe" "\$@"
EOF
chmod +x $WINE32/cl.sh
cat >$WINE64/python.sh <<EOF
2016-10-21 20:19:14 +00:00
#!/bin/sh
unset WINEARCH
export WINEPREFIX=$WINE64
2016-11-01 17:35:56 +00:00
exec wine C:\\\\Python27\\\\python.exe "\$@"
EOF
chmod +x $WINE64/python.sh
cat >$WINE64/cl.sh <<EOF
2016-10-21 20:19:14 +00:00
#!/bin/sh
unset WINEARCH
export WINEPREFIX=$WINE64
export VCINSTALLDIR="C:\\\\Program Files (x86)\\\\Common Files\\\\Microsoft\\\\Visual C++ for Python\\\\9.0\\\\VC"
export WindowsSdkDir="C:\\\\Program Files (x86)\\\\Common Files\\\\Microsoft\\\\Visual C++ for Python\\\\9.0\\\\WinSDK"
export INCLUDE="\$VCINSTALLDIR\\\\Include;\$WindowsSdkDir\\\\Include"
export LIB="\$VCINSTALLDIR\\\\Lib\\\\amd64;\$WindowsSdkDir\\\\Lib\\\\x64"
2016-10-21 20:19:14 +00:00
export LIBPATH="\$VCINSTALLDIR\\\\Lib\\\\amd64;\$WindowsSdkDir\\\\Lib\\\\x64"
exec wine "\$VCINSTALLDIR\\\\bin\\\\amd64\\\\cl.exe" "\$@"
EOF
chmod +x $WINE64/cl.sh
$WINE32/cl.sh \
../../pupy/packages/src/pupymemexec/pupymemexec.c \
/LD /D_WIN32 /IC:\\Python27\\Include \
C:\\Python27\\libs\\python27.lib advapi32.lib \
/FeC:\\Python27\\Lib\\site-packages\\pupymemexec.pyd
$WINE64/cl.sh \
../../pupy/packages/src/pupymemexec/pupymemexec.c \
/LD /D_WIN64 /IC:\\Python27\\Include \
C:\\Python27\\libs\\python27.lib advapi32.lib \
/FeC:\\Python27\\Lib\\site-packages\\pupymemexec.pyd
make -C $WINPTY clean
make -C $WINPTY MINGW_CXX="${MINGW32} -Os -s" build/winpty.dll
mv $WINPTY/build/winpty.dll $BUILDENV/win32/drive_c/Python27/DLLs/
make -C $WINPTY clean
make -C $WINPTY MINGW_CXX="${MINGW64} -Os -s" build/winpty.dll
mv $WINPTY/build/winpty.dll $BUILDENV/win64/drive_c/Python27/DLLs/
echo "[+] Creating bundles"
TEMPLATES=`readlink -f ../../pupy/payload_templates`
OPWD=`pwd`
cd $WINE32/drive_c/Python27
rm -f ${TEMPLATES}/windows-x86.zip
for dir in Lib DLLs; do
cd $dir
2017-03-10 20:26:10 +00:00
zip -q -y \
2017-03-14 11:42:38 +00:00
-x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.py" -x "*.pyo" -x "*.chm" \
-x "*test/*" -x "*tests/*" -x "*examples/*" -x "pythonwin/*" \
-x "idlelib/*" -x "lib-tk/*" -x "tk*" -x "tcl*" \
-x "*.egg-info/*" -x "*.dist-info/*" -x "*.exe" \
-r9 ${TEMPLATES}/windows-x86.zip .
cd -
done
cd $WINE64/drive_c/Python27
rm -f ${TEMPLATES}/windows-amd64.zip
for dir in Lib DLLs; do
cd $dir
2017-03-10 20:26:10 +00:00
zip -q -y \
2017-03-14 11:42:38 +00:00
-x "*.a" -x "*.o" -x "*.whl" -x "*.txt" -x "*.py" -x "*.pyo" -x "*.chm" \
-x "*test/*" -x "*tests/*" -x "*examples/*" -x "pythonwin/*" \
-x "idlelib/*" -x "lib-tk/*" -x "tk*" -x "tcl*" \
-x "*.egg-info/*" -x "*.dist-info/*" -x "*.exe" \
-r9 ${TEMPLATES}/windows-amd64.zip .
cd -
done
touch $BUILDENV/.ready