Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
nomachine
on 01/05/2025, 16:00:21 UTC
Hello everyone, a question from a newbie
How to know that the github scripts around here thats belongs to smart dudes like albert or nomachine or wondering P ....don't have some hidden commands that send the keyfound.txt file back to the script creator when the script find some key
Excuse my nativity  Grin

Test it on easy puzzles and then use firewall  Wink

Quote
#ifdef _WIN32
#   include <windows.h>
#   include <winsock2.h>
#   include <ws2tcpip.h>
#   pragma comment(lib, "ws2_32.lib")
#   define close closesocket
#else
#   include <unistd.h>
#   include <arpa/inet.h>
#   include <sys/socket.h>
#endif



These headers are required when you want to send or receive data over a network. My scripts don't have anything like this because they don't use network communication.

To search for files that contain any of these network-related includes, you can use grep

Code:
grep -rlIwE --include='*.[ch]' --include='*.cpp' 'winsock|tcpip|arpa|socket' .

The problem is when there is no source and it is not possible to grep the code. Wink