With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| ---- | |
| ## Disclaimer | |
| This set of instructions are available at this link https://configurelaptop.eu/clevo-keyboard-backlight-control-for-linux/ | |
| ---- | |
| Set instructions one-by-one in a terminal |
| Stream<List<int>> bgFunction(int size)async*{ | |
| int counter=size>10?size:10; | |
| List<int> buffer=[]; | |
| while(counter>=0){ | |
| buffer=[]; | |
| yield buffer; | |
| for(int i=size;i>counter;i--) | |
| buffer.add(i); | |
| buffer.add(counter); | |
| counter--; |
| def mind_blowing(params_a,params_b,callback,*args,**kwargs): | |
| print("This is a={a} b={b}".format(a=a,b=b)) | |
| if len(args)>0: | |
| print(f"${args}") | |
| else: | |
| print("No Args") | |
| if len(kwargs.keys())>0: | |
| print(f"${kwargs}") | |
| else: | |
| print("No Kwargs") |
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| from __future__ import absolute_import, unicode_literals | |
| from celery import shared_task | |
| from celery.utils.log import get_task_logger | |
| from celery.app import _state as state | |
| from celery.task.control import inspect as monitor | |
| from datasource import views as ds | |
| logger=get_task_logger(__name__) |
| function simpletree(data,content){ | |
| $.each(data,function(index,elem){ | |
| if(typeof(elem)=="object"){ | |
| list=index.trim().toLowerCase().replace(" ","_") | |
| content=$(content).append("<li><b>"+index+"</b><ul data='"+list+"'></ul></li>") | |
| simpletree(elem,content.find('[data="'+list+'"]')) | |
| }else{ | |
| $(content).append("<li><b>"+index+"</b> "+elem+"</li>") | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // | |
| // main.c | |
| // SKProject | |
| // | |
| // Created by Luca Orizio on 31/07/18. | |
| // Copyright © 2018 Luca Orizio. All rights reserved. | |
| // | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdbool.h> |