hetty
보안 연구를 위한 HTTP 툴킷.
파일 탐색기
최종 버전 다운로드 (.zip)- bug_report.md
- config.yml
- feature_request.md
- build-test.yml
- lint.yml
- FUNDING.yml
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon.png
- favicon-16x16.png
- favicon-32x32.png
- favicon.ico
- site.webmanifest
- style.css
- EditRequest.tsx
- Intercept.tsx
- Requests.tsx
- cancelRequest.graphql
- cancelResponse.graphql
- interceptedRequest.graphql
- modifyRequest.graphql
- modifyResponse.graphql
- NewProject.tsx
- ProjectList.tsx
- activeProject.graphql
- closeProject.graphql
- createProject.graphql
- deleteProject.graphql
- openProject.graphql
- projects.graphql
- useOpenProjectMutation.ts
- Actions.tsx
- LogDetail.tsx
- RequestDetail.tsx
- RequestLogs.tsx
- Search.tsx
- clearHttpRequestLog.graphql
- httpRequestLog.graphql
- httpRequestLogFilter.graphql
- httpRequestLogs.graphql
- setHttpRequestLogFilter.graphql
- index.ts
- AddRule.tsx
- RuleListItem.tsx
- Rules.tsx
- scope.graphql
- setScope.graphql
- EditRequest.tsx
- History.tsx
- Sender.tsx
- createOrUpdateRequest.graphql
- createSenderRequestFromRequestLog.graphql
- senderRequest.graphql
- senderRequests.graphql
- sendRequest.graphql
- index.ts
- Settings.tsx
- updateInterceptSettings.graphql
- Layout.tsx
- ConfirmationDialog.tsx
- Editor.tsx
- HttpStatusIcon.tsx
- KeyValuePair.tsx
- Link.tsx
- RequestsTable.tsx
- RequestTabs.tsx
- Response.tsx
- ResponseStatus.tsx
- ResponseTabs.tsx
- SplitPane.tsx
- UrlBar.tsx
- useContextMenu.tsx
- generated.tsx
- interceptedRequests.graphql
- omitTypename.ts
- useApollo.ts
- createEmotionCache.ts
- theme.ts
- ActiveProjectContext.tsx
- InterceptedRequestsContext.tsx
- queryParamsFromURL.tsx
- updateKeyPairItem.ts
- updateURLQueryParams.ts
- index.tsx
- index.tsx
- index.tsx
- index.tsx
- index.tsx
- index.tsx
- index.tsx
- _app.tsx
- _document.tsx
- index.tsx
- styles.css
- .eslintrc.json
- .gitignore
- .prettierignore
- .prettierrc.json
- gqlcodegen.yml
- next-env.d.ts
- next.config.js
- package.json
- tsconfig.json
- yarn.lock
- cert.go
- config.go
- hetty.go
- main.go
- generated.go
- http.go
- models.go
- models_gen.go
- resolvers.go
- schema.graphql
- chrome.go
- bolt.go
- logger.go
- proj.go
- proj_test.go
- reqlog.go
- reqlog_test.go
- sender.go
- sender_test.go
- ast.go
- ast_test.go
- http.go
- lexer.go
- lexer_test.go
- parser.go
- parser_test.go
- log.go
- proj.go
- repo.go
- filter.go
- intercept.go
- intercept_test.go
- settings.go
- cert.go
- gzip.go
- modify.go
- net.go
- proxy.go
- repo.go
- reqlog.go
- reqlog_test.go
- search.go
- search_test.go
- scope.go
- repo.go
- search.go
- search_test.go
- sender.go
- sender_test.go
- transport.go
- .dockerignore
- .gitignore
- .golangci.yml
- .goreleaser.yml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- Dockerfile
- go.mod
- go.sum
- gqlgen.yml
- LICENSE
- Makefile
- README.md
- tools.go
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/dstotijn/hetty
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd hetty
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천brew install hettysoft/tap/hetty
Homebrew로 이미 빌드된 패키지를 바로 설치합니다. 소스 빌드가 필요 없습니다.
scoop install hettysoft/hetty
Scoop으로 바로 설치합니다 (Windows).
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Docker
쉬움사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker run -v $HOME/.hetty:/root/.hetty -p 8080:8080 \
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
4. Node.js
쉬움사전 준비물
cd admin
이 프로젝트의 관련 파일이 하위 폴더 안에 있어서, 먼저 그 폴더로 이동합니다.
npm install
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
npm start
개발/실행 서버를 켭니다.
명령어 실행 후 터미널에 나타나는 주소(보통 http://localhost:3000 형태)를 브라우저에서 열어보세요.
5. Go
보통go build ./...
Go 프로그램을 컴파일해 실행 파일을 만듭니다.
go run .
따로 빌드하지 않고 바로 Go 프로그램을 실행합니다.
빌드가 에러 없이 끝나면 성공입니다. go run . 을 썼다면 터미널 출력을 확인하세요.
6. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
