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
###################################### Will Schroeder (@harmj0y) ####################################### | |
S4U2Pwnage | |
http://www.harmj0y.net/blog/activedirectory/s4u2pwnage/ | |
A Guide to Attacking Domain Trusts | |
https://www.harmj0y.net/blog/redteaming/a-guide-to-attacking-domain-trusts/ | |
Another Word on Delegation | |
https://www.harmj0y.net/blog/redteaming/another-word-on-delegation/ |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics.Eventing.Reader; | |
using System.Text.RegularExpressions; | |
using System.Threading; | |
namespace EventLogSearcher | |
{ | |
class Program | |
{ |
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
{ | |
"BeaconType": [ | |
"HTTPS" | |
], | |
"Port": 443, | |
"SleepTime": 5000, | |
"MaxGetSize": 1049611, | |
"Jitter": 99, | |
"MaxDNS": 255, | |
"C2Server": "static.rennorigroup.com,/api/v1/meemes/latest", |
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 Get-CSharpProcess { | |
$proclist = Get-Process | |
foreach($proc in $proclist) { | |
foreach($mod in $proc.Modules) | |
{ | |
if($mod.ModuleName -imatch "mscoree") | |
{ | |
Write-Output(".NET Found in:`t" + $proc.Name) | |
} | |
} |
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
@Library('ci-jenkins-common') _ | |
// Jenkins build pipeline (declarative) | |
// Project: Seatbelt | |
// URL: https://github.com/GhostPack/Seatbelt | |
// Author: @tifkin_/@harmj0y | |
// Pipeline Author: harmj0y | |
def gitURL = "https://github.com/GhostPack/Seatbelt" |
- https://shields.io/
- Quality metadata badges for open source projects
- https://badgen.net/
- Fast badge generating service
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
pulp_default_admin_password: password | |
pulp_install_source: pip | |
pulp_settings: | |
secret_key: secret | |
content_origin: "https://{{ inventory_hostname }}" | |
x_pulp_api_host: 127.0.0.1 | |
x_pulp_api_port: 24817 | |
x_pulp_api_user: "admin" | |
x_pulp_api_password: "{{ pulp_default_admin_password }}" | |
x_pulp_api_prefix: "pulp_ansible/galaxy/automation-hub/api" |
- SC1000 $ is not used specially and should therefore be escaped.
- SC1001 This
\o
will be a regular 'o' in this context. - SC1003 Want to escape a single quote? echo 'This is how it'\''s done'.
- SC1004 This backslash+linefeed is literal. Break outside single quotes if you just want to break the line.
- SC1007 Remove space after = if trying to assign a value (or for empty string, use var='' ... ).
- SC1008 This shebang was unrecognized. ShellCheck only supports sh/bash/dash/ksh. Add a 'shell' directive to specify.
- SC1009 The mentioned parser error was in ...
- SC1010 Use semicolo
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
## Trafik Multi Network Deployment | |
1. Create Traefik network | |
` # docker network create --driver=bridge --attachable --internal=false traefik ` | |
2. Edit `traefik2/docker-compose.yml` | |
- Change ACME email | |
- Change --providers.docker.network=traefik value if you created different network then `traefik` |
NewerOlder