Royals

Members
  • Content Count

    378
  • Last visited

Everything posted by Royals

  1. Verified to be the real Dean Martin.
  2. We are fixing it now. Thank you for letting us know.
  3. Hello, when posting databases please try and follow the format to give people a more pleasant experience when downloading your content. This section is for database files, not combo lists. Please use the correct forum when posting your content. Site: http://XX.XX Lines: XXX,XXX Hash type: XXX Content: Emails, Passwords, Address & IPs Date Dumped: XX/XX/XX Thank you.
  4. In order to keep this section clean and organised some regulations are being implemented to give everyone a smoother experience, when posting a config please use the following format to avoid confusion. Please report dead configs to avoid confusion. Combo Type: Email / Username Proxies: Yes/No Bots: x-x Last Tested: XX/XX/XX Additional Information: N/A Thanks you.
  5. Mine: http://steamcommunity.com/id/connorroyals Don't add me jeff, don't wanna embarrass you.
  6. Ow man, time for me to go off. So recently I've been recommending a lot of my 'online' friends to watch certain series and I have about an 80% success rate. You didn't really specific a genre for me to give you an accurate recommendation so I'm just going to tell you a few of my current favourites. The Magicians: https://www.imdb.com/title/tt4254242/?ref_=nv_sr_1 The Originals: https://www.imdb.com/title/tt2632424/?ref_=nv_sr_3 Dark Matter: https://www.imdb.com/title/tt4159076/?ref_=nv_sr_1 The Shannara Chronicles: https://www.imdb.com/title/tt1051220/?ref_=nv_sr_1 So heres 4 very different TV shows in multiple genres, they're all amazing. If you want any more details on them just quote me, I'll be back with a vengeance.
  7. Royals

    Known bugs

    https://i.imgur.com/DMFPmK7.png It appears you need to add padding to your containers as everything seems to be clipping at the moment. -- Bullet points are broken, a list isn't formed and all are combined into one line when posting / previewing.
  8. Royals

    Known bugs

    https://i.imgur.com/uQEMInc.png Media queries are needed on elements to stop clipping errors on resized browsers / lower resolution monitors.
  9. Royals

    Awards

    Please not! Rewards should be something special, not getting one for being "shady".. Adding awards if someone did something really extraordinary The blackhat does not mean shady in that sense, a blackhat is a real term used in the real world, not just the internet. I do agree that awards should be prestigious & hard to obtain though.
  10. Royals

    Overflow of Awards

    Interesting way you think, makes sense to me. You're right, many good awards will be good for new users so they have an aim to target. But my worry is that, when the Community wants many awards the Staff team will add LQ ones because they ran out of "HQ-Awards" idea. That could happen but Jeff is not new to owning forums, his past forums have done rather well. I have faith that this forum will be no different, we will see when the members start to roll on in.
  11. Royals

    Overflow of Awards

    You're thinking about them wrong, a diverse & large amount of awards can be very good for the forum. If they're given out in a manner in which makes them have a certain amount of rarity then having a large amount wont matter at all. When the forum grows there will be way more members without awards than with. It's nice to see what can be obtained & the reasons in which people have x award. What you call bullshit is simply additional forum elements to add a unique experience. Personally my vote is to add as many as you see fit, just don't give them out like candy.
  12. Show support for a more advanced tutorial ++ I'm not going to waste my time if people just leech. The tutorial is inside hide tags to keep the thread active. [hide] Simple compact tutorial: Execute SQLMap directory - CD C:\python27\sqlmap (depending where you placed) Execute vulnerability scanner - sqlmap.py -u Execute database scan - sqlmap.py -u --dbs Get access to database you want - sqlmap.py -u --tables -D Pull columns of the tables - sqlmap.py -u -columns -T Dump data of columns - sqlmap.py -u --columns -T Locate file, open and there are your combos Tutorial /w pictures and explanations Step one: Installation I will not explain this in depth, you will be running a python file so please install version 2 https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi It should create a folder inside your C:\ drive called python27, this is needed for later. Next download SQLMap https://github.com/sqlmapproject/sqlmap/zipball/master(RENAME IT SQLMAP!) and put this inside the python27 folder so the path is C:\Python27\sqlmap Step two: Opening the python file for basic help Open CMD and type CD C:\python27\sqlmap Ok, we are now in the sqlmap directory! Type sqlmap.py -h for details about all the functions in sqlmap. Step three: Scanning! Ok, now it gets good, for this to work you already need to have a vulnerable website. Type: sqlmap.py -u VULN If it worked you will see something like this Step four: Idk let's just carry on. Next we have to identify there databases, press the UP arrow will load the last executed command and press space and then --dbs and then dada! We have pulled the database. Now we have to access it which is super dooper easy! Press the Up arrow and delete --dbs and type --tables -D and then the database you want. So? What did we just do? --tables tells sqlmap we are looking for tables and -D (MUST BE CAPITAL!) tells sqlmap we want to open that database. If it all goes to plan it should look like this. Now we have to open the tables for columns! Press UP arrow, delete --tables and replace it with --columns which tells the user we want to open columns then type -T (CAPITAL!) and then the table you want to open! We are going for user:pass so a_admins seems like a good start? full code: Just like before we should see another table this been a_admins only We see two things of interested, db_username and db_password, next tast is to pull and then dump these into a file. Once again press the UP arrow and simply add -C database,database replacing them with the ones you want and then --dump at the end, this is telling sqlmap we want to access both of these columns and then dump them into a file which creates our combos! That's it guys, a basic guide on how to dump databases super fast compared to other programs! I suggest reading up on parameters such as --threads=10 and risk / level values. But this will do for this tutorial. [/hide]