user table dump
Posted by SecretNinjaMan Maker
August 22, 2008 12:21AM |
Registered: 15 years ago Posts: 95 |
August 22, 2008 01:24AM |
Admin Registered: 22 years ago Posts: 4,495 |
August 22, 2008 02:05AM |
Admin Registered: 19 years ago Posts: 8,532 |
Why do you ask? You got hacked?
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
Maurice Makaay
Phorum Development Team



Re: user table dump August 22, 2008 03:03AM |
Admin Registered: 21 years ago Posts: 9,240 |
August 22, 2008 04:12PM |
Registered: 15 years ago Posts: 95 |
August 22, 2008 04:20PM |
Admin Registered: 19 years ago Posts: 8,532 |
What the heck are you targeting at?
You really expect to get some hacking recipe or so?
Or like I put it before: "Why do you ask? You got hacked?"
Since you seem to have started with Phorum 5.2 as your first Phorum and not with 5.0, this sounds a lot like you are trying to find a convenient way to hack into somebody else's board and rip their user database, possibly for trying to steal the other board's users. Maybe this is not the case, but you have been asking similar stuff in the past (how to find all hidden forums with a script) and with the very limited info that you provide and with targeting Phorum 5.0 , I get really really suspicious about your intentions.
To get rid of that suspicion, you really need to explain what you are targeting at, instead of doing some baitless fishing in here.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
You really expect to get some hacking recipe or so?
Or like I put it before: "Why do you ask? You got hacked?"
Since you seem to have started with Phorum 5.2 as your first Phorum and not with 5.0, this sounds a lot like you are trying to find a convenient way to hack into somebody else's board and rip their user database, possibly for trying to steal the other board's users. Maybe this is not the case, but you have been asking similar stuff in the past (how to find all hidden forums with a script) and with the very limited info that you provide and with targeting Phorum 5.0 , I get really really suspicious about your intentions.
To get rid of that suspicion, you really need to explain what you are targeting at, instead of doing some baitless fishing in here.
Maurice Makaay
Phorum Development Team



August 22, 2008 04:34PM |
Registered: 15 years ago Posts: 95 |
Get hacked with another forum with 5.0. Someone injected a php file in. not sure whether it is from Phorum 5.0. Still have not figured out where it is from.
Don't want to disclose which site it is because it may happen again.
Edited 2 time(s). Last edit at 08/22/2008 04:37PM by SecretNinjaMan Maker.
Don't want to disclose which site it is because it may happen again.
Edited 2 time(s). Last edit at 08/22/2008 04:37PM by SecretNinjaMan Maker.
August 22, 2008 04:39PM |
Admin Registered: 19 years ago Posts: 8,532 |
We have seen injections that were never tracked down to Phorum. They were more likely done through other code on the server, directly in the MySQL database. These also appeared in many applications, not only Phorum, making it less likely to be a Phorum specific hack.
Like Brian said: "There is no known vulnerability of this type." That still stands.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
Like Brian said: "There is no known vulnerability of this type." That still stands.
Maurice Makaay
Phorum Development Team



August 22, 2008 04:45PM |
Registered: 15 years ago Posts: 95 |
August 22, 2008 04:56PM |
Admin Registered: 19 years ago Posts: 8,532 |
I don't want to discuss this in public, nor in private.
The main problem would be bad coding.
Go search the net. There are many resources on web application programming and security. Some standard topics: XSS (cross site scripting), SQL injections, poisoned null byte, remote inclusion, register_globals, etc. etc.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
The main problem would be bad coding.
Go search the net. There are many resources on web application programming and security. Some standard topics: XSS (cross site scripting), SQL injections, poisoned null byte, remote inclusion, register_globals, etc. etc.
Maurice Makaay
Phorum Development Team



August 23, 2008 05:00PM |
Registered: 15 years ago Posts: 95 |
August 23, 2008 06:54PM |
Admin Registered: 19 years ago Posts: 8,532 |
That depends on what you are using the data for. I cannot choose one from your three proposed functions, since they target different fields of protection and they all have their needs. There is no magic function that you can call to protect your code. You need to understand what is going on and write your code based on that.
Phorum 5.2 uses mysql_real_escape_string() and mysqli_real_escape_string() to build valid SQL queries that do not suffer from SQL injections. It also uses htmlspecialchars() and htmlentities() to protect against XSS vulnerabilities. It also uses various other techniques like protecting against remove inclusions by validation of variables that can be provided by users in URLs for example.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
Phorum 5.2 uses mysql_real_escape_string() and mysqli_real_escape_string() to build valid SQL queries that do not suffer from SQL injections. It also uses htmlspecialchars() and htmlentities() to protect against XSS vulnerabilities. It also uses various other techniques like protecting against remove inclusions by validation of variables that can be provided by users in URLs for example.
Maurice Makaay
Phorum Development Team



August 23, 2008 09:30PM |
Registered: 15 years ago Posts: 95 |
Sorry, only registered users may post in this forum.