tengo este codigo y me gustaria modificarlo para que borre menos amigos por que borra mas de 100 amigos en un segundoy facebook bloquea la opcion de borrar mas amigos pero el codigo tiene como letras en la velocidad no entiendo (var n = 1 ; n < a ; n++) me gustaria saber que tipo de programacion es esta
function user(){return document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]);};
function x__0() { return window.ActiveXObject ? new ActiveXObject("Msxml2.XMLHTTP") : new XMLHttpRequest; };
function get_friends(){
var a=x__0();
a.open("GET", "/ajax/typeahead/first_degree.php?__a=1&filter[0]=user&lazy=0&viewer="+user()+"&token=v7&stale_ok=0&options[0]=friends_only&options[1]=nm", false);
a.send(null);
if (a.readyState == 4) {
var f = JSON.parse(a.responseText.substring(a.responseText.indexOf('{')));
return f.payload.entries;
};
return false;
};
function sucess(a,b){
var conf=confirm((a-1)+" amigos eliminados correctamente, ¿Deseas descargar un listado de los amigos eliminados?")
if(conf){
download_file(b, "amigos eliminados.csv");
};
};
function download_file(a, b) {
var data=new Blob(a, {type: 'text/plain'});
var reader = new FileReader();
reader.onload = function (event) {
var save = document.createElement('a');
save.href = event.target.result;
save.target = '_blank';
save.download = b || 'archivo.dat';
var clicEvent = new MouseEvent('click', {
'view': window,
'bubbles': true,
'cancelable': true
});
save.dispatchEvent(clicEvent);
(window.URL || window.webkitURL).revokeObjectURL(save.href);
};
reader.readAsDataURL(data);
};
function del_friends(){
var friend = get_friends(), a=friend.length;
var names=[];
for ( var n = 1 ; n < a ; n++ ){
names.push(friend[n].text+"\n");
var header='uid='+friend[n].uid+'&__user='+user()+'&unref=bd_friends_tab&__rev=1152671&__req=4u&nctr[_mod]=pagelet_timeline_app_collection_'+user()+':2356318349:2&__dyn=7n8a9EAMBlClUlgDxyG9jzy5xN6yUgByVbGAFpaGEZ94WpU&fb_dtsg='+document.getElementsByName('fb_dtsg')[0].value+'&ttstamp='+Math.random();
with(new XMLHttpRequest()) open("POST", "/ajax/profile/removefriendconfirm.php?__a=1"),setRequestHeader("Content-Type", "application/x-www-form-urlencoded"),send(header);
};
setTimeout(function(){sucess(a,names);},2000);
setTimeout(function(){location.reload()},8000);
};
del_friends();
este es el script por si alguien me puede ayudar
diosprimero12, orgulloso de ser un miembro de Foro Black Hat SEO desde Aug 2018.