- Web Crawler
- Jumphost
- Network Survival Kit/Pysweep
- Basically all repos...
This file has been truncated, but you can view the full file.
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
{ | |
"catalog": { | |
"uuid": "b954d3b7-d2c7-453b-8eb2-459e8d3b8462", | |
"metadata": { | |
"title": "NIST Special Publication 800-53 Revision 4: Security and Privacy Controls for Federal Information Systems and Organizations", | |
"last-modified": "2021-06-08T13:57:28.91745-04:00", | |
"version": "2015-01-22", | |
"oscal-version": "1.0.0", | |
"props": [ | |
{ |
This file has been truncated, but you can view the full file.
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
{ | |
"catalog": { | |
"uuid": "b2a999ac-40a6-4f9c-bd89-928fff33f19b", | |
"metadata": { | |
"remarks": "Document most recently revised in RegScale on Sat Mar 19 2022 09:00:09 GMT-1000 (Hawaii-Aleutian Standard Time).\rDocument created in RegScale on Sat Mar 19 2022 08:58:33 GMT-1000 (Hawaii-Aleutian Standard Time)\r", | |
"title": "NIST 800-53 Rev. 4 - Security and Privacy Controls for Information Systems and Organizations", | |
"last-modified": "2015-01-22T10:00:00-10:00", | |
"oscal-version": "1.0.0", | |
"links": [{ "href": "https://csrc.nist.gov/publications/detail/sp/800-53/rev-4/final" }], | |
"roles": [{ "id": "creator", "title": "Document Creator" }], |
This file has been truncated, but you can view the full file.
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
{ | |
"catalog": { | |
"uuid": "96ade173-2223-49f5-8df6-4e10e4b9b1cd", | |
"metadata": { | |
"title": "ARS 5.0", | |
"last-modified": "2022-02-11 14:29:58.030514-06:00", | |
"version": "1.0", | |
"oscal-version": "1.0.0" | |
}, | |
"groups": [ |
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
#!/usr/bin/env python | |
def decipher(input_str, shifted_str): | |
print('Converting ' + input_str + '...\n') | |
initial_str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./_-' | |
result_str = '' | |
for i in input_str: | |
current_char_index = initial_str.index(i) |
Certification Objectives
- what you need to know in order to answer exam questions dealing with the chapter topic
Exam Watch
- calls attention to info about, and potential pitfalls in, the exam
Step by Step Exercises
- gives you a feel for the real world experience you need in order to pass the exam
This Gist outlines the gulp workflow that will:
- watch for any scss changes, then compiles scss source into css
- watch for any changes in the public directory, and trigger live-reload
- serve static content in
public/
This Gist also assumes you already know how to install npm modules, gitignore, create directories and create files via the command line.
NewerOlder