emploleaks

(★ 788)

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

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

login

설명 보기 ▼

콘솔 및 가상 라인 인증을 관리.
`line` 설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/routers/sdwan/command/iosxe/qualified-cli-command-reference-guide/m-line-commands.pdf>.

login local

로컬 사용자 이름과 비밀번호를 사용하여 인증:

login {{user}}

Log in as a user:

login -f {{user}}

Log in as user without authentication if user is preauthenticated:

🔍

autoload

설명 보기 ▼

Zsh에서 함수의 지연 로딩을 설정.
함수는 처음 호출될 때 메모리에 로드되어, 쉘 시작 속도를 향상.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Shell-Builtin-Commands.html>.

autoload {{function_name}}

함수 이름으로 Autoload 설정:

autoload +X {{function_name}}

함수 Autoload 후 즉시 정의 로드:

autoload -Uz {{function_name}}

Zsh 방식으로 autoload 설정 (권장):

🔍

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

설명 보기 ▼

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

설명 보기 ▼

Git 레포지토리에서 유출된 비밀 및 API 키를 탐지.
더 많은 정보: <https://github.com/gitleaks/gitleaks#usage>.

gitleaks detect --repo-url {{https://github.com/username/repository.git}}

원격 디렉터리 스캔:

gitleaks detect {{[-s|--source]}} {{path/to/repository}}

로컬 디렉터리 스캔:

gitleaks detect {{[-s|--source]}} {{path/to/repository}} --report {{path/to/report.json}}

스캔 결과를 JSON 파일로 출력:

🔍

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

설명 보기 ▼

터미널이 종료되어도 프로세스가 계속 실행되도록 허용.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/nohup-invocation.html>.

nohup {{command}} {{argument1 argument2 ...}}

터미널 종료 후에도 계속 실행되는 프로세스 시작:

nohup {{command}} {{argument1 argument2 ...}} &

백그라운드 모드에서 `nohup` 실행:

nohup {{path/to/script.sh}} &

터미널 종료 후에도 계속 실행되는 셸 스크립트 실행:

🔍

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

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

setopt

설명 보기 ▼

Z 셸 (`zsh`) 옵션을 설정.
참고: Zsh 옵션은 대소문자를 구분하지 않으며 밑줄은 무시됨.
관련 항목: `unsetopt`.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Options.html>.

setopt

활성화된 옵션 목록 표시:

setopt {{option}}

옵션 설정:

set -o

사용 가능한 모든 옵션과 현재 상태 표시:

🔍

yes

설명 보기 ▼

무언가를 반복적으로 출력.
이 명령은 일반적으로 설치 명령(예: `apt-get`)의 모든 프롬프트에 'yes'로 응답하기 위해 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/yes-invocation.html>.

yes

"y"를 반복적으로 출력:

yes {{value}}

"메시지"를 반복적으로 출력:

yes | sudo apt-get install {{program}}

`apt-get` 명령의 모든 프롬프트에 수락:

// repository documentation