![]() |
|
How to expose your Facebook stalkers! :D - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: How to expose your Facebook stalkers! :D (/Thread-How-to-expose-your-Facebook-stalkers-D) |
RE: How to expose your Facebook stalkers! :D - Spirit - 04-12-2014 (04-12-2014, 02:42 PM)zaki.cr7 Wrote: works perfectly thx for sharing :Thumbs-Up: Please do not grave dig old threads. Also, this trick isn't legit. It just shows the friends who you chat the most. (correct me if I'm wrong) RE: How to expose your Facebook stalkers! :D - alok9shm - 04-12-2014 Yea! This is nothing but ids of the buddies you interact with, the most on facebook. In the online buddy list, you will always see a few buddies you chat frequently, even if they're offline. RE: How to expose your Facebook stalkers! :D - sarusian - 04-27-2014 A lot of people obsessed with their exes. LOL. RE: How to expose your Facebook stalkers! :D - sarusian - 04-27-2014 A lot of people obsessed with their exes. LOL. RE: How to expose your Facebook stalkers! :D - Yung Lean - 04-30-2014 This is pretty unclear. I checked every ID and in the beginning there was a people that I talk very often and then people I have never seen or been talking to. Quite Weird. Anyway dunno is this your own found tutorial or not but I found this on http://www.wikihow.com/See-Who-Views-Your-Facebook-Profile-the-Most and its same tutorial as yours. RE: How to expose your Facebook stalkers! :D - DestructoSphere - 06-10-2014 I noticed the first entries were mainly people i chat with a lot but i saw people that were not on my chat list and i also had never chatted with these people. The line IntialFriendsChatList really says it all. BTW has anyone finished an app or script to display the output as a linkable URL? RE: How to expose your Facebook stalkers! :D - coolshame - 06-10-2014 (12-24-2012, 03:55 PM)Gandolf Wrote: This just shows people on your chat list. RE: How to expose your Facebook stalkers! :D - DestructoSphere - 06-10-2014 then why does it show people not on my chat list? i have checked this. RE: How to expose your Facebook stalkers! :D - Isaac - 06-10-2014 This "exploit" only shows the people on your Chat list in decending order. Not only that, but in step 3, when we input the search word, which is "InitialChatFriendsList". I think it's pretty obvious that this clearly states "Chat Friend List" In other words, this "exploit" won't reveal any stalkers you might have. RE: How to expose your Facebook stalkers! :D - Mayh3m - 06-10-2014 VB.NET: Source code to make something to get all the IDs and link them from the original page source. Probably not the best of doing it. but, it was a simple way of doing it. Spoiler:Code: Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a As String = RichTextBox1.Text
Dim noQuotes As String = RichTextBox1.Text.Replace(ControlChars.Quote, "//\\") 'Gets rid of all the quotes for easy code
Dim aA() As String = Split(noQuotes, "//\\InitialChatFriendsList//\\,[],{//\\list//\\:[") 'Used to isolate IDs
Dim aAA() As String = Split(aA(1), "//\\]},26],[//\\BlackbirdUpsellConfig//\\,") 'Used to isolate IDs
Dim reformatStr As String = aAA(0).Replace("//\\", "") 'Removes the //\\
Dim IDs() As String = Split(reformatStr, ",") 'Seperates all the IDs from into indecies for array
'ListBox1.Sorted = True 'Sorts them for easy use.
For i = 0 To IDs.Length - 1 'Loops through the IDs
Dim tempStr As String = IDs(i).Substring(0, IDs(i).Length - 2) 'Removes the useless characters after the ID
If Not (ListBox1.Items.Contains(tempStr)) Then 'Checks for duplicates
ListBox1.Items.Add(tempStr) 'Puts the IDs in a listbox
End If
Next
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
WebBrowser1.Navigate("http://www.facebook.com/" & ListBox1.Items.Item(ListBox1.SelectedIndex))
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class |