Skip to content

JonBunator/Enterr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

enterr logo

Website Auto-Login Tool

Enterr license GitHub release (latest by date) Docker Image Made with Love

Some websites delete your account after a period of inactivity. Enterr helps manage your logins by automatically logging into your accounts, ensuring they remain active.

Warning

This tool is still at an early stage of development. Expect breaking changes.

Caution

Disclaimer: Use of this tool may violate the Terms of Service (TOS) of the websites it interacts with. Users are solely responsible for any consequences. The developers are not liable for misuse or damages.

enterr screenshot

Docker compose

Create a docker-compose.yml and add the following. You can change the port if you want. Replace MY_RANDOM_SECRET with a random secret.

services:
  enterr:
    container_name: enterr
    image: ghcr.io/jonbunator/enterr:latest
    environment:
      - SECRET_KEY=MY_RANDOM_SECRET
    volumes:
      - ./config:/config
    ports:
      - "7653:7653"
    restart: unless-stopped

Then start the container:

docker compose up -d

You can access the ui via http://localhost:7653

User Management

The following commands are intended for use with Docker Compose. If you are not using Docker Compose, or are managing containers through tools like Portainer or Unraid, please follow this guide instead: User Management without Docker Compose

Create a user

docker compose run --rm enterr create_user <USERNAME> <PASSWORD>
docker compose run --rm enterr create_user my_username 123456

Delete a user

docker compose run --rm enterr delete_user <USERNAME>
docker compose run --rm enterr delete_user my_username

Set a different password

docker compose run --rm enterr set_password <USERNAME> <NEW_PASSWORD>
docker compose run --rm enterr set_password my_username 456789

About

Tool that automates website logins to prevent account deletion due to inactivity.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Contributors 2

  •  
  •