Gathering information about a person by FIRST NAME and LAST NAME

general approach to the search process;
basic automation techniques;
examples of tools.

🧵🧵🧵 (1/15)

#osint #socmint
🧵(2/15)

Let's start with the easiest and fastest option. Use NAMINT from @seint_pl.

It will generate possible name variants and links to search for them in various search engines (+ possible emails and document search + social media accounts)

seintpl.github.io/NAMINT/
🧵(3/15)

If the options suggested by NAMINT do not bring results (or your goal is to collect the MAXIMUM info), then you need a list of all possible nicknames based on the first and last name.
Here's a guide on how to do it from @Sox0j:

github.com/soxoj/username…
🧵(4/15)

When compiling a list of possible name variants do not forget that any, even the simplest name (eg John) can be derived from dozens of different names and have a dozen more diminutive variants

Find those for each name will help this site:

nameberry.com/search?q=john
🧵 (5/15)

If you've done well in the past stages, you have a long list of nickname variations based on first/last names.

github.com/soxoj/marple automate the search (it automatically prepends the inurl: operator to the query and collects links to the results in a text file)
🧵(6/15)

You can also use the above list together with tools to verify the existence of accounts with a certain nickname in social networks.

There are many of them: Sherlock, Maigret, BlackBird, Nexfil... Take your pick.

github.com/cipher387/osin…
🧵(7/15)

It's also worth searching for different emails based on first and last names. This Google Sheet will help you generate them

(create a copy and enter the data you want in the first name, last name, and domain fields)

docs.google.com/spreadsheets/d…
🧵 (8/15)

Once you have a list of emails, you need to sort out the non-existent ones. To do this, there are dozens of online services to check one by one and dozens of APIs to automate this process.

Just for example:

email-checker.net
eva.pingutil.com
🧵(9/15)

It is also worth looking at accounts in various social networks, which are registered to email addresses from the list. You can do this with the well-known tool Holehe from @palenath.

github.com/megadose/holehe
🧵 (10/15)

Keep in mind that almost any command line tool can be run automatically many times in a row for a whole list of arguments (in our case name variants) using the XARGS utility.

In this thread I explain in detail how to use it:

🧵 (11/15)

There are many universal sites to search for people by first and last names, but I would advise you to BE WARNING of them.

They often contain outdated and inaccurate data for which they charge money.

Only go to them when you have tried the freely available tools.
🧵 (12/15)

When searching by first and last name, don't forget the state websites with data from individual countries and cities:

- company and taxpayer registries;
- election data;
- court records and civil registries;
- etc.

Look up this map:

cipher387.github.io/osintmap/
🧵(13/15)

If you are looking for a person from Russia, Ukraine and other former Soviet countries, try Telegram #osint bots (based on data from leaks)
This is not exactly a legal method and these bots are blocked all the time. Up-to-date links can be found at @HowToFind_bot
🧵(14/15)

Using the methods described above, you are sure to find social media accounts belonging to the target person.

The tools for collecting account data for each specific social network can be found in my collection of tools for #osint:

github.com/cipher387/osin…
🧵 (15/15)

Also, when searching for information about a person by first and last name, you may have to deal with Google. Read this thread about how to automate and make working with this search engine more efficient:

@threader compile
@threadreaderapp unroll
@threadrip unroll
@PingThread unroll
@threadreaders unroll
@TurnipSocial save
@readwiseio save thread
@tresselapp save thread
@rattibha unroll
@getnaked_bot unroll

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Cyber Detective🇺🇦

Cyber Detective🇺🇦 Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @cyb_detective

Jul 17
Reverse Image Search Guide #osint

- reverse images search engines and advanced search operators;
- photo processing tools for a more successful search;
- face photo search;
- automation.

(1/16) 🧵🧵🧵
The tool I recommend you start your search with is Yandex Images.

Not only does it search very well for similar images, but it also recognizes the text on them and identifies the location if it is an image of a famous landmark.

(2/16)🧵
Until recently, Yandex Images allowed you to enter search operators directly, but now this no longer works. But you can add them to the URL parameters.

For example, to search only on facebook, add &text=site%3Afacebook.com to the link

(as in the picture)

(3/16)🧵
Read 17 tweets
Jul 14
CCTV cameras in #OSINT

- how to search for cameras (including vulnerable cameras)
- how to save streams from cameras
- how to analyze video

🧵🧵🧵(1/15)
You can search for cameras using Google Custom Search Engine, which brings together the ten largest aggregators of camera streams (Webcamtaxi, Insecam, Geocam etc).

Just enter the city name or address.

cipher387.github.io/webcamcse/

🧵🧵🧵 (2/15)
A lot of camera streams can be found by searching on @YouTube. Enter the name of the city/street and add to it:

"live streaming"
"live webcam"
"live hd cam"
"earthcam live."
"walking stream"

etc

🧵🧵🧵 (3/15)
Read 17 tweets
Jul 10
10 online tools to make working with the Linux command line faster and more efficient

(1/12)

🧵🧵🧵

#linux #bash #cli
There are hundreds of thousands of ready-made #bash command combination examples on Stackoverflow, AskUbuntu, Stackexchange etc.

Explainshell.com figure out exactly what a particular command combination does in details.

(2/12)

🧵🧵
If a command fails to execute, you can use the shellcheck.net tool to find out exactly where in the line there is an error.

(3/12)

🧵🧵
Read 13 tweets
Jul 6
Secret Regex List

List of regular expressions to search for API keys and other juicy info.

Useful when searching in public code repositories as well as when researching files on the computer/server that is your target.

github.com/h33tlit/secret…

#regex #api

🧵
You can check how the regular expressions in the list above work on the grep.app.

This tool searches code from over a half million public repositories on #GitHub.

🧵
If you want to search for API keys in files on the computer/server, any of the many grep utilities can be used.

Their list with a brief description can be found in this repository:

github.com/cipher387/awes…

#regex #grep #osint

🧵
Read 4 tweets
Jul 5
XARGS 🧵

When I post a link to a #osint #cli tools, people ask me: "Why bother with the command line when you can do the same thing with online tools?"

№1 reason is the ability to automate the research of a LIST of domains, emails, phone numbers or other objects.

⬇️
This can be done using the XARGS utility, which is installed by default on Linux/MacOS (and can be installed on Windows).

I will show you how to use it using the BlackBird tool, which searches for profiles in 113 social networks by nickname.

github.com/p1ngul1n0/blac…

⬇️
1. Create file nicknames.txt and put some nicknames in it.

2. Run command:

cat nicknames.txt | xargs -L1 python3 blackbird․py -u

3. Wait for the script to finish and make sure the results folder contains the json files for each nickname.

⬇️
Read 7 tweets
Jul 3
osint.ngrok.io

New search engine from @dancho_danchev developed especially for #osint specialists!
It has many filters and advanced search operators that can help you analyse the information you find more quickly and effectively.
I will talk more about them in this🧵
It's possible to filter results by filetype, language, domain, author, keywords and protocol (https or http) and also sort by date.

🧵
All the filters mentioned in the previous tweet are available not only for searching web pages, but also for searching pictures.

🧵
Read 7 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(