- Chrome/Firefox extension with workflow editor
- records actions on the pages you visit, then replays those actions using a simulator
- data stays on local machine
This file contains 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
{ | |
"__inputs": [ | |
{ | |
"name": "DS_PROMETHEUS", | |
"label": "Prometheus", | |
"description": "", | |
"type": "datasource", | |
"pluginId": "prometheus", | |
"pluginName": "Prometheus" | |
} |
This file contains 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
FROM openjdk:8-alpine | |
RUN apk update && apk --no-cache add curl bash xmlstarlet | |
VOLUME ["/app"] | |
WORKDIR /app | |
ARG APKTOOL_VERSION="2.3.4" |
This file contains 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
{% raw %} | |
```yaml | |
- name: Some action | |
file: | |
path: "{{item}}" | |
``` | |
{% endraw %} |
This file contains 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
inspec> http("https://www.domain.com/", method: 'GET').class.superclass.instance_methods(false).sort | |
=> [:body, :headers, :http_method, :status, :to_s] | |
inspec> file('/tmp').class.superclass.instance_methods(false).sort | |
=> [:allowed?, | |
:basename, | |
:block_device?, | |
:character_device?, | |
:contain, | |
:content, |
This file contains 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 Get-TargetedWinEvent | |
{ | |
<# | |
.SYNOPSIS | |
Searches Windows logs for events related to specific Event IDs or EventData.Data values | |
.DESCRIPTION | |
Searches Windows logs for events related to specific Event IDs or EventData.Data values | |
Supports searching offline/exported evt/evtx files as well as online machines | |
.PARAMETER SearchTerm |
This file contains 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 ConvertTo-CrashObject | |
{ | |
<# | |
.SYNOPSIS | |
Returns crash objects from an application log event collection | |
.DESCRIPTION | |
Returns crash objects from an application log event collection. | |
Only records where source equals 'Application Error' are processed. | |
This file contains 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 Echo-Args | |
{ | |
for($i=0;$i -lt $args.length;$i++) | |
{ | |
"Arg $i is <$($args[$i])>" | |
} | |
} |
This file contains 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
$headers = @{} | |
$headers.Add('Authorization', "Bearer $accesstoken") | |
Invoke-RestMethod -Headers $headers -Uri https://graph.microsoft.com/v1.0/me -Method Get |
This file contains 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
add-type @" | |
using System.Net; | |
using System.Security.Cryptography.X509Certificates; | |
public class TrustAllCertsPolicy : ICertificatePolicy { | |
public bool CheckValidationResult(ServicePoint srvPoint, X509Certificate certificate, | |
WebRequest request, int certificateProblem) { | |
return true; | |
} | |
} | |
"@ |
NewerOlder