emploleaks
An OSINT tool that helps detect members of a company with leaked credentials
File Explorer
- users.xml
- docker-compose.yml
- .gitkeep
- tokens.ini.example
- __init__.py
- github.py
- hibp.py
- linkedin.py
- ai_classifier.py
- discovery.py
- email_lookup.py
- leak_parser.py
- logging_format.py
- profile_lookup.py
- __init__.py
- breaches.py
- companies.py
- credentials.py
- dashboard.py
- discovery.py
- emails.py
- employees.py
- secrets.py
- social.py
- database.py
- main.py
- models.py
- requirements.txt
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- favicon.ico
- globals.css
- layout.tsx
- page.tsx
- DataTable.tsx
- DeptColumn.tsx
- DeptSection.tsx
- EmployeeCard.tsx
- Sidebar.tsx
- StatsCard.tsx
- TriageBadge.tsx
- api.ts
- file.svg
- globe.svg
- next.svg
- vercel.svg
- window.svg
- .gitignore
- AGENTS.md
- CLAUDE.md
- eslint.config.mjs
- next.config.ts
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- tsconfig.json
- .gitignore
- deletion.txt
- emploleaks.py
- privacy.md
- README.md
- requirements.txt
- telegram_sync.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
login
View Details ▼
login
Manage console and virtual line authentication.
Accessed in configuration mode under `line`.
login local
Use local username and password for authentication:
login {{user}}
Log in as a user:
login -f {{user}}
Log in as user without authentication if user is preauthenticated:
autoload
View Details ▼
autoload
Mark functions for lazy loading in Zsh.
Functions are not loaded into memory until first called, improving shell startup time.
autoload {{function_name}}
Autoload a function by name:
autoload +X {{function_name}}
Autoload a function and immediately resolve its definition:
autoload -Uz {{function_name}}
Autoload a function using Zsh-style autoloading (recommended):
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
gitleaks
View Details ▼
gitleaks
Detect secrets and API keys leaked in Git repositories.
gitleaks detect --repo-url {{https://github.com/username/repository.git}}
Scan a remote repository:
gitleaks detect {{[-s|--source]}} {{path/to/repository}}
Scan a local directory:
gitleaks detect {{[-s|--source]}} {{path/to/repository}} --report {{path/to/report.json}}
Output scan results to a JSON file:
go install
View Details ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
nohup
View Details ▼
nohup
Allows for a process to live when the terminal gets killed.
nohup {{command}} {{argument1 argument2 ...}}
Run a process that can live beyond the terminal:
nohup {{command}} {{argument1 argument2 ...}} &
Launch `nohup` in background mode:
nohup {{path/to/script.sh}} &
Run a shell script that can live beyond the terminal:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
setopt
View Details ▼
setopt
Set Z shell (`zsh`) options.
Note: Zsh options are case-insensitive and underscores are ignored.
See also: `unsetopt`.
setopt
List enabled options:
setopt {{option}}
Set an option:
set -o
Display all available options and their status:
yes
View Details ▼
yes
Output something repeatedly.
This command is commonly used to answer yes to every prompt by install commands (such as `apt-get`).
yes
Repeatedly output `y`:
yes {{value}}
Repeatedly output a specified value:
yes | sudo apt-get install {{program}}
Accept everything prompted by the `apt-get` command:
