π¦Machine Learning Security Evasion Competition
This blogpost contains the process and solution which got me 2nd place in the ML Security Evasion Competition sponsored by Adversa AI, CUJO AI, and Robust Intelligence.
The Phishing Challenge
Testing Around
Improved Submission
<body>
<script>
var iframe = document.createElement("iframe");
iframe.id = "application";
iframe.src="about:blank";
iframe.onload = function() {
var domdoc = iframe.contentDocument || iframe.contentWindow.document;
domdoc.head.innerHTML = "";
domdoc.body.innerHTML = '';
}
document.body.appendChild(iframe);
</script>
</body>Pixel Perfection
Adding Noise
Beating the Models with a Genetic Algorithm
Last updated