ek0msUSB

(★ 70)

badUSB ek0ms style with integrated c2

파일 탐색기

  • ek0msusb.py
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

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:

🔍

ngrok

설명 보기 ▼

로컬에서 실행 중인 웹 서비스에 공용 엔드포인트로부터 안전한 터널을 생성하는 리버스 프록시.
더 많은 정보: <https://ngrok.com/docs/agent/cli>.

ngrok http {{80}}

지정된 포트로 로컬 HTTP 서비스 노출:

ngrok http {{example.com}}:{{80}}

특정 호스트에서 로컬 HTTP 서비스 노출:

ngrok http https://localhost

로컬 HTTPS 서버 노출:

🔍

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 시작:

🔍

ipconfig

설명 보기 ▼

IP 구성 상태를 보고 제어합니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/ipconfig.8.html>.

ipconfig getiflist

모든 네트워크 인터페이스 나열:

ipconfig

모든 네트워크 어댑터 표시:

ipconfig getifaddr {{interface_name}}

인터페이스의 IP 주소 표시:

🔍

net

설명 보기 ▼

네트워크 관련 설정을 보고 수정하는 시스템 유틸리티입니다.
더 많은 정보: <https://learn.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/gg651155(v=ws.11)>.

net {{start|stop}} {{service}}

동기적으로 Windows 서비스 시작 또는 중지:

net use {{\\smb_shared_folder}} /USER:{{username}}

현재 콘솔에서 SMB 공유 가능한지 확인:

net share

현재 SMB로 공유되는 폴더 표시:

🔍

systeminfo

설명 보기 ▼

로컬 또는 원격 컴퓨터의 운영 체제 구성 정보를 표시합니다.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/systeminfo>.

systeminfo

로컬 컴퓨터의 시스템 구성 표시:

systeminfo /fo {{table|list|csv}}

지정된 출력 형식으로 시스템 구성 표시:

systeminfo /s {{remote_name}} /u {{username}} /p {{password}}

원격 컴퓨터의 시스템 구성 표시:

// repository documentation