-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PHONEINFOGA ADVANCED PHONE NUMBER INFORMATION GATHERING TOOL
HAI IAM DAYSHEN THE PHONEINFOG PHONE NUMBER GATHER TOOL THIS TOOL USE FOR ADVANCED OSINT HACKING TOOL VISIT-SITE +www.ghosthackers.tk
- Loading branch information
0 parents
commit 7d62e01
Showing
13 changed files
with
1,861 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
plugins: | ||
golint: | ||
enabled: true | ||
gofmt: | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
.vscode/ | ||
|
||
.DS_Store | ||
coverage | ||
coverage.* | ||
.idea | ||
api/assets.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
before: | ||
hooks: | ||
- go generate ./... | ||
- go mod download | ||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
- GO111MODULE=on | ||
binary: phoneinfoga | ||
goos: | ||
- linux | ||
- darwin | ||
- windows | ||
goarch: | ||
- 386 | ||
- amd64 | ||
- arm | ||
- arm64 | ||
ldflags: -s -w -X gopkg.in/sundowndev/phoneinfoga.v2/config.Version={{.Version}} -X gopkg.in/sundowndev/phoneinfoga.v2/config.Commit={{.ShortCommit}} | ||
archives: | ||
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
replacements: | ||
darwin: Darwin | ||
linux: Linux | ||
windows: Windows | ||
386: i386 | ||
amd64: x86_64 | ||
files: | ||
- none* | ||
checksum: | ||
name_template: '{{ .ProjectName }}_checksums.txt' | ||
snapshot: | ||
name_template: "{{ .Tag }}-next" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
- '^chore:' | ||
- '^ci:' | ||
- Merge pull request | ||
- Merge branch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @sundowndev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
FROM node:15.3.0-alpine AS client_builder | ||
|
||
WORKDIR /app | ||
|
||
COPY ./client . | ||
|
||
RUN yarn install --ignore-scripts | ||
|
||
RUN yarn build | ||
|
||
FROM golang:1.15-alpine as go_builder | ||
|
||
LABEL maintainer="Sundowndev" \ | ||
org.label-schema.name="phoneinfoga" \ | ||
org.label-schema.description="Advanced information gathering & OSINT tool for phone numbers." \ | ||
org.label-schema.url="https://github.com/sundowndev/PhoneInfoga" \ | ||
org.label-schema.vcs-url="https://github.com/sundowndev/PhoneInfoga" \ | ||
org.label-schema.vendor="Sundowndev" \ | ||
org.label-schema.schema-version="1.0" | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
RUN apk add git | ||
RUN go get -v -t -d ./... | ||
|
||
COPY --from=client_builder /app/dist ./client/dist | ||
|
||
RUN go generate ./... | ||
|
||
RUN go build -v -ldflags="-s -w -X 'gopkg.in/sundowndev/phoneinfoga.v2/config.Version=$(git describe --abbrev=0 --tags)' -X 'gopkg.in/sundowndev/phoneinfoga.v2/config.Commit=$(git rev-parse --short HEAD)'" -v -o phoneinfoga . | ||
|
||
FROM golang:1.15-alpine | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=go_builder /app/phoneinfoga . | ||
|
||
EXPOSE 5000 | ||
|
||
ENTRYPOINT ["/app/phoneinfoga"] |
Oops, something went wrong.