Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
AutoSploit — 자동화된 대량 익스플로이터 | Kitploit
도구/GitHubGitHub/nullarray/autosploit
ReconnaissanceExploit FrameworksPayload GenerationInformation GatheringPenetration TestingCommand and ControlRed TeamingRemote Access Tool
GitHubnullarray/autosploit

AutoSploit

자동화된 대량 익스플로이터

저장소 보기
5.2k1.2k26년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Docker 배포 지침

요약

docker-compose 사용:

root@kitploit:~
git clone https://github.com/NullArray/AutoSploit.git
cd Autosploit/Docker
docker-compose run --rm autosploit

Docker만 사용:

root@kitploit:~
git clone https://github.com/NullArray/AutoSploit.git
cd Autosploit/Docker
# If you wish to edit default postgres service details, edit database.yml. Should work out of the box
# nano database.yml
docker network create -d bridge haknet
docker run --network haknet --name msfdb -e POSTGRES_PASSWORD=s3cr3t -d postgres
docker build -t autosploit .
docker run -it --network haknet -p 80:80 -p 443:443 -p 4444:4444 autosploit

개요

  • Autosploit를 Docker 컨테이너로 실행하면 호스팅된 클라우드 환경(AWS, Azure, ...)에서 도구를 매우 쉽게 사용할 수 있습니다
  • postgres 데이터베이스를 개별 서비스로 분리하여 데이터 영속성과 잠재적인 비동기 업데이트를 지원합니다
  • 작은 브리지 네트워크 haknet을 생성하여 서비스 디스커버리가 자동으로 이루어지게 합니다
  • postgres와 Autosploit 컨테이너를 실행하고, 둘 다 haknet으로 연결합니다
  • Autosploit는 사전 구성된 msfconsole을 haknet 투명 네트워크를 통해 외부 postgres 컨테이너로 자동 실행합니다
  • Kali + Metasploit + Autosploit 전체 이미지 크기: 1.75GB

배포

1단계 - 브리지 네트워크 생성

이렇게 하면 Metasploit Framework가 호스트 이름을 사용하여 postgres 데이터베이스와 통신할 수 있어 추상화됩니다.

Tor Socks Proxy를 추가하여 익스플로잇 실행 시 투명 프록시로 사용할 수도 있습니다 (물론 리버스 셸에는 해당되지 않습니다).

root@kitploit:~
docker network create -d bridge haknet

2단계 - 서비스 실행

모두 자동으로 연결됩니다

2.1단계 - postgres 실행

haknet에 연결된 기본 postgres 서비스를 실행합니다

root@kitploit:~
docker run --network haknet --name msfdb -e POSTGRES_PASSWORD=s3cr3t -d postgres

2.2단계 - Autosploit 실행

Autosploit을 실행합니다.

이 Dockerfile은 기본 데이터베이스 구성을 ~/.msf4/database.yml로 복사합니다. 빌드 전에 구성 파일 database.yml을 원하는 대로 편집할 수 있습니다.

첫 빌드는 시간이 다소 걸릴 수 있습니다(~10분)

호스팅 서버에서 빌드하면 더 빠르며, -grade 대역폭의 이점을 얻을 수 있습니다.

root@kitploit:~
git clone https://github.com/NullArray/AutoSploit.git
cd Autosploit/Docker
nano database.yml # Exemple configuration should work fine
docker build -t autosploit .
docker run -it --network haknet -p 80:80 -p 443:443 -p 4444:4444 autosploit
도구 다운로드