ZYPE

(★ 27)

ZYPE: Your Payload Encryptor. MSFvenom shellcode got detected? ZYPE encrypt and obfuscate the shellcode for you!

파일 탐색기

  • .gitignore
  • build.zig
  • build.zig.zon
  • install.sh
  • 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:

🔍

msfvenom

설명 보기 ▼

metasploit용 페이로드를 수동으로 생성하는 도구.
더 많은 정보: <https://docs.metasploit.com/docs/using-metasploit/basics/how-to-use-msfvenom.html>.

msfvenom {{[-l|--list]}} payloads

사용 가능한 페이로드 목록 표시:

msfvenom {{[-l|--list]}} formats

사용 가능한 출력 형식 목록 표시:

msfvenom {{[-p|--payload]}} {{payload}} --list-options

특정 페이로드의 옵션 표시:

🔍

zig

설명 보기 ▼

Zig 컴파일러 및 툴체인.
더 많은 정보: <https://ziglang.org/documentation/master/>.

zig build

현재 디렉토리의 프로젝트 컴파일:

zig build run

현재 디렉토리의 프로젝트 컴파일 및 실행:

zig init

`zig build` 애플리케이션 초기화:

🔍

uuid

설명 보기 ▼

범용 고유 식별자(UUID) 생성 및 디코드.
관련 항목: `uuidgen`.
더 많은 정보: <https://manned.org/uuid>.

uuid

UUIDv1 생성 (시간 및 시스템의 하드웨어 주소 기반, 사용 가능한 경우):

uuid -v 4

UUIDv4 생성 (무작위 데이터 기반):

uuid -v 4 -n {{number_of_uuids}}

여러 개의 UUIDv4를 한 번에 생성:

// repository documentation