|
|
|
|
|
|
IT Security and Insecurity Portal |
|
|
need this to be cracked.. im paying 25 cents per hash via PP |
|
Posted: Sun Jan 17, 2010 6:43 am |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
d59127bcb683c702370f45b2e36c1c5e
0ee144c40537f3bcbac7dd63a0e5eb03
33e51192ce08c4c37c89363a16f42b58
770b932130988309a96d629bdacabb68
just send me your paypal id but ill try your cracked pw first to see if it works |
|
|
|
|
Posted: Sun Jan 17, 2010 12:19 pm |
|
|
vince213333 |
Advanced user |
|
|
Joined: Aug 03, 2009 |
Posts: 737 |
Location: Belgium |
|
|
|
|
|
|
Don't post the same thing three times. It won't help.
See this thread. |
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 1:27 pm |
|
|
rahat |
Regular user |
|
|
Joined: Jul 24, 2008 |
Posts: 20 |
|
|
|
|
|
|
|
Yes,
You need to provide some additional information too, like, if its just plain MD5 hash, or its a salted hash. In case if its salted hash, then you need to provide its salt too, without salt, its VERY hard to crack it (if not impossible), and no one is gonna bother even trying to crack it. Once you provide with sufficient info, the people on waraxe forum (and on many other forums) are generous enough to help you free of charge.
Check this link if you are curious about salt thingy http://en.wikipedia.org/wiki/Salt_%28cryptography%29
Ok, I'll give you some head start:
you select a passowrd "rahat" on a vBulletin site, vBulletin will generate a random salt "t#1" for it automatically, (that salt is stored in the database with final hash)
So its like:
$pass = rahat
$salt = t#1
Now, vBulletin uses md5(md5($pass).$salt) algorithm, so it will first MD5 the password, then concatenate salt with it and will MD5 the whole string again:
md5(40ca651cefb9a6bffa117f429897c5f1t#1)
So, the final hash will be: a18a5e69de842e598a89fbed1c0adfe4
Now, vBulletin uses md5(md5($pass).$salt), IP Board uses md5(md5($salt).md5($pass)), Joomla uses md5($pass.$salt) algorithm to produce their hashes and so on and so forth.
To crack such hashes, there are different techniques, http://en.wikipedia.org/wiki/Password_cracking may give you good start. I personally use PasswordPro and a 1 GB dictionary set. You can download InsidePro from http://www.insidepro.com/ for free, and they provide a very good collection of dictionary set, plus there are plenty available on the Internet.
Good luck |
|
Last edited by rahat on Sun Jan 17, 2010 3:00 pm; edited 1 time in total |
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 2:03 pm |
|
|
vince213333 |
Advanced user |
|
|
Joined: Aug 03, 2009 |
Posts: 737 |
Location: Belgium |
|
|
|
|
|
|
Rahat, if you have clicked the link in my previous post, you would've seen that those are actually vBulletin hashes so they are salted.
It's possible to crack vBulletin hashes without having a salt by performing a brute-force variant will all possible vBulletin salts. It takes some time though...
One last thing. InsidePro isn't a program. It's the name of the "company" that makes the applications they offer, like PasswordsPro or SAMInside |
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 2:38 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
wow what a helpful forum thanks for clearing things out.. here the db entry for one of the accounts im cracking.. idk about the salt thing if it's located here
INSERT INTO user VALUES('1','6','','0','ADMIN','0ee144c40537f3bcbac7dd63a0e5eb03','2009-02-03','administrator@someforum.com','0','','http://www.someforum.com','','','','','','2','2','Pwner','1','1154873640','0','1233646793','1233646793','1208622069','21','12','5','0','0','0','0','0','2135','','0000-00-00','-1','1','','0','0','0','0','-1','2','0','k[M','0','0','0','0','0','0','','0','3213.03000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','a:2:{i:0;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:512.8885000000000218278728425502777099609375;s:8:\"dateline\";i:1208007435;s:7:\"expires\";s:1:\"0\";}i:1;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:512.8885000000000218278728425502777099609375;s:8:\"dateline\";i:1208008363;s:7:\"expires\";s:1:\"0\";}}','','','','','','0',''); |
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 3:15 pm |
|
|
rahat |
Regular user |
|
|
Joined: Jul 24, 2008 |
Posts: 20 |
|
|
|
|
|
|
|
ah, thanks vince213333 for pointing out.
I mistakenly wrote the incorrect name :p
I re-read the post of yours in that link and all there is mentioned "We need the salt too, if those are vBulletin hashes..." which didn't confirmed their being vBulleting hashes to me :p... guessing I'm dumb?
And yes its still possible to crack a salted hash without its salt, but as i mentioned in the post that its very hard to crack such a hash without its salt, the given link of wikipedia says something like:
Quote: | Assume a user’s (encrypted) secret key is stolen and he is known to use one of 200,000 English words as his password. The system uses a 32-bit salt. The salted key is now the original password appended to this random 32-bit salt. Because of this salt, the attacker’s pre-calculated hashes are of no value. He must calculate the hash of each word with each of 232 (4,294,967,296) possible salts appended until a match is found. The total number of possible inputs can be obtained by multiplying the number of words in the dictionary with the number of possible salts:
2^{32} \times 200 000 = 8.58993459 \times 10^{14}
To complete a brute-force attack, the attacker must now compute about 800 trillion hashes, instead of only 200,000. Even though the password itself is known to be simple, the secret salt makes breaking the password radically more difficult. |
|
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 3:43 pm |
|
|
vince213333 |
Advanced user |
|
|
Joined: Aug 03, 2009 |
Posts: 737 |
Location: Belgium |
|
|
|
|
|
|
I'd have a look at the title of the thread I referred you too
And cracking without the salt doesn't take that much time if you're lucky. I've found a few without having the salt. Though I wouldn't encourage people to post hashes without the salt as it does increase the time needed to crack exponentially so to say.
And code_geass, I think the salt we're looking for is k[M.
Though I couldn't really find the matching password. Mind posting the other database records too, so I can see if I can find any of the other ones. The salt only is fine too. It's a 3 character string, somewhere in the middle of the database record. |
|
|
|
|
|
Here sir |
|
Posted: Sun Jan 17, 2010 4:46 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
Code: | INSERT INTO user VALUES('2','6','','0','rei_kawaii','33e51192ce08c4c37c89363a16f42b58','2009-11-19','rizza_kawaii@yahoo.com','0','','','','','','','','1','0','tHe uLtiMate aDMiN','1','1154877120','0','1260272411','1262355246','1239814291','614','10','5','8','1','0','0','0','3799','08-31-1985','1985-08-31','-1','1','124.104.12.241','0','0','1166299634','0','-1','106','0','rfH','1','264018','0','0','0','0','','0','11622.21000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('3','10','','0','Darkjong-kun','7290d1c7d8da944d70b395f6fc340f46','2006-08-06','darkjong99@yahoo.com','0','','','','','darkjong99','','','1','0','Aspirant','0','1154877721','0','1180918302','1205024280','1162902291','30','10','5','8','0','0','0','0','3159','05-26-1985','1985-05-26','-1','-1','58.69.79.110','0','1','0','0','-1','1','0','|,X','3','24293','0','0','0','0','','0','5292.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('4','2','','0','trickzstyles','fa7c9d4fef3985042c4939b9b306de35','2006-08-06','trickzstyles@gmail.com','0','','','','','','','','1','0','Tambay','0','1154878163','0','1154878163','1154879239','0','0','10','5','8','0','0','0','0','3159','','0000-00-00','-1','-1','202.163.208.51','0','1','0','0','-1','0','0','X1P','0','0','0','0','0','0','','0','109.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('5','6','','0','L','770b932130988309a96d629bdacabb68','2009-12-28','','0','','http://www.gamerzplanet.net','','','','','','1','2','OMG Bio Rifle Run','1','1154879820','0','1263667629','1263706971','1263706931','4641','16','5','7','0','0','0','0','3991','','0000-00-00','-1','1','203.177.178.92','0','1','0','0','-1','708','0','zm<','1','333985','0','0','0','0','','0','120559.60590','912859.91533','1263833151','0','0','0','0','Red','','','','0','','1','1','0','0','0','','a:14:{i:0;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1208011537;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"688\";s:10:\"tousername\";s:4:\"Drei\";s:6:\"reason\";s:72:\"Thief attempt was unsuccessful from <a href=\"member.php?u=688\">Drei</a>.\";}i:1;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"2\";s:8:\"dateline\";i:1208011581;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"688\";s:10:\"tousername\";s:4:\"Drei\";s:6:\"reason\";s:72:\"Thief attempt was unsuccessful from <a href=\"member.php?u=688\">Drei</a>.\";}i:2;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1208319411;s:7:\"expires\";s:1:\"0\";s:10:\"fromuserid\";s:3:\"117\";s:12:\"fromusername\";s:10:\"robototroz\";s:6:\"reason\";s:78:\"Thief attempt was unsuccessful from <a href=\"member.php?u=117\">robototroz</a>.\";}i:3;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:1025.777000000000043655745685100555419921875;s:8:\"dateline\";i:1208623688;s:7:\"expires\";s:1:\"0\";}i:7;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:7:\"1000.00\";s:8:\"dateline\";i:1213187648;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:2:\"17\";s:10:\"tousername\";s:8:\"hydevine\";s:6:\"reason\";s:73:\"Thief attempt was successful from <a href=\"member.php?u=17\">hydevine</a>.\";}i:8;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1222167324;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"546\";s:10:\"tousername\";s:6:\"shr0ud\";s:6:\"reason\";s:72:\"Thief attempt was successful from <a href=\"member.php?u=546\">shr0ud</a>.\";}i:9;a:4:{s:6:\"itemid\";s:1:\"5\";s:9:\"finalcost\";d:134985.619999999995343387126922607421875;s:8:\"dateline\";i:1230708575;s:7:\"expires\";s:1:\"0\";}i:10;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010129;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"820\";s:10:\"tousername\";s:8:\"jinda018\";s:6:\"reason\";s:4:\"test\";}i:11;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010162;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6922\";s:10:\"tousername\";s:10:\"nattefrost\";s:6:\"reason\";s:5:\"limos\";}i:12;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010269;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"5696\";s:10:\"tousername\";s:9:\"leeshinyi\";s:6:\"reason\";s:5:\"limos\";}i:13;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1500;s:8:\"dateline\";i:1232010747;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6470\";s:10:\"tousername\";s:8:\"jcurdman\";s:6:\"reason\";s:5:\"limos\";}i:14;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010760;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"5696\";s:10:\"tousername\";s:9:\"leeshinyi\";s:6:\"reason\";s:5:\"limos\";}i:15;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010766;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6922\";s:10:\"tousername\";s:10:\"nattefrost\";s:6:\"reason\";s:5:\"limos\";}i:16;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010774;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"820\";s:10:\"tousername\";s:8:\"jinda018\";s:6:\"reason\";s:5:\"limos\";}}','','','','','','0','');
INSERT INTO user VALUES('8280','2','','0','pedron_mapuan','3dd7fd2abeb274db3a293b062676db0c','2009-05-02','weedward28@yahoo.com','0','','','','','weedward28','','edward.pedron','1','0','Tambay','0','1241211474','0','1241211894','1241213319','1241213317','2','10','5','8','1','0','0','0','3159','02-28-1986','1986-02-28','-1','-1','203.177.21.203','0','1','0','0','-1','0','0','s{z','0','266667','0','0','0','0','','0','140.27000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('922','2','','0','k_e_i_k_u_n_1_7','94ee82ac13546da52171c84120967726','2006-12-06','k_e_i_k_u_n_1_7@yahoo.com','0','','','','','','','','1','0','Tambay','0','1165453949','0','1176529320','1193275323','1193275343','1','10','5','7','0','0','0','0','3287','','0000-00-00','-1','-1','124.6.182.148','5','1','0','0','-1','1','1','1CZ','0','138990','0','0','0','0','','0','121.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('6','10','','10','mechengr','367a098ca9342bd8ccd4f1c0125cb1b2','2006-08-07','leadguitarist09@yahoo.com','0','','','','','leadguitarist09','','','1','0','Junior Aspirant','0','1154929800','0','1155487079','1166534400','1155487020','19','10','5','8','0','0','0','0','3415','12-22-1984','1984-12-22','-1','1','210.213.193.18','0','0','0','0','-1','0','0','Ob=','0','0','0','0','0','0','','0','670.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('7','10','','0','rain16','793007f6148c9affe647343fee05a2c4','2007-02-03','gosunezz@yahoo.com','0','','','','','','','','1','0','Tambay','0','1154956140','0','1263700215','1263706450','1221966400','2','10','5','8','0','0','0','0','3671','','0000-00-00','-1','1','202.124.147.55','0','0','0','0','-1','1','0','Tsk','0','198973','0','0','0','0','','0','217.36000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('8','2','','0','Akodo Yuru','49b706d43ad73884c139354923f9aef7','2006-08-07','gaijin_merchant@yahoo.com','0','','','','','warchief_guloy','','','1','0','Tambay','0','1154956162','0','1154956723','1154956723','0','0','10','5','8','0','0','0','0','3415','12-10-1985','1985-12-10','-1','-1','203.87.193.234','7','1','0','0','-1','0','0','tlg','0','0','0','0','0','0','','0','132.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('9','7','','7','ejhades','cf91b6ddcfb9e4e74787a758fae8a3a2','2006-08-07','ejgp2000@yahoo.com','0','','','','','jpcs0607','','','1','2','Moderator','0','1154956680','0','1217433855','1240585746','1206169494','1025','10','5','8','0','0','0','0','3415','03-10-1984','1984-03-10','-1','-1','125.60.241.142','5','1','0','0','-1','25','0','.Pi','1','167033','0','0','0','0','','0','12777.35000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('10','10','','0','Necrowing','9a184a58f8a512e0ccda1946687690e7','2006-08-07','wing_32@yahoo.com','0','','','','','','','','1','0','Junior Aspirant','0','1154957224','0','1258267698','1260039884','1226570204','20','10','5','0','0','0','0','0','3159','','0000-00-00','-1','-1','58.69.60.56','0','1','0','0','-1','1','0','SCL','0','0','0','0','0','0','','0','833.09000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('11','10','','0','ren','65fa78d460511dc39ad93370f25af9bc','2006-08-07','jm_perez36@yahoo.com','0','','http://walangpasokbukas.com','','','jm_quathro','','','1','0','Senior Member','0','1154958050','0','1213607403','1215495473','1213606093','338','12','5','0','0','0','0','0','3287','','0000-00-00','-1','-1','210.213.68.24','0','1','0','0','-1','2','0','+jO','3','177786','0','0','0','0','','0','19519.43000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('12','2','','0','god','08b8ed7aa6cb24d454147be6aa856679','2006-08-07','vile_mage17@yahoo.com','0','','','','','','','','1','0','Tambay','0','1154958114','0','1156428470','1156605806','1155264498','1','10','5','0','0','0','0','0','3159','','0000-00-00','-1','-1','203.177.223.248','0','1','0','0','-1','0','0','7y[','0','0','0','0','0','0','','0','2389.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0','');
INSERT INTO user VALUES('13','2','','0','gedrocks','7a57a8a4c075b8d893e6215e6a0513d7','2006-08-07','bad_cheetah0847@yahoo.com','0','','','','','','','','1','0','Tambay','0','1154959933','0','1154959933','1154960754','0','0','10','5','8','0','0','0','0','3143','','0000-00-00','-1','-1','210.213.89.224','0','1','0','0','-1','0','0','wt*','0','0','0','0','0','0','','0','212.00000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','','','','','','','0',''); |
|
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 4:48 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
Just wanna say sir that i dont have the whole database.. only the table for the users is at my possesion right now |
|
|
|
|
Posted: Sun Jan 17, 2010 5:45 pm |
|
|
vince213333 |
Advanced user |
|
|
Joined: Aug 03, 2009 |
Posts: 737 |
Location: Belgium |
|
|
|
|
|
|
Necrowing:9a184a58f8a512e0ccda1946687690e7:ewan123
rei_kawaii:33e51192ce08c4c37c89363a16f42b58:natsumi
pedron_mapuan:3dd7fd2abeb274db3a293b062676db0c:passw0rd
ejhades:cf91b6ddcfb9e4e74787a758fae8a3a2:031084
mechengr:367a098ca9342bd8ccd4f1c0125cb1b2:1234qwer
Not cracked:
Darkjong-kun:7290d1c7d8da944d70b395f6fc340f46:|,X
trickzstyles:fa7c9d4fef3985042c4939b9b306de35:X1P
L:770b932130988309a96d629bdacabb68:zm<
k_e_i_k_u_n_1_7:94ee82ac13546da52171c84120967726:1CZ
rain16:793007f6148c9affe647343fee05a2c4:Tsk
Akodo Yuru:49b706d43ad73884c139354923f9aef7:tlg
ren:65fa78d460511dc39ad93370f25af9bc:+jO
god:08b8ed7aa6cb24d454147be6aa856679:7y[
gedrocks:7a57a8a4c075b8d893e6215e6a0513d7:wt* |
|
|
|
|
|
|
|
|
Posted: Sun Jan 17, 2010 6:49 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
these are the most important accounts Please crack them too if you can But dont push yourself
Code: | INSERT INTO user VALUES('35','6','','0','lackownage','0ee144c40537f3bcbac7dd63a0e5eb03','2009-02-03','god@.com','0','','http://www..com','','','','','','2','2','Pwner','1','1154873640','0','1233646793','1233646793','1208622069','21','12','5','0','0','0','0','0','2135','','0000-00-00','-1','1','','0','0','0','0','-1','2','0','k[M','0','0','0','0','0','0','','0','3213.03000','0.00000','0','0','0','0','0','','','','','0','','1','1','0','0','0','','a:2:{i:0;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:512.8885000000000218278728425502777099609375;s:8:\"dateline\";i:1208007435;s:7:\"expires\";s:1:\"0\";}i:1;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:512.8885000000000218278728425502777099609375;s:8:\"dateline\";i:1208008363;s:7:\"expires\";s:1:\"0\";}}','','','','','','0','');
INSERT INTO user VALUES('5','6','','0','L','770b932130988309a96d629bdacabb68','2009-12-28','','0','','http://www.gamerzplanet.net','','','','','','1','2','OMG Bio Rifle Run','1','1154879820','0','1263667629','1263706971','1263706931','4641','16','5','7','0','0','0','0','3991','','0000-00-00','-1','1','203.177.178.92','0','1','0','0','-1','708','0','zm<','1','333985','0','0','0','0','','0','120559.60590','912859.91533','1263833151','0','0','0','0','Red','','','','0','','1','1','0','0','0','','a:14:{i:0;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1208011537;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"688\";s:10:\"tousername\";s:4:\"Drei\";s:6:\"reason\";s:72:\"Thief attempt was unsuccessful from <a href=\"member.php?u=688\">Drei</a>.\";}i:1;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"2\";s:8:\"dateline\";i:1208011581;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"688\";s:10:\"tousername\";s:4:\"Drei\";s:6:\"reason\";s:72:\"Thief attempt was unsuccessful from <a href=\"member.php?u=688\">Drei</a>.\";}i:2;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1208319411;s:7:\"expires\";s:1:\"0\";s:10:\"fromuserid\";s:3:\"117\";s:12:\"fromusername\";s:10:\"robototroz\";s:6:\"reason\";s:78:\"Thief attempt was unsuccessful from <a href=\"member.php?u=117\">robototroz</a>.\";}i:3;a:4:{s:6:\"itemid\";s:2:\"42\";s:9:\"finalcost\";d:1025.777000000000043655745685100555419921875;s:8:\"dateline\";i:1208623688;s:7:\"expires\";s:1:\"0\";}i:7;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:7:\"1000.00\";s:8:\"dateline\";i:1213187648;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:2:\"17\";s:10:\"tousername\";s:8:\"hydevine\";s:6:\"reason\";s:73:\"Thief attempt was successful from <a href=\"member.php?u=17\">hydevine</a>.\";}i:8;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:1:\"1\";s:8:\"dateline\";i:1222167324;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"546\";s:10:\"tousername\";s:6:\"shr0ud\";s:6:\"reason\";s:72:\"Thief attempt was successful from <a href=\"member.php?u=546\">shr0ud</a>.\";}i:9;a:4:{s:6:\"itemid\";s:1:\"5\";s:9:\"finalcost\";d:134985.619999999995343387126922607421875;s:8:\"dateline\";i:1230708575;s:7:\"expires\";s:1:\"0\";}i:10;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010129;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"820\";s:10:\"tousername\";s:8:\"jinda018\";s:6:\"reason\";s:4:\"test\";}i:11;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010162;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6922\";s:10:\"tousername\";s:10:\"nattefrost\";s:6:\"reason\";s:5:\"limos\";}i:12;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1025;s:8:\"dateline\";i:1232010269;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"5696\";s:10:\"tousername\";s:9:\"leeshinyi\";s:6:\"reason\";s:5:\"limos\";}i:13;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:1500;s:8:\"dateline\";i:1232010747;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6470\";s:10:\"tousername\";s:8:\"jcurdman\";s:6:\"reason\";s:5:\"limos\";}i:14;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010760;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"5696\";s:10:\"tousername\";s:9:\"leeshinyi\";s:6:\"reason\";s:5:\"limos\";}i:15;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010766;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:4:\"6922\";s:10:\"tousername\";s:10:\"nattefrost\";s:6:\"reason\";s:5:\"limos\";}i:16;a:7:{s:6:\"itemid\";s:1:\"7\";s:9:\"finalcost\";d:475;s:8:\"dateline\";i:1232010774;s:7:\"expires\";s:1:\"0\";s:8:\"touserid\";s:3:\"820\";s:10:\"tousername\";s:8:\"jinda018\";s:6:\"reason\";s:5:\"limos\";}}','','','','','','0','');
INSERT INTO user VALUES('54','6','','0','hyp_kitsune','d59127bcb683c702370f45b2e36c1c5e','2009-09-19','hyp_kitsune@yahoo.com','0','','','','','','','','1','0','<span class=\"RED\"><B>Super Administrator/ Co-Founder</B></span>','1','1155280260','0','1263015106','1263307183','1263012761','753','10','5','7','0','0','0','0','3799','','0000-00-00','-1','1','210.14.10.53','0','0','0','0','-1','86','0','N;S','1','332242','0','0','0','0','','0','73.51000','56271.83958','1263120931','0','0','0','0','','','','','0','','1','1','0','0','0','','a:1:{i:0;a:7:{s:6:\"itemid\";s:2:\"16\";s:9:\"finalcost\";s:2:\"10\";s:8:\"dateline\";i:1213595540;s:7:\"expires\";s:1:\"0\";s:10:\"fromuserid\";s:3:\"117\";s:12:\"fromusername\";s:10:\"robototroz\";s:6:\"reason\";s:78:\"Thief attempt was unsuccessful from <a href=\"member.php?u=117\">robototroz</a>.\";}}','','','','','','0',''); |
thank you! you are so helpful!!! |
|
|
|
|
|
|
|
|
Posted: Mon Jan 18, 2010 2:48 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
what if i posted the whole database here? would you guys help me and crack them all? the forum im hacking is full of bullies and told our school a crap school numerous times |
|
|
|
|
Posted: Mon Jan 18, 2010 2:56 pm |
|
|
crazynou |
Advanced user |
|
|
Joined: Feb 08, 2009 |
Posts: 199 |
Location: AlGeRiA |
|
|
|
|
|
|
code_geass wrote: | what if i posted the whole database here? would you guys help me and crack them all? the forum im hacking is full of bullies and told our school a crap school numerous times |
ok but hash:salt |
|
|
|
|
Posted: Mon Jan 18, 2010 3:14 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
crazynou wrote: | code_geass wrote: | what if i posted the whole database here? would you guys help me and crack them all? the forum im hacking is full of bullies and told our school a crap school numerous times |
ok but hash:salt |
SALT:HASH
k[M:0ee144c40537f3bcbac7dd63a0e5eb03
zm<:770b932130988309a96d629bdacabb68
N;S:d59127bcb683c702370f45b2e36c1c5e |
|
|
|
|
Posted: Mon Jan 18, 2010 3:39 pm |
|
|
code_geass |
Regular user |
|
|
Joined: Jan 17, 2010 |
Posts: 10 |
|
|
|
|
|
|
|
PM me so i can send you the download link for the database maybe theyll patch this soon |
|
|
|
|
www.waraxe.us Forum Index -> All other hashes
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
All times are GMT
Page 1 of 2
Goto page 1, 2Next
|
|
|
Powered by phpBB © 2001-2008 phpBB Group
|
|
|
|
|