{"id":30613880,"url":"https://github.com/flameshikari/termux-fingerprint","last_synced_at":"2026-06-17T23:31:16.147Z","repository":{"id":311074180,"uuid":"1042241835","full_name":"flameshikari/termux-fingerprint","owner":"flameshikari","description":"🫆 Fingerprint workaround for Termux on Android 14","archived":false,"fork":false,"pushed_at":"2026-04-10T02:39:10.000Z","size":665,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-10T04:26:17.854Z","etag":null,"topics":["android","android-14","fingerprint-scanner","ssh","tergent","termux","workaround"],"latest_commit_sha":null,"homepage":"https://play.google.com/store/apps/details?id=pw.hexed.fingerprint","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flameshikari.png","metadata":{"files":{"readme":".github/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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-21T17:46:51.000Z","updated_at":"2026-04-10T02:39:14.000Z","dependencies_parsed_at":"2025-08-22T01:24:18.550Z","dependency_job_id":"4533d649-8248-472a-bc0b-8f34fcd4a213","html_url":"https://github.com/flameshikari/termux-fingerprint","commit_stats":null,"previous_names":["flameshikari/termux-fingerprint"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/flameshikari/termux-fingerprint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flameshikari%2Ftermux-fingerprint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flameshikari%2Ftermux-fingerprint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flameshikari%2Ftermux-fingerprint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flameshikari%2Ftermux-fingerprint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flameshikari","download_url":"https://codeload.github.com/flameshikari/termux-fingerprint/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flameshikari%2Ftermux-fingerprint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34470322,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["android","android-14","fingerprint-scanner","ssh","tergent","termux","workaround"],"created_at":"2025-08-30T06:48:33.806Z","updated_at":"2026-06-17T23:31:16.132Z","avatar_url":"https://github.com/flameshikari.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Termux Fingerprint\n\nIt's a simple app that solves the problem with using fingerprint scanning in Termux on Android 14.\n\nSee related issues:\n\n- https://github.com/termux/termux-api/issues/661\n- https://github.com/aeolwyr/tergent/issues/20\n\n\u003cimg src='./preview.gif' width=\"300\"/\u003e\n\n## Setup\n\n0. Download [the latest apk](https://github.com/flameshikari/termux-fingerprint/releases/latest) and install it on the phone.\n\n1. Install dependencies in Termux:\n    ```sh\n    pkg install jq tergent\n    ```\n\n2. Generate key(s) if you don't have any:\n\n    \u003e specify the values ​​you want, see `termux-keystore` help\n\n    ```sh\n    termux-keystore generate keyname -a EC -s 256 -u 10\n    ```\n    or with RSA:\n    ```sh\n    termux-keystore generate keyname -a RSA -s 2048 -u 10\n    ```\n\n    then export public keys by `ssh-keygen -D $PREFIX/lib/libtergent.so` command to fill them on hosts' `authorized_keys`\n\n3. Download the server script:\n\n    ```sh\n    mkdir -p ~/.ssh/bin\n    curl -sL https://raw.githubusercontent.com/flameshikari/termux-fingerprint/refs/heads/master/termux/server.sh \u003e ~/.ssh/bin/fingerprint\n    chmod +x ~/.ssh/bin/fingerprint\n    ```\n\n4. Add a rule in the ssh config:\n\n    ```sh\n    Host *\n        PKCS11Provider /data/data/com.termux/files/usr/lib/libtergent.so\n        Match exec $HOME/.ssh/bin/fingerprint\n    ```\n\n    or match only specific hosts:\n\n    ```sh\n    Host example.com\n        PKCS11Provider /data/data/com.termux/files/usr/lib/libtergent.so\n        Match exec $HOME/.ssh/bin/fingerprint\n    ```\n\n5. Try to connect to the host that has public key from your keystore.\n\n## How It Works\n\n1. Let's assume a ssh connetion to any host that has a public key from a hardware keystore\n2. `match exec` from `.ssh/config` runs the script before connecting to the host\n3. The script starts `pw.hexed.fingerprint/.SplashActivity` activity, switching from Termux to my fingerprint app; also it starts a server on `localhost:10451` and waits for a request\n4. After scanning, the app sends a request to `localhost:10451`, the script closes if the request is successful, automatically switching back to Termux and continuing the connection to the host\n\n\u003e the pipeline is undone; there are plans to add more logic processing and error handling, but for now this is MVP\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflameshikari%2Ftermux-fingerprint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflameshikari%2Ftermux-fingerprint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflameshikari%2Ftermux-fingerprint/lists"}