All Projects → soxoj → username-generation-guide

soxoj / username-generation-guide

Licence: Apache-2.0 License
A definitive guide to generating usernames for OSINT purposes

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to username-generation-guide

Mr.Holmes
🔍 A Complete Osint Tool
Stars: ✭ 307 (+707.89%)
Mutual labels:  osint, username-checker
laravel-username-generator
Automatically generate usernames for Laravel User Model
Stars: ✭ 37 (-2.63%)
Mutual labels:  generator, username-generator
Funnel
Funnel is a lightweight yara-based feed scraper
Stars: ✭ 38 (+0%)
Mutual labels:  osint
gommon
A collection of common util libraries for Go
Stars: ✭ 26 (-31.58%)
Mutual labels:  generator
TweetFeed
Collecting IOCs posted on Twitter
Stars: ✭ 181 (+376.32%)
Mutual labels:  osint
pereval-server
The Pereval server: a set of OSINT & misc related web-services
Stars: ✭ 27 (-28.95%)
Mutual labels:  osint
BFSG
BFSG - BruteForce String Generator 😾
Stars: ✭ 16 (-57.89%)
Mutual labels:  generator
silverbox
Guide describing how to setup compact, silent and energy-efficient GNU/Linux home server
Stars: ✭ 42 (+10.53%)
Mutual labels:  guide
roadifier
Open Source road mesh generator script for Unity
Stars: ✭ 30 (-21.05%)
Mutual labels:  generator
rxandroid2-retrofit2
Small tutorial to get started with RxAndroid 2 and Retrofit 2
Stars: ✭ 55 (+44.74%)
Mutual labels:  guide
python-lorem
🐍 Python library for the generation of random text that looks like Latin
Stars: ✭ 19 (-50%)
Mutual labels:  generator
querytool
Querytool is an OSINT framework based on Google Spreadsheets. With this tool you can perform complex search of terms, people, email addresses, files and many more.
Stars: ✭ 104 (+173.68%)
Mutual labels:  osint
XS-Labs-Style-Guide
XS-Labs Coding Style Guide for C, C++, Objective-C and x86 Assembly
Stars: ✭ 20 (-47.37%)
Mutual labels:  guide
ayashige
Ayashige provides a list of suspicious newly updated domains as a JSON feed
Stars: ✭ 27 (-28.95%)
Mutual labels:  osint
frontend-checklist
A complete todo list of skills and tasks to become a modern frontend developer
Stars: ✭ 61 (+60.53%)
Mutual labels:  guide
liferay-starter
Generate & download your Liferay workspace from a webapp.
Stars: ✭ 25 (-34.21%)
Mutual labels:  generator
csp.js
📺 CSP for vanilla JavaScript
Stars: ✭ 45 (+18.42%)
Mutual labels:  generators
styled-svg
A styled-components generator for SVG files to use in react
Stars: ✭ 37 (-2.63%)
Mutual labels:  generator
reactcci
React create component interactive CLI
Stars: ✭ 49 (+28.95%)
Mutual labels:  generator
nuzlocke-generator
📃 A nuzlocke template generator.
Stars: ✭ 21 (-44.74%)
Mutual labels:  generator

OSINT Username generation guide

A definitive guide to generating usernames for OSINT purposes.

Logo

Start

Let's find out your goals.

If I understand correctly, you have some information about people, and you want to get a list of usernames (nicknames), that's may be used to search for those people.

Am I right? So, you're in right place.

Below you can read the information on how to get clues for a new search, starting from the data you know, as well as how to automate this and what tools to use.

What do you have?

If you only have some information as a first name, a last name, a birthday (and, maybe some extra info), you should take a look at the section “Combining primary info".

Do you need extra help to extend the number of likely usernames? For learning methods to get variants of first names and so on, check section “Primary info mining”.

If you have a username and want to guess similar usernames, jump to the “Username transformations” section.

Important! Clone this repository with git or download it to use Python scripts mentioned below.

Combining primary info

Usernames/logins commonly consist of a combination of a first name, a last name, and, a little less often, a middle name (patronymic). Only the first letters can be left, and parts can be separated by some characters as _, . and so on.

Of course, there can be many such combinations, so automation tools are needed. A good example is very useful interactive Google spreadsheet for email permutations from Rob Ousbey, from Distilled.net.

image

Here is an example of Email Permutator usage for rob ousbey:

A very useful service NAMINT offers various links for combinations of first, last and middle name (nickname):

  • search engines (including photo search with Yandex)
  • possible login patterns
  • most popular social platforms search and supposed profiles links
  • gravatars for logins at common email providers (great feature 🔥)

image

Also, you can find it convenient to use Email Permutator from Metric Sparrow Toolkit or analyzeid permutator with batch processing support.

For fans of a console there are some specialized tools:

  • Script python-email-permutator based on spreadsheet mentioned above.

  • Logins generator supporting flexible ways to combine first, last and middle names.

  • emailGuesser well customizable permutator with support of checks if address is valid in Skype and in breach databases.

Looking ahead, I will tell you that from lists of names you can quickly make a list of emails.


If you have any other additional information, you can significantly expand the number of candidates for usernames. It can be a year of birth, city, country, profession, and... literally anything.

What can be used in this case?

  • My own script based on ProtOSINT combination methods:
$ python3 generate_by_real_info.py
First name: john
Last name: smith
Year of birth: 1980
Username (optional):
Zip code (optional):
johnsmith1980
smith
johnsmith80
jsmith1980
smithjohn
...
$ osrf alias_generator
Insert a name:                     john
Insert the first surname:          smith
Insert the second surname:
Insert a year (e. g.: birthyear):  1980
Insert a city:
Insert a country:

Additional transformations to be added
--------------------------------------

Extra words to add (',' separated):

Input data:
-----------

Name:               john
First Surname:      smith
Year:               1980

Generated nicks:

[
  "j.smith",
  "j.smith.1980",
  "j.smith.80",
  "j_smith",
...
Up to 41 nicks generated.

Writing the results onto the file:
	./output.txt

↑ Back to the start

Primary info mining

It is can be very important to check all the variants of non-English usernames. For example, a person with the common name Aleksandr may have a passport with the name Alexandr (letter x) and a working login starting with alexsandr (letters xs) because of the different transliteration rules.

This is a source of variability for us, so let's use it.

  • BehindTheName - excellent site about names. There are common name variants, diminutives (very useful for personal logins), and other languages alternatives.

'Aleksandr' name variants

You can use a simple script to scrape such data:

$ python3 behind_the_names.py john diminutives
Johnie
Johnnie
Johnny
  • WeRelate - Variant names project, a comprehensive database of name variants with the ability to search. Gives much more results than BehindTheNames, but there are also many irrelevant results. Also, see GitHub repo with project data.

↑ Back to the start

Username transformations

When you sign up on the site it may turn out that your username is taken. Then you use a variant of a name - with characters replacement or additions.

Thus, making assumptions about the transformations and knowing the original name, you can check "neighboring" accounts (for example, with maigret).

I propose for this my own simple tool that allows you to make transformations by rules.

$ python3 transform_username.py --username soxoj rules/printable-leetspeak.rule
soxoj
s0xoj
5ox0j
50xoj
...

Rules for transformation are located in the directory rules and consist of the following:

  • printable-leetspeak.rule - common leetspeak transformations such as e => 3, a => 4, etc.
  • printable-leetspeak-two-ways.rule - the same conversions from letters to numbers, but also vice versa
  • impersonation.rule - common mutations used by scammers-impersonators such as l => I, O => 0, etc.
  • additions.rule - common additions to the username: underscores and numbers
  • toggle-letter-case.rule - changing case of letters, what is needed not so often, but maybe useful
  • add_email.rule - custom rule to add mail domain after usernames

You can use a file with a list of usernames:

$ cat usernames.txt
john
jack

$ python3 transform_username.py rules/impersonation.rule --username-list soxoj
jack
iack
john
iohn

And even use a pipe to use the output of other tools and itself, combining transformations:

$ python3 transform_username.py rules/printable-leetspeak.rule --username soxoj | python3 transform_username.py rules/impersonation.rule  -I
s0xOj
sOx0j
5OxOi
soxOj
sox0i
...

Addition of mail domain

You can use add_email.rule and easily edit it to add needed mail domains to check emails in tools such as mailcat, holehe, or GHunt.

$ python3 transform_username.py rules/printable-leetspeak.rule --username soxoj | python3 transform_username.py rules/add_email.rule --remove-known -I
[email protected]
[email protected]
[email protected]
[email protected]
...

↑ Back to the start

Other

↑ Back to the start

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].