Creation of personal and searchable DB
by Maxxmann - Sunday August 6, 2023 at 12:59 PM
#1
Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?
Reply
#2
(Aug 06, 2023, 12:59 PM)Maxxmann Wrote: Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?

To create a web-based platform like Illict, you'll need to be familiar with web development tools like HTML, CSS, and JavaScript. Understanding of simple web frameworks; I prefer Flask or Django (Python-based) or Express.js (JavaScript-based) for getting started, as they have good documentation and relatively simple routing.
Learn about database management systems (DBMS) and SQL, which are essential for efficiently storing and retrieving breach data. MySQL, PostgreSQL, and SQLite are some common possibilities, however if you want to experiment with NoSQL databases, I prefer Casandra or MongoDB.
If you ever plan on becoming public, study principles like encryption, hashing, and access controls to ensure the user data is protected, which a base engine should not require.

Though illict did release their source, I can PM it to you if you'd need!
Reply
#3
Illicit Services source code here :
https://github.com/MiyakoYakota/search.0t.rocks

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Self-Ban | http://c66go4clkqodr7tdjfu76jztjs7w7d3fajdeypxn73v4ju3dt7g5yyyd.onion/Forum-Ban-Appeals if you wish to be unbanned in the future.
Reply
#4
1. Learn Elasticsearch
2. Learn Python (or with language you understand) with elasticsearch driver
3. dump any database to elasticsearch (with no defined scheme)
4. write a telegram bot to search the data or just learn to create a website using Flask Framework (easiest)

remember that you need more ram as your data grow for faster search, also SSD are mandatory
KPU.GO.ID data for sale

Contact only through breachforums.is PM

for buyer, please attach Proof of Fund
for media, please begin the subject with [PERS]

tg: BYJimbo
Reply
#5
(Aug 06, 2023, 01:06 PM)Iritium Wrote:
(Aug 06, 2023, 12:59 PM)Maxxmann Wrote: Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?

To create a web-based platform like Illict, you'll need to be familiar with web development tools like HTML, CSS, and JavaScript. Understanding of simple web frameworks; I prefer Flask or Django (Python-based) or Express.js (JavaScript-based) for getting started, as they have good documentation and relatively simple routing.
Learn about database management systems (DBMS) and SQL, which are essential for efficiently storing and retrieving breach data. MySQL, PostgreSQL, and SQLite are some common possibilities, however if you want to experiment with NoSQL databases, I prefer Casandra or MongoDB.
If you ever plan on becoming public, study principles like encryption, hashing, and access controls to ensure the user data is protected, which a base engine should not require.

Though illict did release their source, I can PM it to you if you'd need!

Thank you so much!

(Aug 06, 2023, 01:16 PM)YourRig Wrote: Illicit Services source code here :
https://github.com/MiyakoYakota/search.0t.rocks

Thank you!

(Aug 06, 2023, 02:51 PM)black Wrote: 1. Learn Elasticsearch
2. Learn Python (or with language you understand) with elasticsearch driver
3. dump any database to elasticsearch (with no defined scheme)
4. write a telegram bot to search the data or just learn to create a website using Flask Framework (easiest)

remember that you need more ram as your data grow for faster search, also SSD are mandatory

Thanks! This might be stupid question, but I am going to set up a physical server that hosts the db right? Or would you do it from a cloud?
Reply
#6
(Aug 07, 2023, 05:21 PM)Maxxmann Wrote:
(Aug 06, 2023, 01:06 PM)Iritium Wrote:
(Aug 06, 2023, 12:59 PM)Maxxmann Wrote: Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?

To create a web-based platform like Illict, you'll need to be familiar with web development tools like HTML, CSS, and JavaScript. Understanding of simple web frameworks; I prefer Flask or Django (Python-based) or Express.js (JavaScript-based) for getting started, as they have good documentation and relatively simple routing.
Learn about database management systems (DBMS) and SQL, which are essential for efficiently storing and retrieving breach data. MySQL, PostgreSQL, and SQLite are some common possibilities, however if you want to experiment with NoSQL databases, I prefer Casandra or MongoDB.
If you ever plan on becoming public, study principles like encryption, hashing, and access controls to ensure the user data is protected, which a base engine should not require.

Though illict did release their source, I can PM it to you if you'd need!

Thank you so much!

(Aug 06, 2023, 01:16 PM)YourRig Wrote: Illicit Services source code here :
https://github.com/MiyakoYakota/search.0t.rocks

Thank you!

(Aug 06, 2023, 02:51 PM)black Wrote: 1. Learn Elasticsearch
2. Learn Python (or with language you understand) with elasticsearch driver
3. dump any database to elasticsearch (with no defined scheme)
4. write a telegram bot to search the data or just learn to create a website using Flask Framework (easiest)

remember that you need more ram as your data grow for faster search, also SSD are mandatory

Thanks! This might be stupid question, but I am going to set up a physical server that hosts the db right? Or would you do it from a cloud?

If I be you I would use physical server, because the cloud will be too pricey
KPU.GO.ID data for sale

Contact only through breachforums.is PM

for buyer, please attach Proof of Fund
for media, please begin the subject with [PERS]

tg: BYJimbo
Reply
#7
Step 1: Become like me.
Step 2: Profit.

learn PHP, HTML / CSS.
read Elastic Search or Apache Solr Documentation.
put it into practice, ask a lot of questions, think outside of the box.

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Scamming | https://doxbin.com/upload/0x27Doxxed | https://ibb.co/nqtc4prn
Reply
#8
(Aug 06, 2023, 02:51 PM)black Wrote: 1. Learn Elasticsearch
2. Learn Python (or with language you understand) with elasticsearch driver
3. dump any database to elasticsearch (with no defined scheme)
4. write a telegram bot to search the data or just learn to create a website using Flask Framework (easiest)

remember that you need more ram as your data grow for faster search, also SSD are mandatory

I understand easily that high read speeds of SSD are necessary for a database. But what role the does CPU and RAM play in the self-hosting of a solr server with billions of records? Isn't RAM just more 1s and 0s (storage) with tremendously higher read/write speed?
Reply
#9
(Aug 07, 2023, 09:32 PM)black Wrote:
(Aug 07, 2023, 05:21 PM)Maxxmann Wrote:
(Aug 06, 2023, 01:06 PM)Iritium Wrote:
(Aug 06, 2023, 12:59 PM)Maxxmann Wrote: Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?

To create a web-based platform like Illict, you'll need to be familiar with web development tools like HTML, CSS, and JavaScript. Understanding of simple web frameworks; I prefer Flask or Django (Python-based) or Express.js (JavaScript-based) for getting started, as they have good documentation and relatively simple routing.
Learn about database management systems (DBMS) and SQL, which are essential for efficiently storing and retrieving breach data. MySQL, PostgreSQL, and SQLite are some common possibilities, however if you want to experiment with NoSQL databases, I prefer Casandra or MongoDB.
If you ever plan on becoming public, study principles like encryption, hashing, and access controls to ensure the user data is protected, which a base engine should not require.

Though illict did release their source, I can PM it to you if you'd need!

Thank you so much!

(Aug 06, 2023, 01:16 PM)YourRig Wrote: Illicit Services source code here :
https://github.com/MiyakoYakota/search.0t.rocks

Thank you!

(Aug 06, 2023, 02:51 PM)black Wrote: 1. Learn Elasticsearch
2. Learn Python (or with language you understand) with elasticsearch driver
3. dump any database to elasticsearch (with no defined scheme)
4. write a telegram bot to search the data or just learn to create a website using Flask Framework (easiest)

remember that you need more ram as your data grow for faster search, also SSD are mandatory

Thanks! This might be stupid question, but I am going to set up a physical server that hosts the db right? Or would you do it from a cloud?

If I be you I would use physical server, because the cloud will be too pricey

Thanks! I will look into it
Reply
#10
(Aug 06, 2023, 01:06 PM)Iritium Wrote:
(Aug 06, 2023, 12:59 PM)Maxxmann Wrote: Hi, 
Do you know any good ressources in how to get started in programming and building your own db for breach data? I want to create a project similar to search.illicit.services but only for my self to start with tho. 

Any tips?

To create a web-based platform like Illict, you'll need to be familiar with web development tools like HTML, CSS, and JavaScript. Understanding of simple web frameworks; I prefer Flask or Django (Python-based) or Express.js (JavaScript-based) for getting started, as they have good documentation and relatively simple routing.
Learn about database management systems (DBMS) and SQL, which are essential for efficiently storing and retrieving breach data. MySQL, PostgreSQL, and SQLite are some common possibilities, however if you want to experiment with NoSQL databases, I prefer Casandra or MongoDB.
If you ever plan on becoming public, study principles like encryption, hashing, and access controls to ensure the user data is protected, which a base engine should not require.

Though illict did release their source, I can PM it to you if you'd need!

I loved your response, full of valuable information. Thanks for the input!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [FREE] Database Searcher Telegram odanbtw 1,028 91,530 51 minutes ago
Last Post: amhars83
  The Ultimate Cloning Course: Mastering Dump Data & Card Cloning nexo 29 5,398 Yesterday, 05:30 PM
Last Post: kzpxshr
  DarkGPT Tutorial Easy idontknowmyname 190 8,613 Yesterday, 05:28 PM
Last Post: kzpxshr
  ✅ Top 10 Google Dorks For SQL Injections NextSoftGroup 13 615 Yesterday, 04:53 PM
Last Post: sacage_x64
  AI-drived pentest platform sacage_x64 0 72 Yesterday, 04:52 PM
Last Post: sacage_x64

Forum Jump:


 Users browsing this forum: 1 Guest(s)