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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
Manati — 직관적인 위협 분석가의 작업을 지원하는 웹 기반 도구입니다. | Kitploit
도구/GitHubGitHub/stratosphereips/manati
Information GatheringThreat IntelligenceMachine Learning
GitHubstratosphereips/manati

Manati

직관적인 위협 분석가의 작업을 지원하는 웹 기반 도구입니다.

저장소 보기
114277년 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

ManaTI 프로젝트

Build Status contributions welcome GPLv3 license

위협 직관 분석을 위한 머신러닝

ManaTI 프로젝트의 목표는 직관적인 위협 분석가가 새로운 보안 문제를 더 빠르게 발견할 수 있도록 지원하는 머신러닝 기술을 개발하는 것입니다. 머신러닝은 새로운 관계와 추론을 찾아내어 분석에 기여할 것입니다. 이 프로젝트에는 분석가가 데이터와 머신러닝 결과와 상호작용할 수 있는 웹 인터페이스 개발이 포함됩니다.

이 프로젝트는 Cisco Systems의 부분 지원을 받고 있습니다. 프로젝트에 대한 자세한 내용은 Stratosphere Lab 페이지를 방문해 주세요.

안정적인 버전

  • Mon Sep 3 12:24:26 CEST 2018: Version 0.12.0a
  • Sun Aug 12 16:21:19 CEST 2018: Version 0.11.0a
  • Mon Jan 29 00:07:15 CEST 2018: Version 0.9.0a
  • Fri Nov 10 19:16:52 CEST 2017: Version 0.8.0.537a
  • Fri Mar 31 12:19:00 CEST 2017: Version 0.7.1
  • Sun Mar 5 00:04:41 CEST 2017: Version 0.7
  • Thu Nov 10 12:30:45 CEST 2016: Version 0.6.2.1
  • Wed Oct 12 21:19:21 CEST 2016: Version 0.5.1
  • Wed Sep 21 17:56:40 CEST 2016: Version 0.41
  • Tue Sep 13 10:52:36 CEST 2016: Version 0.4
  • Thu Aug 18 15:44:31 CEST 2016: Version 0.3
  • Wed Jun 29 10:44:15 CEST 2016: Version 0.2

저자

  • Raúl B. Netto (@Piuliss, [email protected], [email protected])
  • Sebastian García (@eldracote, [email protected], [email protected])

앱 스크린샷

manati_screenshot

설치

ManaTI는 Postgres 데이터베이스를 사용하는 Django 프로젝트이며 Linux와 MacOS에서 작동합니다. 설정을 위해 virtualenv 환경을 사용하는 것을 권장합니다. Linux에서의 설치 단계는 다음과 같습니다:

root@kitploit:~
    sudo apt-get update ; sudo apt-get upgrade -y
  1. 저장소 클론
  2. root@kitploit:~
        git clone [email protected]:stratosphereips/Manati.git; cd Manati
      
    

    또는 SSH를 사용하지 않으려면 HTTPS를 사용하세요

    root@kitploit:~
        git clone https://github.com/stratosphereips/Manati.git; cd Manati
    
  3. ManaTI에 필요한 Python 라이브러리를 격리하기 위해 Virtualenv를 설치합니다. 또한 개발을 위한 Python 라이브러리도 설치됩니다.
  4. root@kitploit:~
        sudo apt-get install virtualenv python-pip python-dev libpq-dev build-essential libssl-dev libffi-dev
        
    
  5. virtualenv 폴더 생성
  6. root@kitploit:~
        virtualenv .vmanati
        
    
  7. Virtualenv 활성화
  8. root@kitploit:~
        source .vmanati/bin/activate
        
    
  9. PostgreSQL DB 엔진 설치
  10. root@kitploit:~
        sudo apt-get install postgresql-server-dev-all postgresql-9.5 postgresql-client-9.5
        
    
  11. 환경 변수 파일 생성. .env.example 파일을 .env로, .env-docker.example 파일을 .env-docker로 복사하고 이름을 변경합니다.
  12. root@kitploit:~
        cp .env.example .env
        cp .env-docker.example .env-docker
    

    선택 사항

    원하는 경우 데이터베이스의 비밀번호와 이름을 수정할 수 있습니다. 아래 Postgres 데이터베이스 설정에 변경 사항을 반영해야 합니다.

  13. 필요한 Python 라이브러리 설치
  14. root@kitploit:~
        pip install -r requirements/local.txt
        
    

실행 중이거나 대기 중인 작업을 보려면 http://localhost:8000/manati_project/django-rq/로 이동하세요.

설정: 마스터에서 버전 업데이트

  1. 프로젝트 디렉토리 열기
  2. root@kitploit:~
    cd path/to/project_directory
        
    
  3. 마스터에서 최신 변경 사항 가져오기
  4. root@kitploit:~
    git pull origin master
    
  5. 설치된 라이브러리 설치
  6. root@kitploit:~
    pip install -r requirements/local.txt
        
    
  7. redis-server 설치 및 redis_worker.sh 파일 실행 (백그라운드 '&' 또는 다른 콘솔에서)
  8. root@kitploit:~
    ./utility/redis_worker.sh
        
    
  9. guardian 라이브러리용 마이그레이션 파일 준비 (이미 있는 경우 아무 일도 일어나지 않음)
  10. root@kitploit:~
    python ./manage.py makemigrations guardian --noinput
        
    
  11. 마이그레이션 파일 실행
  12. root@kitploit:~
    python ./manage.py migrate --noinput
    
  13. 외부 모듈 등록. 외부 모듈을 추가하거나 제거할 때마다 이 명령을 실행해야 합니다.
  14. root@kitploit:~
    python ./manage.py check_external_modules
        
    
  15. 서버 실행
  16. root@kitploit:~
    python ./manage.py runserver
    

프로덕션에서 실행

백그라운드 작업을 처리하기 위해 surpevisor, gunicorn을 서버로, RQ worker (redis 서버 포함)를 사용합니다. 향후 nginx 설정을 준비할 계획입니다.

root@kitploit:~
cd path/to/project_directory 
python manage.py collectstatic --noinput --clear
sudo supervisord -c supervisor-manati.conf -n

Docker 이미지

Docker가 설치되어 있다면 ManaTI Docker 이미지를 설치하는 것이 좋습니다. Dockerfile 및 서버 구성 파일은 여기에 있습니다. 이 ManaTI Docker 이미지는 NGINX 및 uWSGI 서버 위에서 실행됩니다. 이 이미지는 @Piuliss가 유지 관리합니다.

root@kitploit:~
docker pull honeyjack/manati:latest
docker run --name manati -p 8888:8888 -dti honeyjack/manati:latest bash

그런 다음 5~10초 정도 기다린 후 http://localhost:8888로 이동합니다.

Docker Composer

ManaTI를 설치하는 데 시간을 낭비하고 싶지 않고 Docker가 설치되어 있다면 docker-compose를 실행하면 됩니다. 먼저 저장소를 클론하고 프로젝트 디렉토리로 이동합니다.

root@kitploit:~
cd Manati
cp .env.example .env
cp .env-docker.example .env-docker
docker-compose build
docker-compose run web bash -c "python manage.py makemigrations --noinput; python manage.py migrate; python manage.py check_external_modules"
docker-compose run web bash -c "python manage.py createsuperuser2 --username admin --password Password123 --noinput --email '[email protected]'"
docker-compose up # or 'docker-compose up -d' if you don't want to see the logs in the console.

이 후 브라우저에서 http://localhost:8000/manati_project/manati_ui/new를 열면 됩니다.

DB 백업

root@kitploit:~
pg_dump -U manati_db_user -W -F p manati_db > backup.sql # plain text

DB 복원

root@kitploit:~
psql manati_db -f backup.sql -U manati_db_user

지원 브라우저

라이선스

GPLv3 라이선스 (GPLv3). 자세한 내용은 docs/LICENSE 파일을 참조하세요.

Copyright (c) 2016-2018 Stratosphere Laboratory

도구 다운로드

~/.cache 폴더의 권한에 문제가 있을 수 있습니다. 다음 명령을 실행하면 문제가 해결됩니다:

root@kitploit:~
    sudo chmod 777 ~/.cache

Amazon AWS EC2에 배포할 때 메모리 오류가 발생하면 다음을 시도해 보세요:

root@kitploit:~
    pip install -r requirements/local.txt --no-cache-dir
    
  • PostgreSQL 시작
  • root@kitploit:~
        sudo /etc/init.d/postgresql start
    

    데이터베이스 구성

  • root로: (데이터베이스 설치 후 postgres 사용자가 있어야 함)
  • root@kitploit:~
        su - postgres
         
    
  • 데이터베이스 생성:
  • root@kitploit:~
        psql
    
        create user manati_db_user with password 'password';
    
        create database manati_db;
    
        grant all privileges on database manati_db to manati_db_user;
    
        alter role manati_db_user createrole createdb;
        
        CTRL-D (to output the postgres db shell)
        
    

    선택 사항

    postgres 사용자의 기본 비밀번호를 변경하려면 (원하는 경우 동일한 비밀번호를 사용할 수 있음), pgAdmin3-4를 postgres 클라이언트로 사용하려는 경우 특히 좋은 방법입니다. "sudo - postgres"를 종료하지 마세요.

    root@kitploit:~
        psql
        
        \password;
    
        CTRL-D (to output the postgres db shell)
    

    데이터베이스가 성공적으로 생성되었는지 확인

  • postgres 사용자로
  • root@kitploit:~
        psql -h localhost -d manati_db -U manati_db_user
    
        (and put the password)
    

    비밀번호를 입력하면 postgres에 로그인되어야 합니다.

  • redis-server 설치
  • root@kitploit:~
        sudo apt-get install redis-server
        
    

    선택 사항

    Redis를 구성하려면. 예를 들어, 비밀번호를 변경하려면 다음과 같이 할 수 있습니다:

    root@kitploit:~
        sudo vi /etc/redis/redis.conf
        
    

    requirepass 줄을 찾아 그 옆에 원하는 비밀번호를 작성합니다.

    root@kitploit:~
        requirepass passwodUser
    

    프로젝트 루트에 있는 .env 파일의 환경 변수 REDIS_PASSWORD를 업데이트해야 합니다.

  • 마이그레이션 파일 실행
  • root@kitploit:~
        python ./manage.py makemigrations guardian
        python ./manage.py migrate
        
    
  • 외부 모듈 등록. 외부 모듈을 추가하거나 제거할 때마다 이 명령을 실행해야 합니다.
  • root@kitploit:~
         python ./manage.py check_external_modules
    
  • redis_worker.sh 파일 실행 (백그라운드 '&' 또는 다른 콘솔에서).
  • root@kitploit:~
        ./utility/redis_worker.sh
        
    
  • 필요한 경우 웹 시스템 로그인을 위한 슈퍼 유저 생성
  • root@kitploit:~
        python manage.py createsuperuser
    

    실행 방법

    서버를 root로 실행하는 것은 권장되지 않지만, 1024 미만의 포트 번호는 root만 열 수 있으므로 어떤 사용자를 사용할지는 사용자에게 달려 있습니다. 기본적으로 포트 8000을 열므로 root로 실행할 수 있습니다:

    root@kitploit:~
    python ./manage.py runserver
    

    이 후 브라우저에서 http://localhost:8000/manati_project/manati_ui를 열면 됩니다.

    네트워크에서 서버를 열려면 다음과 같이 할 수 있습니다:

    root@kitploit:~
    python ./manage.py runserver <ip-address>:8000
    
    IE / Edge
    IE / Edge
    Firefox
    Firefox
    Chrome
    Chrome
    Safari
    Safari
    Opera
    Opera
    Vivaldi
    Vivaldi
    N/A55+60+N/AN/AN/A