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
### Keybase proof | |
I hereby claim: | |
* I am deathspirate on github. | |
* I am deathspirate (https://keybase.io/deathspirate) on keybase. | |
* I have a public key ASAbWLVEs3dhXvHxyl_2peG3pKhaz758bNCzsRAKCWg-ygo | |
To claim this, I am signing this object: |
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
local http = require "http" | |
local stdnse = require "stdnse" | |
local shortport = require "shortport" | |
local slaxml = require "slaxml" | |
description = [[ | |
Checks for the version number of Netscaler Gateway Windows plugin. | |
]] | |
author = "DeathsPirate" |
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
# List of domains to search in DNS cache | |
$domains = @( | |
"akamaicontainer.com", | |
"akamaitechcloudservices.com", | |
"azuredeploystore.com", | |
"azureonlinecloud.com", | |
"azureonlinestorage.com", | |
"dunamistrd.com", | |
"glcloudservice.com", | |
"journalide.org", |
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
# Search for ffmpeg.dll in the C drive | |
$ffmpegFiles = Get-ChildItem -Path "C:\" -Recurse -Filter "ffmpeg.dll" -ErrorAction SilentlyContinue | |
# Initialize an array to store the hash results | |
$hashResults = @() | |
# The target hash to compare with | |
$targetHash = "7986bbaee8940da11ce089383521ab420c443ab7b15ed42aed91fd31ce833896" | |
$found = $false | |
# Calculate the SHA256 hash for each file |
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 cv2 | |
import numpy as np | |
def calculate_differences(img1, img2): | |
# Initialization | |
detector = cv2.ORB_create() | |
descriptor = cv2.ORB_create() | |
matcher = cv2.DescriptorMatcher_create(cv2.DESCRIPTOR_MATCHER_BRUTEFORCE_HAMMING) |
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
- name: es | |
type: elasticsearch.Domain | |
config: | |
elasticsearchVersion: "6.4" | |
ebsOptions: | |
ebsEnabled: true | |
volumeSize: 10 | |
clusterConfig: | |
instanceType: t2.small.elasticsearch |
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
- name: es-sink | |
type: AwsFirehose | |
resource: es | |
aws: | |
destination: elasticsearch | |
elasticsearchConfiguration: | |
indexName: hpevents | |
typeName: hpevent |
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
- tap: honeylogs-tap | |
pipeline: enrichment | |
- pipeline: enrichment | |
sink: es-sink |
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
- name: enrichment | |
modules: | |
- name: lookup-geo | |
- name: honeyenrich |
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
async def processEvent(event): | |
# Do event processing here ... | |
return event |
NewerOlder