Skip to content

horrorclause/PythonForSecurity

Repository files navigation

Python For Security

Information that is useful for learning Python.

📚Resources for Learning Python


🐍Fun Sites to Practice Python


:octocat:All About Git

Don't Forget to Set Your Global Git Username and Email

The first time you connect your GitHub to your IDE you will need to set your global username and email before you can push out any commits:

git config --global user.name "Enter Your Name Here"
git config --global user.email "Enter [email protected] Here"

:suspect:Python Reference


💻Regular Expressions (RegEx), What is it?


📌Helpful Hints

Host Your Python in the Cloud


Installing VirtualBox Guest Additions in Kali

From a terminal window, copy the VboxLinuxAdditions.run file from the Guest Additions CD-ROM to a path on your local system. Ensure it is executable and run the file to begin the installation.

kali@kali:~$ cp /media/cdrom/VBoxLinuxAdditions.run ~/Downloads/
kali@kali:~$ chmod 0755 ~/Downloads/VBoxLinuxAdditions.run
kali@kali:~$ cd ~/Downloads/
kali@kali:~/Downloads$ ./VBoxLinuxAdditions.run

Reboot the Kali Linux VM to complete the Guest Additions installation. You should now have full mouse and screen integration as well as the ability to share folders with the host system. Make sure to remove the disk from the virtual drive once logged back into the system.


Installing VSCode on Kali

The first step is to download the ".deb" package from:

image

This file will now be located in your Downloads folder. Verify this and install the file (Note that your installer may be a different version than this):

image

cd Downloads  # navigate to your Downloads folder
ls  # List out all the items in the folder
sudo apt install ./code_1.69.0-1657183742_amd64.deb  # install the package

That's it! VSCode is now installed on your machine, feel free to delete the installer package in your "Downloads" folder. You will now be able to find VSCode in your "Applications" by searching in the top left corner.

image

About

Repo for the Python for Security class.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages