{"id":13674663,"url":"https://github.com/liameno/librengine","last_synced_at":"2026-01-15T00:03:34.210Z","repository":{"id":37724251,"uuid":"438313123","full_name":"liameno/librengine","owner":"liameno","description":"Privacy Web Search Engine (not meta, own crawler)","archived":false,"fork":false,"pushed_at":"2023-06-19T21:25:25.000Z","size":22620,"stargazers_count":73,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-04T08:10:44.486Z","etag":null,"topics":["cpp","crawler","encryption","frontend","privacy","robots-txt","rsa","search-engine","self-hosted","spider","websearch","websearchengine"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liameno.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-12-14T15:55:19.000Z","updated_at":"2025-10-29T00:39:50.000Z","dependencies_parsed_at":"2024-01-12T20:03:53.649Z","dependency_job_id":null,"html_url":"https://github.com/liameno/librengine","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/liameno/librengine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liameno%2Flibrengine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liameno%2Flibrengine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liameno%2Flibrengine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liameno%2Flibrengine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liameno","download_url":"https://codeload.github.com/liameno/librengine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liameno%2Flibrengine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28439608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","crawler","encryption","frontend","privacy","robots-txt","rsa","search-engine","self-hosted","spider","websearch","websearchengine"],"created_at":"2024-08-02T11:00:56.446Z","updated_at":"2026-01-15T00:03:34.195Z","avatar_url":"https://github.com/liameno.png","language":"C++","funding_links":[],"categories":["Search Engines","Software"],"sub_categories":["Android","Search Engines"],"readme":"### New version: https://github.com/sightnet\nThis project will not be maintained.\n\n### ==========\n### ==========\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n![](images/logo.png)\n#### Privacy Web Search Engine\n## Website\n![](images/demo.png)\n\n## Features\n\n#### Crawler\n- Multithreading\n- Cache\n- Robots.txt\n- Proxy\n- Queue (BFS)\n- Detect Trackers\n- Http -\u003e Https\n\n#### Website / CLI\n- Encryption (rsa)\n- API\n- Proxy\n- Nodes\n- Rating\n\n\n## Usage (Docker)\n\nPlease run the build every time to change the arguments. \u003cbr\u003e\nThe site is launched by default on port 8080 AND with tor proxy (\u003cb\u003e!!!\u003c/b\u003e), to edit it you need to change config.json and rebuild website. \u003cbr\u003e\nThe api key for the database must be changed in the config and when the database is started(--api-key).\n\n#### DB - please run before using other\n```shell\nsudo docker pull typesense/typesense:0.24.0.rcn6\nmkdir /tmp/typesense-data\nsudo docker run -p 8108:8108 -v/tmp/data:/data typesense/typesense:0.24.0.rcn6 --data-dir /data --api-key=xyz\n```\n\n#### Crawler\n```shell\nsudo docker-compose build crawler --build-arg SITES=\"$(cat sites.txt)\"  --build-arg THREADS=1 --build-arg CONFIG=\"$(cat config.json)\"\nsudo docker-compose up crawler\n```\n\n#### Website\n```shell\nsudo docker-compose build website --build-arg CONFIG=\"$(cat config.json)\"\nsudo docker-compose up website\n```\n\n## Usage (Manual)\n\n## Deps\n```shell\ncd scripts \u0026\u0026 sh install_deps.sh\n```\n\n## Build\n```shell\ncd scripts \u0026\u0026 sh build_all.sh\n```\n\n## Run\n\nThe site is launched by default on port 8080 AND with tor proxy (\u003cb\u003e!!!\u003c/b\u003e), to edit it you need to change config.json. \u003cbr\u003e\nThe api key for the database must be changed in the config and when the database is started(--api-key).\n\n#### DB - please run before using other\n```shell\nmkdir /tmp/typesense-data \u0026\u0026\n./typesense-server --data-dir=/tmp/typesense-data --api-key=xyz --enable-cors \u0026\u0026\nsh scripts/init_db.sh\n```\n\n#### Crawler\n```shell\n./crawler ../../sites.txt 5 ../../config.json\n#[sites_path] [threads_count] [config path]\n```\n\n#### Website\n```shell\n./website ../../config.json\n#[config path]\n```\n\n## Instances\n¯\\\\_(ツ)_/¯\n\n## TODO\n- [x] Docker\n- [x] Encryption (assymetric)\n- [x] Multithreading crawler\n- [ ] Robots Rules (from headers \u0026 html) \u0026 crawl-delay\n- [x] Responsive web design\n- [ ] Own FTS ([...](https://github.com/liameno/kissearch))\n- [ ] Images Crawler\n\n## Dependencies\n- libcurl   ([source](https://github.com/curl/curl))\n- lexbor    ([source](https://github.com/lexbor/lexbor))\n- typesense ([source](https://github.com/typesense/typesense))\n- openssl   ([source](https://github.com/openssl/openssl))\n\n## Config\n./config.json\n\n## Mirrors\n- https://github.com/liameno/librengine\n- https://codeberg.org/liameno/librengine\n\n## License\nGNU Affero General Public License v3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliameno%2Flibrengine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliameno%2Flibrengine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliameno%2Flibrengine/lists"}