Jump to content

13 character number strings


Recommended Posts

Posted

WinActivate("Untitled - Notepad")
$n = "0000000000000"
$n = $n + 1
Do
Send($n & "{enter}")
Until $n = "9999999999999"

That wouldnt work?

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

I don't know, wouldn't it?

how long would that take to finish?

WinActivate("Untitled - Notepad")
$n = "0000000000000"
$n = $n + 1
Do
Send($n & "{enter}")
Until $n = "9999999999999"

That wouldnt work?

<{POST_SNAPBACK}>

"I'm not even supposed to be here today!" -Dante (Hicks)

Guest BL@(K-R34P3R
Posted

I'll try that right now =). And I know that they have a certain number pattern. But what are the odds of me figuring that out? I already have 16 cd keys though.

Guest BL@(K-R34P3R
Posted

Oh, Just tested. That script does not work, just prints 1111111111 down the page.

Posted

Oh, Just tested. That script does not work, just prints 1111111111 down the page.

<{POST_SNAPBACK}>

the $n = $n + 1 needs to be inside the loop, before the send.

"I'm not even supposed to be here today!" -Dante (Hicks)

Guest BL@(K-R34P3R
Posted

WinActivate("Untitled - Notepad")
$n = "0000000000000"
Do
$n = $n + 1
Send($n & "{enter}")
Until $n = "9999999999999"

This does not work either, just tested. It DOES print numbers, but not starting as 13 character strings, it prints as "1,2,3,4,5,etc..." What he wanted to do was, ONLY have it print 13 character numbers, such as:

1000000000000

1100000000000

etc...

Posted

WinActivate("Untitled - Notepad")
$n = "0000000000000"
Do
$n = $n + 1
Send($n & "{enter}")
Until $n = "9999999999999"

This does not work either, just tested. It DOES print numbers, but not starting as 13 character strings, it prints as "1,2,3,4,5,etc..." What he wanted to do was, ONLY have it print 13 character numbers, such as:

1000000000000

1100000000000

etc...

<{POST_SNAPBACK}>

this isn't a valid theory, you may as well have it pump random 13 character strings of numbers into it, since just making such a list will take f'ing thousands of years, and then, what are you going to do with it?

Go read some f'ing keygen theory papers, I think l0phtcrack had some up at one point, and work on it from that angle. If you already have a handful of good ones, you should be able to learn what's needed to make a good one.

"I'm not even supposed to be here today!" -Dante (Hicks)

Guest BL@(K-R34P3R
Posted

Well, remember, I already gave up on this idea. I no longer want to do this. I'm just telling you that those scripts don't work. One way, that I am thinking it could be done, *if someone wants to attempt it*, is an array Oo. I think its possible to set up an array for a 13 digit number giving each "0" an array number. Then you could do $n + 1 for each different array number, and a conter to skip each other character. I'm not sure if I'm explaining this right, but if I am then you know what I mean. (By the way, I grabbed this from Python).

  • Developers
Posted

Well, remember, I already gave up on this idea. I no longer want to do this. I'm just telling you that those scripts don't work. One way, that I am thinking it could be done, *if someone wants to attempt it*, is an array Oo. I think its possible to set up an array for a 13 digit number giving each "0" an array number. Then you could do $n + 1 for each different array number, and a conter to skip each other character. I'm not sure if I'm explaining this right, but if I am then you know what I mean. (By the way, I grabbed this from Python).

<{POST_SNAPBACK}>

Here a simple way of doing this:

For $x = 0 to 9999999999999
     FilewriteLine("Output.txt",StringFormat("%013d",$x))
Next

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

Here a simple way of doing this:

For $x = 0 to 9999999999999
     FilewriteLine("Output.txt",StringFormat("%013d",$x))
Next

<{POST_SNAPBACK}>

sweet, I knew there must be some sort of string method of doing this... not that it'd really take any less time, or that it's the right way to accomplish this mind you :ph34r:

still, now I've learned something new. I'm happier for that.

Edited by emmanuel

"I'm not even supposed to be here today!" -Dante (Hicks)

Guest BL@(K-R34P3R
Posted

Firstly, you are smart. Secondly, you are really smart. Thirdly, it is fast.

Guest BL@(K-R34P3R
Posted

Woa, officially confirmed. The file is now too large to open OO. I'm going to break the script into smaller parts, one that will go to 22222(etc) and one that will go to 3333(etc) and so fourth and so on, to reduce file size and increase finish time =)

Posted

Here a simple way of doing this:

For $x = 0 to 9999999999999
     FilewriteLine("Output.txt",StringFormat("%013d",$x))
Next

<{POST_SNAPBACK}>

Yo that is awesome, JdeB knows all lol
My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

Woa, officially confirmed. The file is now too large to open OO. I'm going to break the script into smaller parts, one that will go to 22222(etc) and one that will go to 3333(etc) and so fourth and so on, to reduce file size and increase finish time =)

<{POST_SNAPBACK}>

how about instead of generating a list that you'll just have to later parse and utilize to check if the numbers are valid, you just make that for ... loop try the number against your app, then if the app returns a good reply write that number to a file....

as long as you insist on doing this brute force that is :ph34r:

"I'm not even supposed to be here today!" -Dante (Hicks)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...