gitextract_psj7c2bh/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── content-feature-request.md │ └── feature_request.md ├── .gitignore ├── 404.html ├── CNAME ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes/ │ ├── footer.html │ ├── head.html │ ├── header.html │ └── resources_sidebar.html ├── _layouts/ │ ├── default.html │ ├── home.html │ ├── page.html │ └── post.html ├── _resources/ │ ├── 00_what_is_hacker101.md │ ├── 01_what_is_hacker101_ctf.md │ ├── 02_how_do_i_start.md │ ├── 03_how_do_i_do_bug_bounties.md │ ├── 04_programming_languages.md │ ├── 05_web_hacking_tools.md │ ├── 06_burp_suite_plugins.md │ ├── 07_mobile_hacking_tools.md │ ├── 08_android_hacking_tools.md │ ├── 09_desktop_hacking_tools.md │ ├── 10_exploitation_resources.md │ ├── 11_scanners_frameworks.md │ ├── 12_datasets_freemium_services.md │ └── 13_misc_hacking_tools.md ├── _sass/ │ ├── _bootstrap_customization.scss │ ├── _syntax-highlighting.scss │ ├── _variables.scss │ ├── bootstrap/ │ │ ├── __DO_NOT_MODIFY │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins/ │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ └── utilities/ │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _interactions.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ └── bootstrap-4-jekyll/ │ └── _bootstrap-4-jekyll.scss ├── announcements.md ├── assets/ │ ├── css/ │ │ └── main.scss │ └── javascript/ │ ├── bootstrap/ │ │ └── __DO_NOT_MODIFY │ └── dark-mode.js ├── conferences/ │ ├── hacktivitycon2020/ │ │ ├── 0tomvh.md │ │ ├── beyondscope.md │ │ ├── burnouts.md │ │ ├── carivi.md │ │ ├── codeql.md │ │ ├── exploiting_email_systems.md │ │ ├── gitlab.md │ │ ├── grafanassrf.md │ │ ├── keynote.md │ │ ├── offsec_panel.md │ │ ├── parse.md │ │ ├── pentester_blueprint.md │ │ ├── penteststories.md │ │ ├── tbhm.md │ │ ├── waf.md │ │ └── web_cache_deception.md │ └── hacktivitycon2021/ │ ├── bugbountyfor5years.md │ ├── ctfdev.md │ ├── haptyc.md │ ├── infosec_insecure_risky.md │ ├── keynote.md │ ├── networking_security_tiktok.md │ ├── offsec_panel.md │ ├── trufflehog.md │ └── vulnerability_research.md ├── discord.html ├── index.md ├── playlists/ │ ├── burp_suite.md │ ├── cryptography.md │ ├── hacktivitycon.md │ ├── mentorshipmondays.md │ ├── misc.md │ ├── mobile_hacking.md │ ├── newcomers.md │ ├── pentesting_series.md │ ├── playlists.html │ └── web_hacking.md ├── resources/ │ ├── articles/ │ │ ├── asking_for_help.md │ │ ├── code_of_conduct.md │ │ └── writing_a_report_and_cvss.md │ ├── hackerone_threat_model.md │ └── slides/ │ ├── Clickjacking.pptx │ ├── Crypto Attacks.pptx │ ├── Crypto Crash Course.pptx │ ├── Crypto Wrap-up.pptx │ ├── File Inclusion.pptx │ ├── File Upload Bugs.pptx │ ├── Introduction.pptx │ ├── Null Termination.pptx │ ├── Password Storage.pptx │ ├── SQL Injection and Friends.pptx │ ├── Session Fixation.pptx │ ├── The Web in Depth.pptx │ ├── Threat Modeling.pptx │ ├── Unchecked Redirects.pptx │ └── XSS and Authorization.pptx ├── resources.md ├── sessions/ │ ├── android/ │ │ ├── common_android_bugs_1.md │ │ ├── common_android_bugs_2.md │ │ ├── hacking_workshop_b3nac.md │ │ └── quickstart.md │ ├── burp101.md │ ├── burp201.md │ ├── burp301.md │ ├── clickjacking.md │ ├── cookie_tampering.md │ ├── crypto_attacks.md │ ├── crypto_crash_course.md │ ├── crypto_wrap_up.md │ ├── docker_hacking.md │ ├── file_inclusion.md │ ├── file_uploads.md │ ├── good_reports.md │ ├── iOS/ │ │ ├── app_transport.md │ │ ├── application_basics.md │ │ ├── filesystem.md │ │ ├── interapp_communication.md │ │ ├── ios_quickstart.md │ │ └── webviews.md │ ├── introduction.md │ ├── javascript_for_hackers.md │ ├── mm/ │ │ ├── s01/ │ │ │ ├── ctf_vs_bugbounty.md │ │ │ ├── h1-elite.md │ │ │ ├── hackthegovt.md │ │ │ ├── how_to_pentest.md │ │ │ ├── howtoshodan.md │ │ │ ├── mentalhealth.md │ │ │ └── mobile_hacking.md │ │ └── s02/ │ │ ├── getting_started.md │ │ ├── h1_CHO.md │ │ ├── how_to_pick_a_target.md │ │ ├── how_to_write_reports.md │ │ ├── industry_certificates.md │ │ └── starting_a_career.md │ ├── mobile_crash_course.md │ ├── native_code_crash_course.md │ ├── null_termination.md │ ├── password_storage.md │ ├── pentest_owasp.md │ ├── pentest_reporting.md │ ├── pentest_resources.md │ ├── pentest_vs_bug_bounty.md │ ├── secure_architecture.md │ ├── session_fixation.md │ ├── sessions.html │ ├── source_review.md │ ├── sqli.md │ ├── ssrf.md │ ├── threat_modeling.md │ ├── unchecked_redirects.md │ ├── web_in_depth.md │ ├── xss.md │ └── xxe.md ├── start-here.md ├── update_bootstrap.sh └── videos.md