GitLab Suspends Windows Exploit Researcher Nightmare-Eclipse After GitHub Ban
Source: https://t.co/u10UTvvYyq
The anonymous researcher known as Nightmare-Eclipse has been blocked from two major code-hosting platforms in less than a week, as their disruptive public zero-day campaign against Microsoft draws serious real-world consequences.
GitLab moved to suspend the account of security researcher Nightmare-Eclipse on May 26, 2026, just days after GitHub, owned by Microsoft, terminated the researcher's account around May 23.
The GitLab page had served as a rapid mirror of the six Windows Defender exploit tools previously hosted on GitHub, extending the researcher's reach even after the initial ban.
#cybersecuritynews
FREE Miner $EQM on SOL
Total supply: 21,000,000 EQM
- Premine: 2M1 EQM
- 1 per miner 25 EQM
- Supply: 84K
Miner: https://t.co/XfpbNdOkeJ
First 30 minutes will be higher tax (Anti bot)
- Create a new wallet
- Save key -> Miner
- Prepare SOL to make fee confirm txs: 0.1 sol
- 0.005 sol ~ 30 per mine
Miner are very harmful to your computer, so always consider this before using them, Im not responsible.
I didn't receive anything from the project, whether you mint it or not is up to you.
Create a new wallet to mint!
Don't mint too much, just $10 - $20
DYORπ«‘
finallllyyy! After a lot of digging and patching finally I was able to compile `π³πΌππ»π±πΏπ-πΏπ` natively on termux
making native smart contract development much easier!!
π¦ checklist:
forge β
anvil β
chisel β
cast β
all the binaries work properly β³οΈ
How was it possible?
The compilation failed many times at first due to logical flaws & commits in Rust crate π¦
Two main crates that caused the errors:
`cc-rs` this crate is used to compile c/c++ program for rust π¦. It's core environment variable handler aggressively applies all env CFLAGS flags aggressively without safety check and instead of adding them manually.
`aws-lc-sys` crate provides Rust bindings for the AWS-LC C/C++ a very commonly used rust crate in cryptographic projects has some critical errors when cross compiling.
Its code has the same logical flaws as cc-rs.
`aws-lc-sys` handles env variables manually and mixes HOST env CFLAGS LDFLAGS together with TARGET architecture, which causes compiler error architecture mismatch.
It tries to compile for x86_64_unknown_linux with CFLAG `-march=armv7-a` which is a arm CPU flag thus leading to compilation failure.
Same issue caused by two different crates π₯