This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Does anyone from India had used Loomarnia v1.0 to hack facebook accounts successfully ?
03-29-2014, 01:06 PM
Post: #6
 
If anybody is still searching for some kind codes for Loomarnia v1.0 to hack the fb password or any such tool, below is my reply.
1. This is a fake tool and I will show you why I am saying this.
a. Use a reflector to see the underlying code in the Loomarnia.exe.
b. If you see carefully, there are two forms - form1 and form2. There is one method called show_password() which opens the form2 :
public void show_password()
{
Application.Run(new Form2("welcome1"));
}
and this is the overloaded constructor for form2

public Form2(string password)
{
this.components = null;
this.InitializeComponent();
this.textBoxPW.Text = password;
}
d. So you see, even if you get codes, the password that will be shown to you is "welcome1" because it is a hard coded string and any variable received from some request or manipulation.

2. Now the question is how they are getting the basic information about the user whose url is entered. The answer is very simple,
a. username is already in the url.
b. other information are received by sending some request and manipulating the received responses
e.g: typing http://graph.facebook.com/username in the address bar will give you:
{
"id": "some number",
"name": "Fiull Name",
"first_name": "FirstName",
"last_name": "LastName",
"link": "http://www.facebook.com/username",
"gender": "male",
"locale": "en_US",
"username": "Username"
}
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
[] - Neolance - 03-29-2014, 12:24 PM
[] - Saptagiri - 03-29-2014, 12:34 PM
[] - Daniel - 03-29-2014, 12:45 PM
[] - abraXus - 03-29-2014, 12:56 PM
[] - Brijesh Gupta - 03-29-2014 01:06 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)