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
<# | |
.Synopsis | |
Invoke-UpdateMimikatzScript created by Hashim Jawad (@ihack4falafel) | |
.DESCRIPTION | |
Convert x64/x86 powerkatz.dll to Base64 string and then update Invoke-Mimikatz.ps1 script from Empire, see the link https://raw.githubusercontent.com/EmpireProject/Empire/dev/data/module_source/credentials/Invoke-Mimikatz.ps1 | |
.PARAMETER DllPath | |
Path to powerkatz.dll generated via Visual Studio. | |
.PARAMETER ScriptPath | |
Path to Invoke-Mimikatz.ps1 script. |
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/python | |
#Python script that send your phone number a text as soon as Black Hat 2019 training goes live using Twilio | |
#The script can be coupled with cronjob that runs every hour or whatever you may see fit | |
from twilio.rest import Client | |
import requests | |
account_sid = '<your Twilio account SID>' | |
auth_token = '<your Twilio authentication token>' | |
client = Client(account_sid, auth_token) |