Skip to content

Commit

Permalink
Merge pull request #5 from Nhoya/develop
Browse files Browse the repository at this point in the history
v0.4a
  • Loading branch information
Nhoya authored Jan 14, 2018
2 parents b42f7f0 + 4ac4ec1 commit 91f9912
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ install:
- go get github.com/nhoya/goPwned
- go get github.com/jessevdk/go-flags
- go get gopkg.in/src-d/go-git.v4
- go get github.com/jaytaylor/html2text
- go build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ OSINT framework in Go

**current version**: 0.4

**develop version**: 0.4
**develop version**: 0.4a

you probably want to take a look at the develop branch for more updates.

Expand Down
2 changes: 1 addition & 1 deletion gOSINT.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/jessevdk/go-flags"
)

const ver = "v0.4"
const ver = "v0.4a"

var opts struct {
Module string `short:"m" long:"module" description:"Specify module" choice:"pgp" choice:"pwnd" choice:"git" choice:"plainSearch" choice:"telegram"`
Expand Down
4 changes: 4 additions & 0 deletions telegram.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ func getTelegramGroupHistory(group string, grace int) {
body := retriveRequestBody("https://t.me/" + group + "/" + messageid + "?embed=1")
message := getTelegramMessage(body)
if message != "" {
for j := 0; j < graceCounter; j++ {
fmt.Println("[MESSAGE REMOVED]")
}
graceCounter = 0
username, nickname := getTelegramUsername(body)
date, time := getTelegramMessageDateTime(body)
if username == "" {
Expand Down

0 comments on commit 91f9912

Please sign in to comment.