Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/farolfo/foolscracker-api

A RestAPI that tries 'ids' and 'passwords' in many authentication systems, such as Facebook, Twitter, etc. If you have one person's password of a site and this person REPEATS that password in another account, this API will help you cracking the fool
https://github.com/farolfo/foolscracker-api

Last synced: 27 days ago
JSON representation

A RestAPI that tries 'ids' and 'passwords' in many authentication systems, such as Facebook, Twitter, etc. If you have one person's password of a site and this person REPEATS that password in another account, this API will help you cracking the fool

Awesome Lists containing this project

README

        

foolsCracker API
============

(IN PROGRESS)

An API that tries 'ids' and 'passwords' in many authentication systems, such as Facebook, Twitter, etc. and tells you which of them succeded.
If you have one person's password of a site and this person REPEATS that password in another account, this API will help you cracking the fool ;)

###Get started with a simple use case

Suppose you want to try the username 'franco' (the __id__) and the __password__ 'password'. All you have to do is to do a GET to the API as:

http://foolcracker.com/api?id=franco&pwd=password

The response you will get is a JSON object in the payload as:

{
id: franco,
pwd: password,

ans: [
{ facebook: 'OK' },
{ hotmail: 'FAIL' }
]
}


###Application overview

As this is an application that involves the integration of many sites, we decided to use [mule](http://mulesoft.org) as the development tool.