View happy-fam.py
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
#!/usr/bin/env python3 | |
# Happy Fam | |
# LQL-Driven Parent and Child Process Analyzer | |
# Lacework Labs | |
# v0.1 - May 2022 | |
# greg.foss@lacework.net | |
''' | |
Licensed under the Apache License, Version 2.0 (the "License"); |
View LQL-Runner.py
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
#!/usr/bin/env python3 | |
# LQL Runner | |
# Lacework Labs | |
# v0.1 - February 2022 | |
# greg.foss@lacework.net | |
##################################################################################### | |
# usage: lql-runner.py [-h] [-e LW_ENV] [-q QUERY] [-t DAYS] [-c] [-j] [-o FILENAME] | |
# |
View Greynoise IP Analysis
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
#!/usr/bin/env python3 | |
# Greynoise Community Edition - IP Check | |
# v0.1 - February, 2022 | |
# greg.foss@owasp.org | |
''' | |
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 |
View VirusTotal Domain Analysis
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
#!/usr/bin/env python3 | |
# VirusTotal DNS Check | |
# v0.1 - February, 2022 | |
# greg.foss@owasp.org | |
''' | |
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 |
View VirusTotal Hash Analysis
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
#!/usr/bin/env python3 | |
# VirusTotal Hash Check | |
# v0.3 - February, 2022 | |
# greg.foss@owasp.org | |
''' | |
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 |
View VirusTotal IP Address Analysis
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
#!/usr/bin/env python3 | |
# VirusTotal IP Check | |
# v0.3 - February, 2022 | |
# greg.foss@owasp.org | |
''' | |
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 |
View gecko.py
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
#!/usr/bin/env python3 | |
# Coingecko - trending coin monitoring and alerting | |
# v0.3 | |
# March, 2021 | |
# greg.foss[at]owasp.org | |
''' | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. |
View Enable-PSRemoting.ps1
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 enablePSRemoting { | |
Enable-PSRemoting –force | |
Set-Service WinRM -StartMode Automatic | |
Get-WmiObject -Class win32_service | Where-Object {$_.name -like "WinRM"} | |
Set-Item WSMan:localhost\client\trustedhosts -value * | |
Get-Item WSMan:\localhost\Client\TrustedHosts | |
} |
View auto-hydra.sh
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
#!/bin/bash | |
# | |
# @heinzarelli | |
# greg . foss [at] logrhythm . com | |
# v0.1 - May 2017 | |
# | |
function usage { | |
echo "" |
View Extract-WiFi-Creds.ps1
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
#====================================# | |
# Extract Wi-Fi Credentials # | |
# greg . foss @ owasp . org # | |
# v0.1 -- July, 2017 # | |
#====================================# | |
# Licensed under the MIT License | |
<# |
NewerOlder