Re: HTS Needs to Stop Sucking

fashizzlepop wrote:Thats exactly what I meant and I know Its possible in phpBB.
These forums are PHPBB; just modified. Let me talk to Monica.
Training the hacker underground
https://www.hackthissite.org/forums/
https://www.hackthissite.org/forums/viewtopic.php?f=9&t=6608
fashizzlepop wrote:Thats exactly what I meant and I know Its possible in phpBB.
fashizzlepop wrote:I am going to guess that if this was put in place, we would need more mods to keep up with posts. Maybe not.
fashizzlepop wrote:tremor77 wrote:@sanddbox: I hate making suggestions for HTS without putting my money where my mouth is.. I think I'll go ahead and apply on that promoter position.
Why bother? There's nothing happening right now. Hopefully soon, we will have a change in authority structure and shit will begin to *click*
We need more mods/admins. There aren't enough IMO. Not enough administrative presence.
~More mods would be used for new member moderation, described later. Also, for stricter spoiler filtering.
fashizzlepop wrote:1. I believe the admins need to freely share progress with whatever projects are currently being developed (if any at all) with the community (if we can even call it that anymore).
The entire HTS staff agree with your statement here. However, just because we work on specific projects - it doesn't mean it is guaranteed for release. We hate to make promises, and we hate to make things LOOK like promises, if that makes any sense.
2. I would very much like to see a weekly update regardless of how anti-climactic it is. Even if it just an funny story by a admin or mod.
There will be a huge change in staff structure, especially with the Moderation group. We will continue to bring you pure entertainment, or just good ol' relevant education.
3. The community should be more open with their suggestions and criticisms and this thread should be a start.
Of course, HackThisSite cannot improve without feedback. We're ALWAYS open to any feedback, whether negative or positive. Feel free to email any HTS staff directly, PM us, or join #comdev on IRC to voice.
4. We need more mods/admins. There aren't enough IMO. Not enough administrative presence.
~More mods would be used for new member moderation, described later. Also, for stricter spoiler filtering.
We absolutely agree! I am inviting those interested to become a HackThisSite Forum Moderator to apply. Please, please, please keep in mind we do have specific requirements. Please refer to, "Want To Become A HackThisSite Staff Member?" thread. If you do NOT have forum or moderation experience or if you have less than 200 posts on this forum, please do NOT apply. Interviews will be selected, so do not ask.
5. Apparently Kage and Monica are 2 of the higher ups on this site, are there others? This is a complete guess as there is absolutely NO evidence (that I have found on the site) of them giving any sort of fuck about this site. Upset, noods.
Kage has absolutely been doing his best working behind the scenes. Although I admit to being inactive, doesn't mean I don't care about HackThisSite. I've been a user and a staff for quite some time. The rest of the staff have their own duties.
6. No more lectures to be heard of and the HTS Radio is hardly mentioned... PS. EnigmaGroup.org is holding a small lecture on SQL Injection (live targets) this Friday around 8pm Central.
It doesn't mean we're dead. The staff and I will continue to restore the community. To be honest, we're working to bring lectures back! Of course, with major improvements.
7. Forum policies should change. New member's posts should be more scrutinized. Many forums moderate the first few posts of new members. Rules are usually applied such as "Google first," "search for previous threads first," etc...
Agreed. Bear with us because we're still working on it.
8. I'm not sure how the current hierarchy of admins and mods is set up currently, but it should be less monarchical and more democratic. Ie, no "Lead Mod" rather 2+ Lead Mods to make decisions. Same with Admins.
I will not express my personal opinion here, but I have selected Defience as Lead Mod to assist with upcoming projects. No, this is not a decision that was made out of spite. I personally selected Defience as my partner as of two years ago! He's a very, very trustworthy and dedicated person and a staff member and here to contribute. Of course, do not forget about Goatboy, Sanddbox, Insomn, Mischief, Eljonto and Tgoe! They're here to stay, and we're all "Super Mods." URUPSET.
Who will read this, and who will care enough to make a difference?
About time a caring HTS user voicing his opinion. Bravo. All feedback are taken into consideration.
Love,
fashizzlepop
Edit/PS: I would like to give a shout out to Thetan and Bren2010 for pushing the development along, regardless of how much others want to shut things down. Also, the current mods are doing a great job *ahem* minus Manica *ahem*!
Okay, great! I will let them know.
Yes, it's that time of the year again folks - HackThisSite is once again looking for developers!
We will be hiring people from the #help channel - the first 5 volunteers under the age of 15 will be accepted, followed by a further 3 who meet the following criteria:
* Must have at most 3 months of PHP experience.
* Must have developed at least one HackThisSite clone with no real features or missions
* Must be experienced in using mysql_query to execute vulnerable statements by concatenating unescaped user input with SQL strings.
* Must have either little or no experience with mitigating XSS and CSRF attacks. Ideally we would like someone who has hacked together a sanitize(...) function which applies unnecessary and useless encodings to the input.
* Must have little or no knowledge of cryptography, bonus points if you double or triple hash passwords with your own custom hash algorithm.
New developers will be given direct access to the live site and database with no background checks or trial periods.
In a month or so, after the site has been defaced and the database dropped, we will be hiring again. So don't worry if you miss out this time.
Any questions, join us in #htsdev
CREATE TABLE news (
id INTEGER UNSIGNED AUTO_INCREMENT,
title VARCHAR(256),
body TEXT,
PRIMARY KEY (id)
);
class News : DataMapper {}
$n = new News();
$n->title = "My First News Post";
$n->body = "Hello, this is the body of the post";
$n->save();
ALTER TABLE news ADD COLUMN date DATETIME;
$n->date = time();