Author Topic: URL Bruteforce I guess  (Read 18360 times)

0 Members and 1 Guest are viewing this topic.

Offline blk.Sith0

  • Serf
  • *
  • Posts: 27
  • Cookies: 0
    • View Profile
Re: URL Bruteforce I guess
« Reply #45 on: April 18, 2011, 01:45:33 am »
Lets pretend this dictionary has every word from "aaaaaaaaaaa" to "///////////". Now uh, should make this. Who cares if it doesnt finish, I could at least get some, right?

Offline Satan911

  • VIP
  • Knight
  • *
  • Posts: 289
  • Cookies: 25
  • Retired god/admin
    • View Profile
Re: URL Bruteforce I guess
« Reply #46 on: April 18, 2011, 02:08:08 am »
That would require the exact same amount of time.

Instead make a good list of common file or dir names and bruteforce these instead. Might get less results but it will definitely take less time.

And by the way you wouldn't even get like phpmyadmin/ or administrator/ because there are too much chars.
Satan911
Evilzone Network Administrator

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: URL Bruteforce I guess
« Reply #47 on: April 18, 2011, 02:10:33 am »
Lets pretend this dictionary has every word from "aaaaaaaaaaa" to "///////////". Now uh, should make this. Who cares if it doesnt finish, I could at least get some, right?

Even just one row of letters aaaaaaaaaaa to bbbbbbbbbbb would be 296196766695424 attempts or something. And the likeliness of finding something in between aaaaaaaaaaa to bbbbbbbbbbb is very small.

If these values are to represent names, you will have much greater success downloading a few megs of name lists and combo bruting them.
« Last Edit: April 18, 2011, 02:11:48 am by ande »
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline blk.Sith0

  • Serf
  • *
  • Posts: 27
  • Cookies: 0
    • View Profile
Re: URL Bruteforce I guess
« Reply #48 on: April 18, 2011, 04:03:33 am »
Well I guess I'm out of luck then, because each page's code is some weird completely random thing.
ucePV/9yWJA=
RRdpA/Pna2c=
There's a couple of actual codes. So I guess theres not much to be done.

Offline blk.Sith0

  • Serf
  • *
  • Posts: 27
  • Cookies: 0
    • View Profile
Re: URL Bruteforce I guess
« Reply #49 on: April 19, 2011, 04:06:54 am »
Alright guys. Guys. I know this is as important to you as it is to me, so I have some good news.

I have at least 8 computers that can be running this nonstop 24/7.

And if my calculations are correct, that will only take 8.45 days. So we can do this!

10 juicy dollars

« Last Edit: April 19, 2011, 04:10:09 am by blk.Sith0 »

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: URL Bruteforce I guess
« Reply #50 on: April 19, 2011, 06:19:14 pm »
Alright guys. Guys. I know this is as important to you as it is to me, so I have some good news.

I have at least 8 computers that can be running this nonstop 24/7.

And if my calculations are correct, that will only take 8.45 days. So we can do this!

10 juicy dollars



I can assure you it will not take 8,45 days. It does not matter how many computers you got. The web server is going to be the bottleneck. Take my earlier calcs with 1000 requests pr second, which is insanely much.
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline Stackprotector

  • Administrator
  • Titan
  • *
  • Posts: 2515
  • Cookies: 205
    • View Profile
Re: URL Bruteforce I guess
« Reply #51 on: April 19, 2011, 11:51:17 pm »
Also, i'm not sure if you have all the computers on 1 net.
If so, 8 would be to much for 1k requests/s, you will notice alot of lag.
And yes, only if you are brute-forcing a very high end server you will have profit of 8 computers.
~Factionwars

Offline blackghost07

  • NULL
  • Posts: 1
  • Cookies: 0
    • View Profile
Re: URL Bruteforce I guess
« Reply #52 on: July 09, 2013, 09:38:18 pm »
hii i want to brute force on url which is like site.com/code?u=12345678901234&p=123456 and i just want to brute force on the p value and it contains only number of 6 digit.

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: URL Bruteforce I guess
« Reply #53 on: July 10, 2013, 08:04:57 pm »
hii i want to brute force on url which is like site.com/code?u=12345678901234&p=123456 and i just want to brute force on the p value and it contains only number of 6 digit.

You should consider making a new thread for this question. This thread is pretty old.


However, it is pretty simple. But we probably need a bit more information. Do you know any programming languages? Is it a logged-in page? What sort of data are you looking to extract from the pages?

Here is a simple full-page-save in PHP

Code: (php) [Select]
for($i=0;$i<999999;$i++)
{
    file_put_contents($i.'.html', file_get_contents('http://evilzone.org/index.php?u=12345678901234&u='.$i));
}
« Last Edit: July 10, 2013, 08:05:14 pm by ande »
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true