With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
# PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/ | |
# tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c | |
# the most up-to-date version of PowerView will always be in the dev branch of PowerSploit: | |
# https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1 | |
# New function naming schema: | |
# Verbs: | |
# Get : retrieve full raw data sets | |
# Find : ‘find’ specific data entries in a data set |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
// интро | |
// например есть | |
const example = {'question': 'anwer'} | |
let question; | |
// тогда можно написать expression | |
({question} = example); | |
console.log(question); |
import csv | |
from django.core import management | |
from django.core.management import BaseCommand | |
class Command(BaseCommand): | |
def add_arguments(self, parser): | |
parser.add_argument('csv_path', nargs='?', type=str) |
import random | |
from itertools import count, takewhile | |
names = ["Френк", "Клер", "Зоя", "Питер", "Лукас"] | |
def employee(): | |
name = random.choice(names) | |
return name | |
# Менять можно только код ниже, | |
# функцию employee() не трогаем |
from uuid import uuid4 | |
from django.conf import settings | |
from django.test import SimpleTestCase | |
from django.utils.decorators import classproperty | |
def _generate_record(host, port): | |
return { |
import asyncio | |
import concurrent | |
import threading | |
from concurrent.futures import as_completed, ThreadPoolExecutor | |
from itertools import zip_longest | |
from random import random | |
async def subwork(i): | |
slept = random() % 1 | |
await asyncio.sleep(slept) |
import gc | |
import time | |
def readable_time(): | |
return time.strftime('%Y %b %d %H:%M:%S +0000', | |
time.gmtime(time.time())) | |
class Timer: | |
def __init__(self, scope): | |
self.scope = scope or '====' |
Glue several services together with FaaS. Example: direct S3 upload triggers a function which invokes Rekognition, after that the result is saved by another function to the DynamoDB.
Literally the architecture that responds to HTTP calls. Youcan organize it in various ways too.