emploleaks

(★ 788)

An OSINT tool that helps detect members of a company with leaked credentials

File Explorer

  • .gitignore
  • deletion.txt
  • emploleaks.py
  • privacy.md
  • README.md
  • requirements.txt
  • telegram_sync.py

# Use via CDN

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 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 ▼

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 ▼

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:

// repository documentation