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
var TopLevelObject = {} | |
TopLevelObject.DOMNodePathStep = function(value, optimized) | |
{ | |
this.value = value; | |
this.optimized = optimized || false; | |
} | |
TopLevelObject.DOMNodePathStep.prototype = { | |
/** | |
* @override | |
* @return {string} |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<template encoding-version="1.2"> | |
<description></description> | |
<groupId>f83b243e-016a-1000-7ae4-d55879bd67a8</groupId> | |
<name>Beats (encrypted)</name> | |
<snippet> | |
<connections> | |
<id>5d08bc84-630a-3e17-0000-000000000000</id> | |
<parentGroupId>75fd9e98-7cb4-3d53-0000-000000000000</parentGroupId> | |
<backPressureDataSizeThreshold>1 GB</backPressureDataSizeThreshold> |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<template encoding-version="1.2"> | |
<description></description> | |
<groupId>d562c994-016b-1000-4d13-1985463f364a</groupId> | |
<name>Alerting</name> | |
<snippet> | |
<connections> | |
<id>2afde8dc-2bf8-33e4-0000-000000000000</id> | |
<parentGroupId>308545b5-bdca-3d2b-0000-000000000000</parentGroupId> | |
<backPressureDataSizeThreshold>1 GB</backPressureDataSizeThreshold> |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<template encoding-version="1.2"> | |
<description></description> | |
<groupId>0165328f-016a-1000-faa4-53a3512c51c5</groupId> | |
<name>NetFlow To File</name> | |
<snippet> | |
<connections> | |
<id>2b15b939-ffe5-342a-0000-000000000000</id> | |
<parentGroupId>ca04b9d6-b10c-33c7-0000-000000000000</parentGroupId> | |
<backPressureDataSizeThreshold>1 GB</backPressureDataSizeThreshold> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# pip install ecdsa | |
# pip install cryptography | |
# https://github.com/warner/python-ecdsa | |
# https://cryptography.io/en/latest/ | |
from ecdsa import VerifyingKey, BadSignatureError | |
from cryptography import x509 |
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
import logging | |
import sys, os | |
logging.basicConfig(level=logging.INFO) | |
logger = logging.getLogger('openzwave') | |
import openzwave | |
from openzwave.node import ZWaveNode | |
from openzwave.value import ZWaveValue | |
from openzwave.scene import ZWaveScene |
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
const linkedinEmail = '*******'; | |
const linkedinPassword = '*******'; | |
const companyName = 'CHANGE ME'; | |
const extraFilter = 'change me (or set to null)'; | |
const maxPages = 2; | |
//////// |
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
import jsbeautifier | |
import requests | |
import pprint | |
enumerateMessagesSearchString = 'exportSymbol("proto.' | |
r = requests.get('http://localhost:8081/dist/main.js') | |
jsInput = r.text | |
pretty_js = jsbeautifier.beautify(jsInput).split('\n') |
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
/* | |
* Zed Attack Proxy (ZAP) and its related class files. | |
* | |
* ZAP is an HTTP/HTTPS proxy for assessing web application security. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |