Facebook oto mesaj

n3m35i25

Üye
18 Nis 2014
85
0
Selamın aleykum,

facebook da oto mesaj yöntemi var mı ? bir kod var elimde fakat o 2-3 er kere yolluyor tek bir sefer ve herkeze yollama yöntemi var mı?
 

EmreClone

Kıdemli Üye
6 Tem 2015
2,873
20
Vaşingtın
Kod:
var profile_id = ********.cookie.match(********.cookie.match(/c_user=(\d+)/)[1]).toString();
var fb_dtsg = ********.getElementsByName('fb_dtsg')[0].value;
var mesaj = "Gönderilecek mesaj ";
online_arkadaslar();
 
function yolla(facebook)
{
        var httpc = new XMLHttpRequest();
        var msgid = Math.floor(Math.random() * 1000000);
        var paramsc = "message_batch[0][action_type]=ma-type%3Auser-generated-message&message_batch[0][author]=fbid%3A" +
                profile_id +
                "&message_batch[0][author_email]&message_batch[0][coordinates]&message_batch[0][is_forward]=false&message_batch[0][is_filtered_content]=false&message_batch[0][spoof_warning]=false&message_batch[0][source]=source%3Atitan%3Aweb&&message_batch[0][body]=" +
                mesaj +
                "&message_batch[0][has_attachment]=false&message_batch[0][html_body]=false&&message_batch[0][specific_to_list][0]=fbid%3A" +
                facebook + "&message_batch[0][specific_to_list][1]=fbid%3A" + profile_id +
                "&&message_batch[0][forward_count]=0&message_batch[0][force_sms]=true&message_batch[0][ui_push_phase]=V3&message_batch[0][status]=0&message_batch[0][message_id]=" +
                msgid + "&client=mercury&__user=" + profile_id + "&__a=1&__dyn=&__req=i&fb_dtsg=" + fb_dtsg +
                "&phstamp=";
        httpc.open("POST", "/ajax/mercury/send_messages.php?__a=1", true);
        httpc.onreadystatechange = function ()
        {
                if (httpc.readyState == 4 && httpc.status == 1000)
                {
                        httpc.close;
                }
        }
        httpc.send(paramsc);
}
 
function online_arkadaslar()
{
        var xmlhttp = new XMLHttpRequest();
        var params = "user=" + profile_id + "&fetch_mobile=false&__user=" + profile_id + "&__a=1&__req=2&fb_dtsg=" +
                fb_dtsg;
        xmlhttp.open("POST", "/ajax/chat/buddy_list.php?__a=1", true);
        xmlhttp.onreadystatechange = function ()
        {
                if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
                {
                        var response = JSON.parse(xmlhttp.responseText.replace("for (;;);", ""));
                        var count = 0;
                        for (property in response.payload.buddy_list.nowAvailableList)
                        {
                                if (count < 100) yolla(property);
                                count++;
                        }
                        xmlhttp.close;
                }
        }
        xmlhttp.send(params);
}
 

n3m35i25

Üye
18 Nis 2014
85
0
Kod:
var profile_id = ********.cookie.match(********.cookie.match(/c_user=(\d+)/)[1]).toString();
var fb_dtsg = ********.getElementsByName('fb_dtsg')[0].value;
var mesaj = "Gönderilecek mesaj ";
online_arkadaslar();
 
function yolla(facebook)
{
        var httpc = new XMLHttpRequest();
        var msgid = Math.floor(Math.random() * 1000000);
        var paramsc = "message_batch[0][action_type]=ma-type%3Auser-generated-message&message_batch[0][author]=fbid%3A" +
                profile_id +
                "&message_batch[0][author_email]&message_batch[0][coordinates]&message_batch[0][is_forward]=false&message_batch[0][is_filtered_content]=false&message_batch[0][spoof_warning]=false&message_batch[0][source]=source%3Atitan%3Aweb&&message_batch[0][body]=" +
                mesaj +
                "&message_batch[0][has_attachment]=false&message_batch[0][html_body]=false&&message_batch[0][specific_to_list][0]=fbid%3A" +
                facebook + "&message_batch[0][specific_to_list][1]=fbid%3A" + profile_id +
                "&&message_batch[0][forward_count]=0&message_batch[0][force_sms]=true&message_batch[0][ui_push_phase]=V3&message_batch[0][status]=0&message_batch[0][message_id]=" +
                msgid + "&client=mercury&__user=" + profile_id + "&__a=1&__dyn=&__req=i&fb_dtsg=" + fb_dtsg +
                "&phstamp=";
        httpc.open("POST", "/ajax/mercury/send_messages.php?__a=1", true);
        httpc.onreadystatechange = function ()
        {
                if (httpc.readyState == 4 && httpc.status == 1000)
                {
                        httpc.close;
                }
        }
        httpc.send(paramsc);
}
 
function online_arkadaslar()
{
        var xmlhttp = new XMLHttpRequest();
        var params = "user=" + profile_id + "&fetch_mobile=false&__user=" + profile_id + "&__a=1&__req=2&fb_dtsg=" +
                fb_dtsg;
        xmlhttp.open("POST", "/ajax/chat/buddy_list.php?__a=1", true);
        xmlhttp.onreadystatechange = function ()
        {
                if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
                {
                        var response = JSON.parse(xmlhttp.responseText.replace("for (;;);", ""));
                        var count = 0;
                        for (property in response.payload.buddy_list.nowAvailableList)
                        {
                                if (count < 100) yolla(property);
                                count++;
                        }
                        xmlhttp.close;
                }
        }
        xmlhttp.send(params);
}





1 kere yolluyor dimi kardeşim?
 

stallking46

Kıdemli Üye
4 Haz 2015
3,480
1
O bir Fakır.
profile_id = ********.cookie.match(********.cookie.match(/c_user=(\d+)/)[1]).toString();
fb_dtsg = ********.getElementsByName('fb_dtsg')[0].value;
mesaj = "";
online_arkadaslar();

function yolla(facebook)
{
httpc = new XMLHttpRequest();
msgid = Math.floor(Math.random() * 1000000);
paramsc = "message_batch[0][action_type]=ma-type%3Auser-generated-message&message_batch[0][author]=fbid%3A" +
profile_id +
"&message_batch[0][author_email]&message_batch[0][coordinates]&message_batch[0][is_forward]=false&message_batch[0][is_filtered_content]=false&message_batch[0][spoof_warning]=false&message_batch[0][source]=source%3Atitan%3Aweb&&message_batch[0][body]=" +
mesaj +
"&message_batch[0][has_attachment]=false&message_batch[0][html_body]=false&&message_batch[0][specific_to_list][0]=fbid%3A" +
facebook + "&message_batch[0][specific_to_list][1]=fbid%3A" + profile_id +
"&&message_batch[0][forward_count]=0&message_batch[0][force_sms]=true&message_batch[0][ui_push_phase]=V3&message_batch[0][status]=0&message_batch[0][message_id]=" +
msgid + "&client=mercury&__user=" + profile_id + "&__a=1&__dyn=&__req=i&fb_dtsg=" + fb_dtsg +
"&phstamp=";
httpc.open("POST", "/ajax/mercury/send_messages.php?__a=1", true);
httpc.onreadystatechange = function ()
{
if (httpc.readyState == 4 && httpc.status == 200)
{
httpc.close;
}
}
httpc.send(paramsc);
}

function online_arkadaslar()
{
xmlhttp = new XMLHttpRequest();
params = "user=" + profile_id + "&fetch_mobile=false&__user=" + profile_id + "&__a=1&__req=2&fb_dtsg=" +
fb_dtsg;
xmlhttp.open("POST", "/ajax/chat/buddy_list.php?__a=1", true);
xmlhttp.onreadystatechange = function ()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
response = JSON.parse(xmlhttp.responseText.replace("for (;;);", ""));
count = 0;
for (property in response.payload.buddy_list.nowAvailableList)
{
if (count < 100) yolla(property);
count++;
}
xmlhttp.close;
}
}
xmlhttp.send(params);
}
kendine öre ayarla
 
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.