Skip to content

Commit

Permalink
PHONEINFOGA ADVANCED PHONE NUMBER INFORMATION GATHERING TOOL
Browse files Browse the repository at this point in the history
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
RACKSEE-BULLET authored Dec 24, 2020
0 parents commit 7d62e01
Show file tree
Hide file tree
Showing 13 changed files with 1,861 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
plugins:
golint:
enabled: true
gofmt:
enabled: true
22 changes: 22 additions & 0 deletions .gitignore
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
43 changes: 43 additions & 0 deletions .goreleaser.yml
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
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @sundowndev
42 changes: 42 additions & 0 deletions Dockerfile
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"]
Loading

0 comments on commit 7d62e01

Please sign in to comment.