Posts: 12
Threads: 3
Joined: Aug 2023
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?
Posts: 22
Threads: 4
Joined: Jul 2023
(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!
Posts: 347
Threads: 29
Joined: Jun 2023
Illicit Services source code here :
https://github.com/MiyakoYakota/search.0t.rocksThis 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.
Posts: 174
Threads: 6
Joined: Jun 2023
Aug 06, 2023, 02:51 PM
(This post was last modified: Aug 06, 2023, 02:53 PM by Jimbo.)
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
Posts: 12
Threads: 3
Joined: Aug 2023
Aug 07, 2023, 05:21 PM
(This post was last modified: Aug 07, 2023, 05:24 PM by Maxxmann.)
(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?
Posts: 174
Threads: 6
Joined: Jun 2023
(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
Posts: 420
Threads: 14
Joined: Jun 2023
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
Posts: 8
Threads: 1
Joined: Jul 2023
(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?
Posts: 12
Threads: 3
Joined: Aug 2023
(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
Posts: 69
Threads: 4
Joined: Aug 2023
(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!
|