Facebook Java script app?

shaggy93

Senior Member
Joined
Dec 23, 2010
Messages
1,030
Reaction score
452
Hello guys any one knows how to make facebook javascript app and can some one give me guide how to make it!!?
 
Most of the public ones have been patched. Setting one up doesn't automatically make you bank. You need start up traffic. And if you don't know how to set it up, chances are you shouldn't be messing with it.
 
i think he need more detailed guidance.not like this.am i right?
 
The JS system is completely patched by fb. If you run any JS, fb logs you out and when you login again you will get a warning message from fb that you have run a suspicious script in address bar bla bla :D
 
it is all closed need to find other ways now bro... move on more fun things to do more money to be made
 
why saying it's patched.... i tried it right now and it worked fine :S
 
I have working JS witch create event and invite all friends post to friends wall and full spam on chat. Thing it's encrypted and i can't decrypt it. If some one trusted here from vip can help me do decrypt it, it would be good :)
 
This is a warning for all you noobs looking for this.


Don't use it if you don't know how to cover your tracks. Why?

You'll get a nice FRESH off the press smelling like lawyer C&D in the mail telling you to stop or face serious anal fisting by Perks in Coie, trust me you don't wanna deal with those pricks :D
 
I have working JS witch create event and invite all friends post to friends wall and full spam on chat. Thing it's encrypted and i can't decrypt it. If some one trusted here from vip can help me do decrypt it, it would be good :)

its probably encoded. not encrypted. the difference is that encoding can be decoded using simple forms, encryption on the other hand uses "keys" to decipher.

are you seeing such as \x68\x74\x74\x70\x3A\x2F\x2F something like that? javascripts can be encoded to hex in order to hide a specific snip of the code. although the browser itself can interpret it which makes the code run perfectly even if it is encoded. sometimes, we refer to it as a "shellcode" since its in the form of hex notation.

one way of decoding the code above is to strip off the escapes, "\x" and convert the values from hex to ascii 687474703A2F2F = http

if you want to decode the msg in realtime, you can do this by simply placing the encoded string inside javascript:alert("<code here>"). it should look like the below. copy and paste it in firefox and you'll see it decoded.

Code:
javascript:alert("\x68\x74\x74\x70\x3A\x2F\x2F")

there are lots of tools and resources in the internet. you can do it. :)
 
Last edited:
fb cannot block js from being run. Its just possible to block people running scripts on the client side.

They do however regularly change things up. Parameters are constantly getting changed so unless you know what your doing with the code theres little point investing time setting all the js up.
 
fb cannot block js from being run. Its just possible to block people running scripts on the client side.

They do however regularly change things up. Parameters are constantly getting changed so unless you know what your doing with the code theres little point investing time setting all the js up.


There is no point setting it up?? Where you alive last week?
 
I saw one. java script is still working just need some modification. I think they encoded it
 
Back
Top