
Strumenti per nomi utente per test di penetrazione
Strumenti per generare nomi utente durante i test di penetrazione. I nomi utente sono metà del problema del brute force delle password.
Questo è utile per l'enumerazione degli account utente e il brute force delle password quando i nomi utente sono basati sui nomi degli utenti. Provando alcune password deboli su un ampio insieme di account utente, si possono evitare le soglie di blocco degli account.
I nomi degli utenti possono essere identificati attraverso vari metodi:
Sono inclusi anche alias comuni, o nomi utente scelti dagli utenti, dai forum.
Username Anarchy è uno strumento a riga di comando.
___ ____
| | \ ______ ____ _______ ____ _____ __ __ ____
| : // ___/_/ \\_ __ \ / \ \__ \ / : \ _/ \
' . / \___ \ \ o_/ | | \/| : \ / o \ | . . \\ o_/
\_____/ /______) \_____)|__| |___: /(______)|__: : / \_____)
_____ \/ .__ \/
/ \ ____ _____ _______ ____ | |__ ___.__.
/ o \ / \ \__ \ \_ __ \_/ ___\ | | \( : |
/ . \| . \ / o \ | | \/\ \___ | . \\___ |
\____:__ /|___:__/(______)|__| \_____)|___:__//_____|
\/
Usage: ./username-anarchy [OPTIONS]... [firstname|first last|first middle last]
Author: Andrew Horton (urbanadventurer). Version: 0.5
Names:
-i, --input-file FILE Input list of names. Can be SPACE, CSV or TAB delimited.
Defaults to firstname, lastname. Valid column headings are:
firstinitial, firstname, lastinitial, lastname,
middleinitial, middlename.
-a, --auto Automatically generate names from a country/list
-c, --country COUNTRY COUNTRY can be one of the following datasets:
PublicProfiler:
argentina, austria, belgium, canada, china,
denmark, france, germany, hungary, india, ireland,
italy, luxembourg, netherlands, newzealand, norway,
poland, serbia, slovenia, spain, sweden,
switzerland, uk, us
Other:
Facebook - uses the Facebook top 10,000 names
--given-names FILE Dictionary of given names
--family-names FILE Dictionary of family names
-s, --substitute STATE Control name substitutions
Valid values are 'on' and 'off'. Default: off
Can substitute any part of a name not available
-m, --max-sub NUM Limit quantity of substitutions per plugin.
Default: -1 (Unlimited)
Username format:
-l, --list-formats List format plugins
-f, --select-format LIST Select format plugins by name. Comma delimited list
-r, --recognise USERNAME Recognise which format is in use for a username.
This uses the Facebook dataset. Use verbose mode to
show progress.
-F, --format FORMAT Define the user format using either format string or
ABK format. See README.md for format details.
Output:
-@, --suffix BOOL Suffix. e.g. @example.com
Default: None
-C BOOL, Case insensitive usernames.
--case-insensitive Default: True (All lower case)
Miscellaneous:
-v, --verbose Display plugin format comments in output and displays
last name searches in plugin format recogniser
-h, --help
./username-anarchy anna key
anna
annakey
anna.key
annakey
annak
a.key
akey
kanna
k.anna
...
./username-anarchy --input-file ./test-names.txt --select-format first.last
andrew.horton
jim.vongrippenvud
peter.otoole
Nota che -a o --auto è richiesto quando non specifichi alcun nome in input.
./username-anarchy --country france --auto
martin
bernard
thomas
durand
richard
robert
petit
moreau
dubois
simon
martinsmith
martinjohnson
...
./username-anarchy --list-formats
Plugin name Example
--------------------------------------------------------------------------------
first anna
firstlast annakey
first.last anna.key
firstlast[8] annakey
firstl annak
f.last a.key
flast akey
lfirst kanna
l.first k.anna
lastf keya
last key
last.f key.a
last.first key.anna
FLast AKey
first1 anna0,anna1,anna2
fl ak
fmlast abkey
firstmiddlelast annaboomkey
fml abk
FL AK
FirstLast AnnaKey
First.Last Anna.Key
Last Key
FML ABK
./username-anarchy --recognise j.smith
Recognising j.smith. This can take a while.
Username format j.smith recognised. Plugin name: f.last
Per generare nomi utente per più di un account utente, devi fornire i nomi in un file di testo. Può essere delimitato da TAB o CSV.
Nome,Cognome
Andrew,Horton
Jim, von Grippenvud
Peter,O'Toole
LinkedIn mostra spesso il nome e l'iniziale del cognome
nome,iniziale cognome
andrew,h
foo,b
Set misto di nomi
nome,iniziale nome,iniziale secondo nome,cognome,iniziale cognome
andrew,,,horton,
jim,,,,v
,p,,o'toole,
Definisci un formato plugin personalizzato usando il formato ABK o il formato stringa di formato. Specifica il formato del nome utente con -F o --format
./username-anarchy -F "v-annakey" andrew horton
v-andrewhorton
./username-anarchy -F "v-%f%l" -a -C poland
v-nowaksmith
v-nowakjohnson
v-nowakjones
v-nowakwilliams
v-nowakbrown
v-nowaklee
v-nowakkhan
v-nowaksingh
v-nowakkumar
v-nowakmiller
...
Puoi aggiungere plugin a Username Anarchy definendoli in format-plugins.rb
Questo esempio usa il formato ABK.
Plugin.define "last.first" do
def generate(n)
n.format_anna("key.anna")
end
end
Questo esempio usa il formato stringa di formato.
Plugin.define "first" do
def generate(n)
n.format("%f")
end
end
Username Anarchy fornisce un metodo per definire un formato del nome utente con stringhe di formato.
Username Anarchy fornisce un metodo per definire un formato del nome utente con il formato ABK che si traduce in stringhe di formato.
La cartella forum-names contiene: