I am thrilled to announce that I will be presenting @BlackHatEvents
"Do You Speak My Language? Make Static Analysis Engines Understand Each Other"
https://t.co/709XlQpoCZ
Using static analysis to find security bugs cross-language and cross-repo
#BHUSA
Mariana Trench is an open source static analyzer written to detect and prevent security issues in #Android and #Java applications. It can review large codebases, provide feedback to engineers, and detect bugs before they are introduced into a codebase. https://t.co/R0F3iFSfOR
Hey @lenovoUS, please follow the CAN-SPAM Act and stop sending me marking emails after I unsubscribed from it more than a month ago. This is becoming infuriating.
The deadline for submitting your paper at the 12th NASA Formal Methods Symposium is approaching. Do not miss the chance to contribute your work. https://t.co/evbVfo5ifw #NFM2020
I'm publishing some 🔥 research today, a major design flaw in Windows that's existed for almost *two decades*. I wrote a blog post on the story of the discovery all the way through to exploitation.
https://t.co/1DFW2VGQRb
rather than do
if (condition){
dothis();
} esle {
exitGracefully()
}
do this instead
if (!condition){
exitGracefully()
return;
}
doThis()
Benefits
- easier to understand.
- less braces to mess up
- less nesting of blocks
I never thought I would experience a XSS on Google Search. But @kinugawamasato blew my mind!
This is a video going over the difficulties of sanitizing HTML in JavaScript.
https://t.co/T61VJJEuDE
It's finally out! A detailed explanation on how I could've performed a XS-Search attack on Google's bug tracker to find out vulnerable source code
https://t.co/QpgjGr8yNo #BugBounty@GoogleVRP
This projet defeat ReCaptcha with 91% accuracy 🤩. How? You might ask. They ask for the audio challenge, dl the mp3, forward it to Google Speech2Text API and submit the answer back... and it works 🤦🏻♂️ https://t.co/VRIs5L8zSM
There have been a lot of interesting comments on reddit:
on r/c_programming: https://t.co/yocNEjAVaq
on r/programming: https://t.co/gLXm5GACCV
on r/cpp: https://t.co/73AwoiueMX
on r/rust: https://t.co/saTN6JvFCs