This file contains hidden or 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
Open Powershell console (with Admin privs) | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
Open Microsoft Store and type "Kali Linux". | |
Install. | |
Create new user&pw. | |
sudo apt full-upgrade |
This file contains hidden or 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
#=======================================================# | |
#Update used tools after new installation # | |
#Credits: @mikiminoru and the developers used tools's # | |
#=======================================================# | |
#set the keyboard languaje and the directory (instead of 'es' you can choose your native languaje) | |
setxkbmap es | |
cd ~/ |
This file contains hidden or 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
Open command line and type: | |
sudo apt purge virtualbox-guest-x11 | |
sudo apt autoremove --purge | |
sudo reboot | |
sudo apt update | |
sudo apt dist-upgrade | |
sudo reboot | |
sudo apt update | |
sudo apt install -y virtualbox-guest-x11 |
This file contains hidden or 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
Open your Mozilla Firefox browser, and type “about:config” and click on “I accept the risk!” as shown in below screen. | |
Search “captive-portal” in the search bar and you’ll see some entries related to captive portal named as “network.captive-portal-service.enabled” whose default value is false and you just need to double click on the following entry to set it true. |
This file contains hidden or 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
The /etc/apt/sources.list file has only the following content: | |
deb http://http.kali.org/kali kali-rolling main contrib non-free | |
# For source package access, uncomment the following line | |
deb-src http://http.kali.org/kali kali-rolling main contrib non-free |
This file contains hidden or 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
In the path /opt/BurpSuitePro/BurpSuite it this located the configuration | |
java -jar -Xmx1024m BurpLoader.jar | |
Which can be changed as it is desired. | |
Also, to avoid the Burp Suite error “burpsuite handshake alert: unrecognized_name”, add at the end of the file: | |
-Djsse.enableSNIExtension=false |