I hereby claim:
- I am t04glovern on github.
- I am nathanglover (https://keybase.io/nathanglover) on keybase.
- I have a public key whose fingerprint is D64A 1F5A 05BD 8D11 DF51 AB91 0983 1DFD 1F77 86AE
To claim this, I am signing this object:
import random | |
# Snakes and Ladders dictionary | |
SaLdic = {6: 17, | |
14: 3, | |
20: 15, | |
24: 26, | |
30: 44, | |
39: 33, | |
49: 62, |
I hereby claim:
To claim this, I am signing this object:
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class GPSController : MonoBehaviour { | |
public LocationInfo currentGPSInfo; | |
public float updateRate = 3f; | |
public bool debugging = true; |
{ | |
"interactionModel": { | |
"languageModel": { | |
"invocationName": "random quote generator", | |
"intents": [ | |
{ | |
"name": "AMAZON.CancelIntent", | |
"samples": [] | |
}, | |
{ |
[{ | |
"adopted": true, | |
"id": "3063wmAH4UtML5RrF1sK", | |
"location": "St James, Western Australia", | |
"description": "I'm a Chatty Catty and I'd love to share my meows with someone special", | |
"name": "Paul", | |
"type": "cat", | |
"attributes": [ | |
"desexed", | |
"vaccinated", |
function getUserTimezone(event, callback) { | |
if (event.context.System.apiAccessToken) { | |
// Invoke the entitlement API to load timezone | |
const options = { | |
host: 'api.amazonalexa.com', | |
path: '/v2/devices/' + event.context.System.device.deviceId + '/settings/System.timeZone', | |
method: 'GET', | |
timeout: 1000, | |
headers: { | |
'Content-Type': 'application/json', |
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
Password: | |
NoEcho: 'true' | |
Type: String | |
Description: New account password | |
MinLength: '1' | |
MaxLength: '41' | |
ConstraintDescription: the password must be between 1 and 41 characters |
#!/bin/sh | |
# Wait for stack to finish creating | |
aws cloudformation wait stack-create-complete --stack-name iam-route53-user | |
# Get AccessKey to variable | |
ACCESS_KEY=$(aws cloudformation describe-stacks --stack-name iam-route53-user \ | |
--query 'Stacks[0].Outputs[?OutputKey==`AccessKey`].OutputValue' \ | |
--output text) |
////////////////////////////////////////// | |
// SSRF Demo App | |
// Node.js Application Vulnerable to SSRF | |
// Written by Seth Art <sethsec@gmail.com> | |
// MIT Licensed | |
////////////////////////////////////////// | |
var http = require('http'); | |
var needle = require('needle'); | |
var express = require('express'); |