Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to search for a specific domain? #4

Open
Sachinart opened this issue Jun 12, 2023 · 3 comments
Open

How to search for a specific domain? #4

Sachinart opened this issue Jun 12, 2023 · 3 comments

Comments

@Sachinart
Copy link

Hi, absolutely awesome. Thank you very much for this amazing project.

I wanna search for a specific domain for an example: apple.com, So how I will know like in which file that exists or if that's not possible to search here then I have to download whole directory and then I have to search that using regex or any script?

Thank You!

@mrvcoder
Copy link

hi , you can use my tool :D cloud_data
If it was useful, please give a star 😉

@Azathothas
Copy link

@Sachinart, I agree, searching through csv is a pain.
GitHub Code Search won't index this repo either.

@mhmdiaa should consider json too
here's how to convert the csvfiles to json using csvtk

!# From a git cloned repo
find . -type f -name '*.csv' -exec sh -c 'csvtk csv2json "$1" > "${1%.csv}.json"' _ {} \;
!# This will generate a json file for each of the csv files

!# Or a Single Big one:
find . -type f -name '*.csv' -exec csvtk csv2json {} \; > "/tmp/csv2.json"

@mrvcoder love your tool, thanks for that.
However, it's too much setup, and If I try with many domains (> 10), my system freezes and it takes a long time.

To solve all these problems, I have decided to make the data (Parsed & Cleaned) available at:
https://pub.ajam.dev/datasets/sni-ip-ranges/

This also contains data from http://kaeferjaeger.gay/?dir=sni-ip-ranges

@mrvcoder
Copy link

mrvcoder commented Mar 5, 2024

@Azathothas thanks , actually my tool runs with github actions and for multiple domains I think it can handle it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants