https://developer.typeform.com/responses/reference/retrieve-responses/ https://stackoverflow.com/questions/51893952/how-to-select-the-typeform-api-on-a-hidden-field/51895666 https://github.com/typeorm/typeorm/blob/master/docs/find-options.md
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
{ | |
"nodes": [ | |
{ | |
"id": "Alice" | |
}, | |
{ | |
"id": "Bob" | |
}, | |
{ | |
"id": "Carol" |
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 Invoke-Mi | |
<# | |
#> | |
[CmdletBinding(DefaultParameterSetName="DumpCreds")] | |
Param( | |
[Parameter(Position = 0)] | |
[String[]] | |
$ComputerName, |
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
// exemple based on https://github.com/diafygi/webcrypto-examples#rsa-oaep | |
function importKey() { | |
return window.crypto.subtle.importKey( | |
"jwk", //can be "jwk" or "raw" | |
{ //this is an example jwk key, "raw" would be an ArrayBuffer | |
kty: "oct", | |
k: "Y0zt37HgOx-BY7SQjYVmrqhPkO44Ii2Jcb9yydUDPfE", | |
alg: "A256GCM", | |
ext: true, |
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
require 'yaml' | |
require 'base64' | |
require 'erb' | |
class ActiveSupport | |
class Deprecation | |
def initialize() | |
@silenced = true | |
end | |
class DeprecatedInstanceVariableProxy |
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
# PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/ | |
# tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c | |
# the most up-to-date version of PowerView will always be in the dev branch of PowerSploit: | |
# https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1 | |
# New function naming schema: | |
# Verbs: | |
# Get : retrieve full raw data sets | |
# Find : ‘find’ specific data entries in a data set |
Support:
- Getting domain info
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 | |
# Wifi easy PEAP relay | |
# | |
# Author: 1mm0rt41PC - immortal-pc.info - https://github.com/1mm0rt41PC | |
# | |
# Ref: | |
# - https://github.com/sensepost/hostapd-mana | |
# - https://github.com/sensepost/wpa_sycophant | |
# - https://sensepost.com/blog/2019/peap-relay-attacks-with-wpa_sycophant/ | |
# - https://www.youtube.com/watch?v=eYsGyvGxlpI&feature=youtu.be&t=1052 |