https://github.com/n0shake/Public-APIs
This is an attempt to categorise different APIs scoured from the web which make their resources available for consumption.
*Items marked with
are open-source *Items marked with 💸 are trial based APIs
Create credential: https://console.developers.google.com/apis/credentials | |
Create a project: https://console.developers.google.com/projectcreate | |
src: https://medium.com/employbl/add-login-with-google-to-your-laravel-app-d2205f01b895 | |
https://github.com/n0shake/Public-APIs
This is an attempt to categorise different APIs scoured from the web which make their resources available for consumption.
*Items marked with
are open-source *Items marked with 💸 are trial based APIs
The arsenal, armory & library by Maderas (@hackermaderas, #CyberpunkisNow) 6/8/2019 | |
Original / 1st version here: https://pastebin.com/rMw4WbhX | |
___________________________________________________________________________________ | |
# Basic knowledge requirements for Red Teaming, PenTesting, Hacking & Cybersecurity | |
# These are the basic competencies expected (and tested for during the in-person technical interview) by one of the largest, most visible InfoSec companies # on Earth. | |
██████╗ ███████╗ ██████╗ ██████╗ ███╗ ██╗ | |
██╔══██╗██╔════╝██╔════╝██╔═══██╗████╗ ██║ | |
██████╔╝█████╗ ██║ ██║ ██║██╔██╗ ██║ | |
██╔══██╗██╔══╝ ██║ ██║ ██║██║╚██╗██║ | |
██║ ██║███████╗╚██████╗╚██████╔╝██║ ╚████║ | |
╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ | |
@intx0x80 |
#!/usr/bin/python | |
import skew, json, placebo, os, sys | |
from pprint import pprint | |
from datetime import datetime | |
from elasticsearch import Elasticsearch | |
# parse command line args | |
arn_list = { | |
# logging |
The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services.
nb: See http://embedyoutube.org/ for embedding of youtube vids in markdown.
#!/bin/bash | |
# | |
# Bash script to generate a unique identifier for file name | |
# Used for a Plain Text Writing, Knowledge or Notes System | |
# | |
# Allows for following Options: | |
# -o: opening file in a target program | |
# Additional Title or name appended to end of file name | |
# | |
# Examples |
# ---------------------- | |
# Git Aliases | |
# ---------------------- | |
alias ga='git add' | |
alias gaa='git add .' | |
alias gaaa='git add --all' | |
alias gau='git add --update' | |
alias gb='git branch' | |
alias gbd='git branch --delete ' | |
alias gc='git commit' |
import json | |
def lambda_handler(event, context): | |
print( "Event : " , event) | |
#This will print the event passed to lambda_handler in | |
#Cloudwatch Logs | |
print( "Context : " , context) | |
#This will print the context passed to lambda_handler in | |
#Cloudwatch #Logs | |
name = "" | |
if 'queryStringParameters' in event: |