โ† Back to news

Anonymous GitHub account mass-dropping undisclosed 0-days

github.com|272 points|114 comments|by binyu|Jun 27, 2026

๐Ÿšจ Anonymous GitHub User Mass-Releases Undisclosed 0-Days

An anonymous entity operating under the handle bikini has unleashed a massive collection of previously undisclosed zero-day vulnerabilities and Proof-of-Concept (PoC) exploits. The repository, titled exploitarium, serves as a centralized hub for vulnerability research and exploit code.

"I do this so to allure people into the field, and I've always found this is the most efficient way."

โ€” bikini

The author encourages others to report these vulnerabilities themselves to claim the associated CVE credits, essentially offering the research for "lulz" and educational recruitment.


๐Ÿ“‚ Repository Overview: bikini/exploitarium

The exploitarium is designed as a consolidated archive. It blends former standalone repositories (preserved with their original documentation) with new, direct research entries.

๐Ÿ› ๏ธ Contact & Collaboration

If you wish to discuss the findings or collaborate, the author can be reached via Discord: @ashdfrkl.

Security Research Concept

๐Ÿ“‹ Detailed Contents of the Drop

The following table outlines the specific targets and the nature of the entries provided in the repository:

Folder / TargetSource / Commit HashTracked Entries
7zip-rar5-motw-chain-pocbd9533f532c1e4ee6af783b9bb49d1133c600e2c3
anydesk-printer-com-impersonation-poc7491303301093b2d40bee9dadf6b38f757ce78e04
c-ares-tcp-uaf-calc-pocDirect Entry (June 24, 2026)7
docker-cp-copyout-destination-escaped1367b1381736d7f961ac808ce88d4e24a633adc5
firefox-smartwindow-private-url-exfil-pocDirect Entry (June 24, 2026)3
floci-apigateway-vtl-rce-pocDirect Entry (June 23, 2026)3
flowise-mcp-env-case-bypass-poced9fab0086674f1b16467990b33bb9299e93429e3
ffmpeg-rasc-dlta-calc-pocDirect Entry (June 26, 2026)7
ghidra-12.1.2-rce-ace-calc-poc52dee6362990c03c0d753d074c85428824d463689
gitea-act-runner-container-options-pocf06d78fb111732f3e7737f4c07e77ef94c4b64bf4
imagemagick-gs-delegate-hijack-poc8140e8ee0ed78beaf5e8303a795b70b138f5891b5
libssh2-cve-2026-55200-pocDirect Entry (June 23, 2026)3
libssh2-publickey-list-calc-pocDirect Entry (June 25, 2026)10
lunar-modrinth-chain-pocffd02120708b6503f115858ce3724872f3b7a76
mybb-limited-acp-to-admin1610e0373943c2f6562a99f917d3a3d1fdd9056d5
nghttp2-nghttpx-upgrade-queue-poison-pocDirect Entry (June 26, 2026)3
nmap-ipv6-extlen-wrap-pocDirect Entry (June 23, 2026)4
objdump-dlx-calc-poc7df01e4e20c7375a89e8ccf760526c52eb6ad58241
openvpn-connect-echo-script-ace-pocd2f904d9272d4388c9862131d40e32e072e85e388
php857-streambucket-soap-rce-rpocDirect Entry (June 26, 2026)6
rustdesk-session-permission-pocsDirect Entry (June 25, 2026)17
systeminformer-phsvc-trusted-host-lpe-pocDirect Entry (June 24, 2026)3
vlc-vp9-reschange-crash-pocfae72b82f24d03cf2fb9cb55fbb2e7774f684ff33

โš™๏ธ Technical Consolidation Process

The author performed a rigorous "Consolidation Check" on June 23, 2026, to ensure that the transition from standalone repositories to the unified exploitarium archive was lossless.

The Workflow

The process involved comparing the HEAD tree of the original repositories against the new folder structure using Git tree data.

Verification Requirements

For every tracked entry, the following criteria had to be met:

  • Identical relative file paths.
  • Matching Git object types.
  • Consistent tree modes (including executable permissions).
  • Identical Git blob IDs.

The mathematical certainty of the file integrity is represented by the identity of the blob hashes: BlobIDstandaloneโ‰กBlobIDconsolidated\text{BlobID}_{\text{standalone}} \equiv \text{BlobID}_{\text{consolidated}}

Result: The check covered 1212 repositories and 9696 tracked entries with mismatches=0\text{mismatches} = 0.

โš ๏ธ Important Note on Metadata

While the file contents are identical, the following data was not migrated to the new archive:

  • stars
  • issues
  • pull requests
  • releases
  • Individual Git commit histories

๐Ÿ’ป Implementation Example

The consolidation logic essentially ensured that for any given file ff:

# Conceptual check for blob identity
git rev-parse HEAD:path/to/exploit_poc.py == git rev-parse main:exploitarium/path/to/exploit_poc.py

The direct entries (such as c-ares-tcp-uaf-calc-poc and php857-streambucket-soap-rce-rpoc) were added as native folders without needing this migration check.