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
#!/bin/bash | |
# Colors | |
GREEN="\033[0;32m" | |
BLUE="\033[0;34m" | |
YELLOW="\033[1;33m" | |
RED="\033[0;31m" | |
RESET="\033[0m" | |
FILEPATH="$1" |
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
#!/bin/bash | |
# Usage: ./find_commits.sh inputfile.txt filter_domain | |
FILTER_DOMAIN="$1" | |
AUTHORS_FILE="authors.txt" | |
ATTRIBUTION_FILE="attribution.txt" | |
# Colors for terminal output | |
RESET='\033[0m' | |
GREEN='\033[32m' |
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
function extract_chapter_links() { | |
return [...document.querySelectorAll('a.navlink')] | |
.map(link => { | |
return { | |
name: link.querySelector('.navlink_name').innerText, | |
label: link.querySelector('.navlink_label').innerText, | |
href: link.href | |
} | |
}).filter(link => !link.href.includes('#')); | |
} |
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
import {render, html} from 'lit-html.js'; | |
import {Styles} from 'styles.js'; | |
import '/component/rabbit-button.js' | |
import '/component/rabbit-input.js' | |
import '/component/search-grid.js' | |
/** | |
* Search field is a custom element that includes a | |
* button and a text field. The component consumes | |
* a search string and produces a list of search hits. |
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
import {Styles} from 'styles.js'; | |
import '/component/rabbit-button.js' | |
import '/component/rabbit-input.js' | |
/** | |
* Search field is a custom element that includes a | |
* button and a text field. The component consumes | |
* a search string and produces a list of search hits. | |
* | |
* The search hits are fed into the slotted component. |
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
Subject: Vulnerability Assessment and Penetration Testing Authorization | |
Date: [insert todays date] | |
The purpose of this memo is to grant authorization to specific members of the information security team to conduct vulnerability assessments and penetration tests against this organization's assets. To that end, this file attests to the following: | |
1) Robin Duda, [email protected] have permission to test the organization's website to find vulnerabilities. This permission is granted from [insert start date] until [insert end date]. | |
2) [Insert name of approver] has the authority to grant this permission for testing the organization's Information Technology assets. | |
[Insert additional permissions and/or restrictions if any.] |