owasp-social-osint-agent
AI-powered OSINT framework for multi-platform social media intelligence gathering using OpenAI-compatible APIs. Features vision analysis, network mapping, and dual web/CLI interfaces.
파일 탐색기
최종 버전 다운로드 (.zip)- ci.yml
- api.md
- demo.html
- __init__.py
- base_fetcher.py
- bluesky.py
- github.py
- hackernews.py
- mastodon.py
- reddit.py
- twitter.py
- image_analysis.prompt
- system_analysis.prompt
- __init__.py
- conftest.py
- test_analyzer.py
- test_cache.py
- test_cli_handler.py
- test_cli_save_output.py
- test_github.py
- test_hackernews.py
- test_image_processor.py
- test_llm.py
- test_llm_injection.py
- test_llm_run_analysis.py
- test_llm_sanitization.py
- test_network_contacts.py
- test_process_stdin_output.py
- test_prompt_integrity.py
- test_reddit.py
- test_save_output_headless.py
- test_session_manager.py
- test_stdin.py
- test_twitter.py
- test_utils.py
- test_web_server.py
- __init__.py
- analyzer.py
- api_models.py
- cache.py
- cli_handler.py
- client_manager.py
- exceptions.py
- image_processor.py
- llm.py
- main.py
- network_extractor.py
- session_manager.py
- utils.py
- web_server.py
- styles.css
- app.js
- favicon.ico
- index.html
- .dockerignore
- .gitignore
- docker-compose.yml
- Dockerfile.agent
- Dockerfile.web
- env.example
- input.json.example
- LICENSE.md
- pytest.ini
- README.md
- requirements-dev.txt
- requirements-web.txt
- requirements.txt
# 설치 가이드
git clone https://github.com/bm-github/owasp-social-osint-agent
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd owasp-social-osint-agent
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker compose up -d web
정의된 모든 컨테이너(서버, DB 등)를 한 번에 빌드하고 백그라운드에서 실행합니다.
│ docker compose │
compose 설정 파일에 정의된 서비스들을 대상으로 명령을 실행합니다.
docker compose --profile cli run --rm -it agent
compose 설정 파일에 정의된 서비스들을 대상으로 명령을 실행합니다.
docker compose --profile cli run --rm -it agent --offline
compose 설정 파일에 정의된 서비스들을 대상으로 명령을 실행합니다.
docker compose --profile cli run --rm -it agent --log-level DEBUG
compose 설정 파일에 정의된 서비스들을 대상으로 명령을 실행합니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Python
쉬움│ │ FastAPI + uvicorn │ │ CLI (python -m …) │ │
파이썬 스크립트(또는 모듈)를 실행합니다.
python -m venv .venv
파이썬 스크립트(또는 모듈)를 실행합니다.
pip install -r requirements.txt -r requirements-web.txt
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
pip install -r requirements-dev.txt
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
python -m socialosintagent.main
파이썬 스크립트(또는 모듈)를 실행합니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
