A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[Beta] +LGG

1.7k views · started by GAMEchief ·
#1
[Beta] +LGG
If you follow a quote (with username and post ID; e.g. the quotes that appear in Reply With Quote) with +#lgg, it will now automatically donate # of your LGG to that user.

This is beta. Don't be surprised if you encounter a bug. But it seems bugless for now.

Leave feedback, please.
#2
+10lgg for this post.

AMIDOINGITRITE
#3
+10lgg for this post.

AMIDOINGITRITE

Nope.

+1lgg
#4
+5lgg

cool feature. Now we just need the 'like' button back.
#5
I was making this as an alternative to a like feature. I'm thinking of having it display "[user] donated [x] LGG to this post" displaying at the bottom of donated posts or something, to make them stand out.[/x][/user]
#6
Like was tied to rep though, not LGG

Like was also a button, not a text command. So it's more tedious and takes lgg from you. Having it display the text after you donated to someone is sort of redundant because "+lgg" seems indicative enough.

YOU SHOULD IMPLEMENT BOTH BRO. The more the merrier. I dunno though.
#7
I know it's through rep, but people have already asked if they can just donate LGG through likes/rep. Ergo this.
#8
Like was tied to rep though, not LGG

Like was also a button, not a text command. So it's more tedious and takes lgg from you. Having it display the text after you donated to someone is sort of redundant because "+lgg" seems indicative enough.

YOU SHOULD IMPLEMENT BOTH BRO. The more the merrier. I dunno though.


+1lgg
#9
+1lgg


+UNION SELECT 7--lgg
#10
GAMEchief wrote:
If you follow a quote (with username and post ID; e.g. the quotes that appear in Reply With Quote) with +#lgg, it will now automatically donate # of your LGG to that user.

This is beta. Don't be surprised if you encounter a bug. But it seems bugless for now.

Leave feedback, please.


+100000lgg
#11
+UNION SELECT 7--lgg


You have to be really inexperienced if you think a raw SQL query would ever work.

The text command has no notion of SQL at all and is processed on the server side.

Even assuming it worked, which isn't possible, wouldn't it dump the info to GAMEchief via PM rather than publicly. Just a thought.
#12
It's based on RegExp anyway, because I'm not an idiot. So if it's not literally a number, it won't even be recognized any differently than any other thing you type.

As the guy who exploited LG countless times, don't hold your breath on finding any exploits in my code. :P
#13
Lol Unintelligible, I was going out on a limb. I didn't expect it to work, it was more for the humor of putting an SQL statement as the value more than it was to actually try to exploit it. And anyway, I would have had to post a huge number that I would expect to dump an error, because the LG database probably has way more than 7 measly columns.

Also, lol @GAME. That's true.
#14
7 columns?

SELECT 7 just returns the integer 7.
#15
GAMEchief wrote:
7 columns?

SELECT 7 just returns the integer 7.


No, in SQL injection you use UNION SELECT statements to try to find the number of columns the website has.

For example,

vulnerablewebsite.com/vulnerable.php?vulnerableURL=UNION SELECT 7--

If there's 7 columns or under, it would return a normal page.

If you do

vulnerablewebsite.com/vulnerable.php?vulnerableURL=UNION SELECT 8--

and there's only 7 columns, there would be a huge MySQL error covering that page, about how it can't read the 8th column.

EDIT: GOD DANG IT, IT WON'T UN-HYPERLINK IT. Gonna remove the www.
#16
wat
#17
HTML wrote:
wat

+1lgg

Like dat
#18
HTML wrote:
wat


+9%007777777lgg
#19
No, in SQL injection you use UNION SELECT statements to try to find the number of columns the website has.

For example,

vulnerablewebsite.com/vulnerable.php?vulnerableURL=UNION SELECT 7--

If there's 7 columns or under, it would return a normal page.

If you do

vulnerablewebsite.com/vulnerable.php?vulnerableURL=UNION SELECT 8--

and there's only 7 columns, there would be a huge MySQL error covering that page, about how it can't read the 8th column.

EDIT: GOD DANG IT, IT WON'T UN-HYPERLINK IT. Gonna remove the www.


Lel. This isn't right. Union simply merges multiple select queries, but it will only work if the resulting queries return the same number of columns. In MySQL, SELECT 7 will, like Charles said, return one column, one row, with a header and value of 7. So if you had a table with 7 columns, and you tried to perform a union with SELECT 7, it would give a MySQL error (which may or may not be reflected in your page).

If you truly wanted to test how many columns there were in a table with a union, you'd want to do something like UNION SELECT 1,2,3,4,5,6,7 for 7 columns.

:)
#20
Sheeeiiiittt you guys are correct, just realized I'm mixing the two up. I meant ORDER BY, not UNION SELECT. UNION SELECT is for getting the data, but you can also get the columns with the method arti said.