Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/farolfo/foolscracker-api
- Owner: farolfo
- Created: 2013-05-27T21:38:32.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-11T13:46:52.000Z (almost 11 years ago)
- Last Synced: 2024-11-08T02:56:32.667Z (3 months ago)
- Language: Java
- Homepage:
- Size: 132 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 overviewAs this is an application that involves the integration of many sites, we decided to use [mule](http://mulesoft.org) as the development tool.