https://github.com/ricco386/penetration-testing
Personal path into security - Personal study notes
https://github.com/ricco386/penetration-testing
Last synced: 7 months ago
JSON representation
Personal path into security - Personal study notes
- Host: GitHub
- URL: https://github.com/ricco386/penetration-testing
- Owner: ricco386
- License: mit
- Created: 2019-12-29T20:33:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T21:52:18.000Z (over 6 years ago)
- Last Synced: 2024-12-28T05:23:19.003Z (over 1 year ago)
- Language: Python
- Homepage: https://ricco386.github.io/Penetration-testing/
- Size: 6.16 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Penetration testing - Personal study notes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This are my personal notes taken during the path into security.
In this notes there are topics I have found interesting and wanted to learn. What has worked for me might not work for you, but if you think I made a mistake somewhere feel free to submit PR. Any knowledge learned from this notes should be used wisely and legally, but most importantly you are using it at your own responsibility.
All of my study notes are released under `MIT license `_, there is no guarantee anything here will work (for you), and I take **NO responsibility** for any illegal actions made after reading my notes.
Feel free to use them during your study and if you find it useful you can star this repository. If you find a mistake or you think I have missed something important I am more than happy to accept RP on this repo.
Notes are written in `Sphinx `_ documentation format. You can visit build notes at url: https://ricco386.github.io/Penetration-testing/
How to build the notes
======================
Create Python virtual environments and activate them::
python3 -m venv envs3
source envs3/bin/activate
Install the requiremetns::
pip install -r requirements.txt
Build the Sphinx docs::
make html
Run Python build-in webserver and open the build documentation in browser::
cd docs/html
python -m http.server 8000
firefox http://localhost:8000/
Other notes
===========
Study notes from `RITx: CYBER501x Cybersecurity Fundamentals `_ at `edx.org `_ are available here:
* `CYBER501x Cybersecurity Fundamentals notes `_
* `CYBER502x Computer Forensics notes `_
Richard von Kellner