#1
Hello, today i found an email service. Im trying to generate emails , there is no fucking security
I managed to get the ajax that do all the thing :
Show ContentSpoiler:

I tried to directly make post request to the url  like this : https://i.imgur.com/fv2fIzc.png
But it looks its not working !
Also, if i try to make in a console
 
Code:
 
    $.ajax({
      method : "POST",
      dataType : "json",
      url : "/index/new-email/",
      data : {
        emailInput : "mohamad",
        format : "json"
      }
    }).done(function(a) {
      window.location.reload();
    }).fail(function(a) {
      console.log("There was a problem while communicating with the server")
    });
It is not working! and require me to inject first the ajax script first, so i guess this ajax script load something that create a session maybe ? i don't really know
What i need :
-Generate an email from the part of the code i managed to find
-That's it

Also i think you can send mail using this ajax so maybe someone could exploit this for personnal uses ;) !
I hope i get helped soon :)