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
| Day 1 opening: https://t.co/myIifW120o?amp=1 (by @jpdanner) | |
| Tesla coil performance: https://t.co/DoLdCZJZg1?amp=1 (by @jpdanner) | |
| Matthew Garrett: I am a scooter: https://youtu.be/aecB2A_ad1A | |
| Laura Bell: How can I help you. https://youtu.be/YrMlo2SRFlM | |
| RDP/TLS fingerprint twitter coverage + links: https://twitter.com/0x4D31/status/1185025973151907840 | |
| Mike loss: lair lair, a first timer red teaming under unusual consitions https://youtu.be/ASSjkkr4OCg | |
| Chris culnane. https://stateofit.com/kawaiicon/ internet voting from bad idea to poor execution | |
| Fobskis talk on A security tale: https://www.youtube.com/watch?v=Aws1BlWgCWk&feature=youtu.be | |
| SophiaFrentz (Not) hacking your biology: https://www.youtube.com/watch?v=8RtWQGHS8Io |
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
| This assumes that you're running Windows 10 Pro/Enterprise 1903 or newer and have enabled the Windows Sandbox. See https://techcommunity.microsoft.com/t5/Windows-Kernel-Internals/Windows-Sandbox/ba-p/301849 for how to enable this and other requirements. | |
| Download ghidra from https://ghidra-sre.org/ and extract it to c:\sandbox\ | |
| Download the AdoptOpenJDK Windows x64 JDK from https://adoptopenjdk.net/releases.html?variant=openjdk11&jvmVariant=hotspot#x64_win and copy it to c:\sandbox\jdk.msi | |
| Download install.cmd and copy it to c:\sandbox\ | |
| If you have any Ghidra scripts or extentions, copy these to a directory in c:\sandbox\ and they will be copied to C:\Users\WDAGUtilityAccount\downloads\ inside the VM as well. | |
| Download the ghidra.wsb file and run! | |
| The ghidra.wsb will run install.cmd which will copy the files from the shared folder into C:\Users\WDAGUtilityAccount\downloads\ inside the VM and then run the jdk installer (in passive mode, so once the install dialog disappears, it's done) | |
| Your shiney new windows 1 |
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
| ecequality.org (shows as 404?) | |
| www.gay.com (blocked) (redirects to lalgbtcenter.org which isn't blocked) | |
| www.gmhc.org (doesn't resolve) | |
| www.grindr.com (blocked) | |
| www.pinkcupid.com (blocked) | |
| www.out.com (blocked) | |
| www.planetromeo.com (blocked) | |
| www.scruff.com (blocked) |
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
| #replace "<PAT TOKEN>" with your github PAT token, tested with "Update ALL user data" PAT token. | |
| curl -q https://rms-support-letter.github.io/ | grep "href" | grep "github.com" | grep -v "\/\[" | awk -F "https://github.com/" '{ print $2 }' | awk -F "\"\>" '{ print $1 }' | sed 's/\///g' | sed '/^$/d' | xargs -I USER curl -i -X PUT -H "Authorization: token <pat token here>" -H "Accept: application/vnd.github.v3+json" https://api.github.com/user/blocks/USER |
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
| { | |
| "Action": "accept", | |
| "Users": [ "group:admin", "group:users" ], | |
| "Ports": [ "0.0.0.0/5:*" ] | |
| }, | |
| { | |
| "Action": "accept", | |
| "Users": [ "group:admin", "group:users" ], | |
| "Ports": [ "8.0.0.0/7:*" ] | |
| }, |
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
| Ubuntu 23.10 lets you select the advanced option of using ZFS, but not encrypting it. | |
| #assuming you want to use zstd compression, if not remove the compress=zstd bits, as it defaults to lz4 | |
| #This doesn't encrypt the boot pool. | |
| #ROOT is the root zfs dataset. | |
| 1) Install ubuntu 23.10 as normal, select the advanced/experimental options when installing and select ZFS | |
| 2) Once the install is done, reboot back into the installer (via USB/DVD/etc) | |
| 3) "Try ubuntu" and open a terminal, then sudo -i to root | |
| 4) zpool import -f rpool |
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
| #!/usr/bin/env python | |
| # coding=utf-8 | |
| import argparse | |
| import datetime | |
| import sys | |
| import time | |
| import threading | |
| import traceback | |
| import socketserver |
OlderNewer