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
| Metric | AWS Security Agent | Shinobi | The Difference | |
|---|---|---|---|---|
| Total Findings | 17 | 42 | Shinobi found 2.5x more issues. | |
| Critical Vulnerabilities | 2 | 16 | AWS missed 87% of the critical risks. | |
| Business Logic Flaws | 1 (Correctly Rated) | 7+ | AWS completely failed to detect fraud logic. |
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
| {"basePath":"\/api","paths":{"\/login":{"get":{"tags":["1. Login"],"summary":"Check if any user is logged in","description":"If a user is loggedin the username will be returned","operationId":"checkLogin","produces":["application\/json"],"parameters":[{"name":"Authorization","in":"header","required":true,"description":"Authorization token (provided upon successful login)","type":"string"}],"responses":{"401":{"description":"Logged out"},"200":{"description":"Logged in"}}},"post":{"tags":["1. Login"],"summary":"Login method","description":"After a successful login a token is returned. This is a Bearer token. To authenticate with it use the Authorization header and set value to Bearer empty space and the token value.","operationId":"login","consumes":["application\/json"],"produces":["application\/json"],"parameters":[{"in":"body","name":"body","description":"Username and password combination to allow users to log-in","required":true,"schema":{"$ref":"#\/definitions\/login"}}],"responses":{"200":{"description": |
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
| ### 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 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
| 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 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
| # 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 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
| # 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 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
| 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 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
| - name: es | |
| type: elasticsearch.Domain | |
| config: | |
| elasticsearchVersion: "6.4" | |
| ebsOptions: | |
| ebsEnabled: true | |
| volumeSize: 10 | |
| clusterConfig: | |
| instanceType: t2.small.elasticsearch |
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
| - name: es-sink | |
| type: AwsFirehose | |
| resource: es | |
| aws: | |
| destination: elasticsearch | |
| elasticsearchConfiguration: | |
| indexName: hpevents | |
| typeName: hpevent |
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
| - tap: honeylogs-tap | |
| pipeline: enrichment | |
| - pipeline: enrichment | |
| sink: es-sink |
NewerOlder