
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
Wreck is a tic-tac-toe analysis engine which is capable of perfect play, i.e, it can win any winnable, and defend any defendable position. A full game played against Wreck will either end in a draw or a win for Wreck.
git clone https://github.com/raklaptudirm/wreck.git
cd wreck
go build ./cmd/wreck
./wreck # put this executable in your path
wreck [position]
wreck :: help # help regarding commands and the repl
wreck :: load <position> # load this position into the engine
wreck :: play <move> # play the provided move on the current position
wreck :: eval # evaluate current position
wreck :: exit # exit from program
Wreck evaluates position as a number. An evaluation of ±00 means the
position is equal, and perfect play will result in a draw. An evaluation
starting with a +, like +Wn means means player X will win in n
steps, and an evaluation starting with - means player O will win in n
steps.
A tic tac toe position is represented by a 9-character long position string
which is composed of x, o, and . symbols. Each of the nine characters
represents one of the cells on a tic tac toe board, and the symbols represent
a mark by player X, a mark by player O, and an empty cell respectively.
Any tic-tac-toe position:
1 2 3 x o .
4 5 6 x . .
7 8 9 o . .
Is represented in the following format:
123456789
xo.x..o..
A move on the tic tac toe board which is at a particular position is represented by a number from 1-9, each of which represent a particular cell on the board.
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.