This is pretty old, from about the time I found out about viewing inventories, and was used as a means to protect myself if the inventory viewer was ever patched. Unfortunately it was patched, and this sqlite3 database was replaced by a 4gb database with even more items stored. This one only contains users with items such as items worth 5mil+ from 04 and 03, with the user id under a user_id column and the item id under an item_id column in the inventory table. If you are smart enough to make use of this, you will have a pretty nice time grabbing accounts, but if you don't understand how to use this or can't think up a good way to get access to the accounts, too bad. I won't be helping answer questions on stealing any of the accounts in this database. If you want to view it's contents, either use SQL, write up your own parser, or use SQLite Browser.
Results 1 to 37 of 37
- 01 Apr. 2013 03:10am #1
[Semi-Release...thing] Small sqlite3 database of up to about 30mil user's inventories
Last edited by Tree; 11 Jun. 2013 at 03:32pm.
- 01 Apr. 2013 03:14am #2
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1.77
Seems cool. Too bad the old hotmail trick doesn't work anymore, I would have grabbed so many of these accounts, haha.
Well, actually, the grabbing of the user's email is what doesn't work anymore. The hotmail trick still works, I think, because didn't you post a login that re-activates dormant accounts?
- 01 Apr. 2013 03:19am #3
Gaia patched it within a day of release as I was expecting, which is why I removed my Towns bot link for now until I can be assed to add an HTML login or find a new method.
On the note of finding emails, either find yourself an exploit, or make yourself a smart spider bot that is able to make accurate guesses as to what a users email COULD be, and scan sites that are commonly used for emails etc, then cross reference with GSI. Though, you gotta be pretty decent at threading and efficient with parsing webpages or xml to be able to do this at a fast enough speed. For reference, when I made my spider it took about .4 seconds to create a list of possible emails based off the username, check for users that exist through the livejournal API with all those usernames, if there is a email in the xml page it returns and it's not in list, it's added to list, and then it would check deviantArt, and other places as well as trying each username guess on most used email domains.
- 01 Apr. 2013 03:29am #4
wow that list is so big, the program freezes when loading the next page xD
I'm not sure what to make of it though, since it's just a list of account ID's with the different items on them...?
anyways, I'm going to see what I can do
thanks
- 01 Apr. 2013 03:32am #5
- 01 Apr. 2013 03:38am #6
Oh awesome
I'm searching for emails right now, just through google though because I don't know how to do anything else myself lol
some nice accounts I'm seeing though, I've seen a few of them already because I used to search through really old threads on gaia to find inactive players to take from
- 01 Apr. 2013 03:39am #7
- 01 Apr. 2013 03:41am #8
- 01 Apr. 2013 03:42am #9
was there ever an email exploit? to see emails of users
- 01 Apr. 2013 03:43am #10
- 01 Apr. 2013 03:46am #11
woah testing some of those right now arti
- 01 Apr. 2013 03:49am #12
- 01 Apr. 2013 03:54am #13
- 01 Apr. 2013 03:55am #14
Nah, it wasn't. Nice release btw.I personally couldn't take over someones account anymore, but I'm not going to sensor any information Maybe if anyone does try to take advantage of the release, check to make sure they're abandoned first? Taking over active account isn't going trk out well for anyone, heh.
- 01 Apr. 2013 03:55am #15
It's a pretty common term, and it's not very hard to learn a programming language just for simple macroing or auto tasking. Just google up on examples, and look at those.
Yeah these days I don't really bother taking accounts anymore, it's insanely easy but not worth it. I don't get why people choose to steal from active users or use FLPs, it's just going to be a quick ban, and it's kind of mean to just go and steal something from someone who actively uses the account still. I don't really get why Gaia put that 6 month thing into action though, because all it did was force new users to become more targetable.Last edited by Tree; 01 Apr. 2013 at 03:58am.
- 01 Apr. 2013 03:56am #16
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 2.04
Lol I wish I was a programmer back when the email exploit was out. oh well.
Also, why the hell are you releasing so much stuff? Just so it will get patched? Release it in the UG so it doesn't just instantaneously get patched when you release it, there are ways of releasing sourcecodes without disclosing exploitation techniques and getting them patched
- 01 Apr. 2013 03:57am #17
- 01 Apr. 2013 03:58am #18
- 01 Apr. 2013 03:59am #19
- 01 Apr. 2013 04:00pm #20
- 01 Apr. 2013 05:13pm #21
wait so you could use that to get into peoples accs?
- 01 Apr. 2013 06:14pm #22
- 02 Apr. 2013 12:29am #23
I have a unique way of using this Thank you very much tree for posting this /fingercrossed I will let you guys know if it works
Play dumb now so you can shock the masses later
- 02 Apr. 2013 12:39am #24
How do you search for Item_ID?
It works in sqlite for the User_ID's but not the item's...
- 02 Apr. 2013 12:44am #25
- 02 Apr. 2013 01:02am #26
- 02 Apr. 2013 01:03am #27
It should be well under a second unless the db is unnecessarily enormous.
- 02 Apr. 2013 01:08am #28
- 02 Apr. 2013 01:09am #29
Errr what exactly are you running this under?
EDIT:
Code:import sqlite3 import time start_time = time.time() with sqlite3.connect('gaia') as conn: cur = conn.cursor() items = cur.execute('SELECT * FROM inventory WHERE item_id=1404').fetchall() print len(items) print time.time() - start_time
Code:107 0.468999862671
Last edited by Tree; 02 Apr. 2013 at 01:14am.
- 02 Apr. 2013 01:13am #30
- 02 Apr. 2013 01:34am #31
- 02 Apr. 2013 01:36am #32
- 02 Apr. 2013 02:04am #33
- 02 Apr. 2013 02:08am #34
- 02 Apr. 2013 02:17am #35
- 02 Apr. 2013 02:31am #36
- 02 Apr. 2013 02:34am #37