Skip to content

Instantly share code, notes, and snippets.

View cleong14's full-sized avatar

Chaz cleong14

View GitHub Profile
This file has been truncated, but you can view the full file.
{
"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.
{
"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" }],
@cleong14
cleong14 / ars5.0-oscal.json
Created March 7, 2022 21:00
ars5.0-oscal.json
This file has been truncated, but you can view the full file.
{
"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": [
@cleong14
cleong14 / decipher.py
Created February 1, 2019 07:24
Quick Python script for string deciphering
#!/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)

NEED TO COMPLETE

  1. Web Crawler
  2. Jumphost
  3. Network Survival Kit/Pysweep
  4. Basically all repos...

Cyber Security - Day 3

VB Setup - Resource 1

@cleong14
cleong14 / Security+501Keywords.md
Last active November 6, 2018 04:57
Keywords to remember for Security+ SY0-501 exam

Week 1 (10/8/18)

CIA Triad (Confidentiality, Integrity, Availibility) - Access Comtrols - Encryption - Steganography - Hashing - Fault Tolerance - Patching - Differentiating Accountability -

Security + Study Guide

Week 1 (10/8/18)

Read:

  • The Preface
  • Introduction and look at exam readiness checklist
  • Chapter 2
  • Virtualization
  • (Optional) Read chapter 14 (we will not cover this in class)
@cleong14
cleong14 / Security+Notes.md
Last active March 11, 2022 03:27
Security+ 501 Notes

Preface

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
@cleong14
cleong14 / Kali_VirtualBox_GuestAdditions_Setup.md
Last active October 12, 2018 08:54
How to create a Kali VM and add Guest Additions

Kali VirtualBox Setup

Install Kali

  1. Open VirtualBox
  2. Click New button
  3. Name: 'Kali...'
  4. Type: Linux
  5. Version: Other Linux (64-bit)
  6. Memory: 4096 MB
  7. Create virtual hard disk now
@cleong14
cleong14 / gulp-scss-livereload.md
Created December 20, 2015 00:18 — forked from kellishouts/gulp-scss-livereload.md
Gulp + SCSS + LiveReload - Updated 12/18/2015

Gulp + SCSS + LiveReload

This Gist outlines the gulp workflow that will:

  1. watch for any scss changes, then compiles scss source into css
  2. watch for any changes in the public directory, and trigger live-reload
  3. 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.