Go Back   Bombshock Forums > Fringe Topics > Money, Fake ID and Free Living

Reply
 
LinkBack Thread Tools Display Modes

4 digit pin combination
  #1 (permalink)  
Old 06-26-2009, 08:52 AM
mswils411 mswils411 is offline
Member
 
Join Date: Mar 2008
Posts: 36
Rep Power: 0
mswils411
Default 4 digit pin combination

Ok I am trying to generate every possible combination of 4 digits like 0000-9999

After trying many generators, I can only get a list starting at 1000. but there are possibilities before 1000 like 0011. Any idea on how I can do this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #2 (permalink)  
Old 06-26-2009, 02:43 PM
db's Avatar
db db is offline
Senior Member
 
Join Date: Jul 2005
Posts: 549
Rep Power: 0
db is an unknown quantity at this point
Default

Code:
#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
	for(int i=0;i<10000;i++)
		cout<<setfill('0')<<setw(4)<<i<<endl;
	return 0;
}
__________________
The safest thing would be to learn this stuff yourself, and profit from it. It's not that easy, but it sure cuts out all of these brokers, scammers, CI and LE. I don't sell ids and don't answer PMs asking about shit that has already been discussed in the forums.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Wow
  #3 (permalink)  
Old 06-29-2009, 03:46 PM
mswils411 mswils411 is offline
Member
 
Join Date: Mar 2008
Posts: 36
Rep Power: 0
mswils411
Default Wow

Thanks , I appreciate that. There's a web site that you can check your gift card balance on, Some times the card numbers you get ask for a pin, Only on the website though, If you call the 800 number even if there is a pin on it It does not require you to enter it. Well I hit a pretty large amount on one card. But it ask for a pin. The thing is no matter how many times you enter the wrong pin on the site it does not lock you out or kick you off. or even block that card number, I'm wondering since that is the case can it be brute forced so to speak.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 07-01-2009, 06:31 AM
groundzero_1 groundzero_1 is offline
Senior Member
 
Join Date: Nov 2008
Posts: 127
Rep Power: 0
groundzero_1 is an unknown quantity at this point
Default

So you're essentially stealing gift cards?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:08 AM.


vBulletin skin developed by: eXtremepixels
Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36