-
Export credentials to be imported in environment shell:
aws configure export-credentials --profile default --format env
-
List all user in the organization:
aws iam list-users
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
// Authors: [notdodo] | |
package main | |
import ( | |
"crypto/ecdsa" | |
"crypto/sha256" | |
"crypto/x509" | |
"encoding/base64" | |
"encoding/pem" | |
"fmt" |
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
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
} | |
} | |
} | |
provider "aws" { | |
region = "eu-west-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
import re | |
import mmap | |
CHECKING = re.compile("\[Checking: .*\]\n") | |
IPADDR = re.compile( | |
r"((?:(0|1)\d{2}|2[0-4]\d|25[0-5]|\d{1,2})\.(?:(0|1)\d{2}|2[0-4]\d|25[0-5]|\d{1,2})\.(?:(0|1)\d{2}|2[0-4]\d|25[0-5]|\d{1,2})\.(?:(0|1)\d{2}|2[0-4]\d|25[0-5]|\d{1,2}))" | |
) | |
DOTS = re.compile(".*\.{2,}.*") | |
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
{ | |
"user_options":{ | |
"connections":{ | |
"platform_authentication":{ | |
"credentials":[], | |
"do_platform_authentication":true, | |
"prompt_on_authentication_failure":false | |
}, | |
"socks_proxy":{ | |
"dns_over_socks":false, |
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 python3 | |
import sys | |
import uuid | |
def read_shellcode(filename): | |
shellcode = "" | |
ctr = 1 | |
maxlen = 16 | |
for b in open(sys.argv[1], "rb").read(): |
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
# Generated by Powerlevel10k configuration wizard on 2021-07-05 at 12:43 CEST. | |
# Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 20612. | |
# Wizard options: nerdfont-complete + powerline, large icons, classic, unicode, light, | |
# slanted separators, slanted heads, flat tails, 2 lines, dotted, left frame, compact, | |
# many icons, concise, transient_prompt, instant_prompt=verbose. | |
# Type `p10k configure` to generate another config. | |
# | |
# Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate | |
# your own config based on it. | |
# |
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
// Add custom actions and keybindings to this array. | |
// To unbind a key combination from your defaults.json, set the command to "unbound". | |
// To learn more about actions and keybindings, visit https://aka.ms/terminal-keybindings | |
"actions": [ | |
// Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. | |
// These two lines additionally bind them to Ctrl+C and Ctrl+V. | |
// To learn more about selection, visit https://aka.ms/terminal-selection | |
{ |
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
# pip install pywin32, obviously the script requires admin privs to write to the event logger | |
import logging, logging.handlers | |
def main(): | |
ntl = logging.handlers.NTEventLogHandler("notdodo logging test") | |
logger = logging.getLogger() | |
logger.addHandler(ntl) | |
logger.error("This is a test message") |
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
&& | |
0&&0 | |
1&&1 | |
119.18.20.137&&22022 | |
1234&&1234 | |
12345&&12345 | |
154.29.178.51&&22 | |
192.185.196.181&&22 | |
24online&&24online | |
2Wire&&2Wire |
NewerOlder