You are not logged in.
Pages: 1
Hi all,
Please use this thread to report spam or any other suspicious activity. You can also use the "Report" links within every post. We do read & act on those.
Thanks,
-James
James Burk | Webmaster & IT Director | The Mars Society
jburk@marssociety.org | +1 (206) 601-7143
Offline
The user Stanislawa has posted some lewd spam on our forums. I have permabanned them but it seems that I do not have the permissions to delete their posts.
Edit: I can delete their posts in every forum but this one.
Last edited by JoshNH4H (2018-02-05 11:22:44)
-Josh
Offline
Sorry could only watch it happen while at work....
Offline
Like the post above this one, there was not much I could do from where I work....
Please remove this advertising content for fake / illegal passports, Visa cards, etc. Perhaps we should have some sort of content filter that queues up any content for review that contains certain keywords or patterns prior to posting it. That could easily be part of the submission logic and there's likely hooks or API's for doing that. I know that there's a way to use regular expressions within the software you're using to do that. I've never done that for bulletin board software, but I've done it on E-mail servers and within databases.
Thanks,
kbd512
That is something that I can meantion as to how frequent we are getting these.
Offline
SpaceNut,
Do a Google search on regular expressions to learn about how to use them to filter questionable content. Anything that talks about passports, other government identification documents, driver's licenses, or marijuana products is automatically suspect. That sort of content generally has little or nothing to do with aerospace science and technology or space exploration, which is what this forum is all about.
Offline
The filter script needs to be aprroved by the FluxBB and they do have some things already and its a matter of getting it installed on the server the board rides on.
Message was sent to address the issue, to that Admin level but I hear you as its one more attack that could take down the forum again....as it happened in 2008 ish time frame.. We were down for nearly 2 years and while we have recovered the data to put back its just time consuming as its board topic areas were different than they are now.
Offline
Multiple posts with the same content could be picked up and used to identify things like yesterday's fake document posts.
Offline
More garbage today, as well.
Offline
"Interplanetary Transportation" has a new thread in Russian, that is spam advertising construction equipment, according to the translation.
GW
GW Johnson
McGregor, Texas
"There is nothing as expensive as a dead crew, especially one dead from a bad management decision"
Offline
Cleaned up all four perpetrators
Offline
SpaceNut,
These spammers are so obnoxious that I finally broke down and started going through the code for FluxBB.
The affected portion of the submission logic that we can use to stop these spammers is thus:
if ($pun_config['o_censoring'] == '1')
{
$cur_post['subject'] = censor_words($cur_post['subject']);
$cur_post['message'] = censor_words($cur_post['message']);
}
Please add "passport" to the list of censor words for the "censor_words" function to search for in both the subject and message contained in the "$cur_post" collection / associative array variable prior to posting to the forum. If we need to take it a step further and merely delay posting for moderator approval to determine if the keyword was used in a legitimate post / context, please let me know and I'll hunt down some code to do that or write it myself.
The actual code files that must be modified is either "functions.php" or "post.php" and "edit.php". We need to alter how "censor_words" functions to preclude acceptance of the submission. Alternatively, we just modify "post.php" and "edit.php" to return an error message to anyone who posts or edits a post containing one of the censor words. The "cache_censoring.php" file should be generated from the TABLE named CENSORING in the database, so we're ultimately going to add rows to "CENSORING ( ID, SEARCH_FOR, REPLACE_WITH )" and then alter some of the aforementioned code to dump the post for moderator review or outright reject it to preclude what is most likely spam from junking up the database. We can do that with censor word values from a pre-generated flat file, which is how "CENSORING" gets loaded, or at least that's what "install.php" appears to do.
// How we could potentially use regular expressions to mitigate the spammers
$censoring_regex = ".+c_word1|c_word2|c_word_3.+";
if (preg_match($censoring_regex, $cur_post['subject'])) {
message($lang_common['No permission'], false, 'Your post was flagged for censored content and moderator review.');
}
Offline
Good news IT for Mars Society has time to take care of this over the weekend.
Thanks and appreciation to kdb512 as we are working on it with priority.
Offline
Hope this works!
Offline
You sure have lots of cooties today.
I like people who criticize angels dancing on a pinhead. I also like it when angels dance on my pinhead.
Offline
Just got home from work but will check each post...
Offline
Not a complaint or a criticism.
Thank You for your hard work SpaceNut.
I like people who criticize angels dancing on a pinhead. I also like it when angels dance on my pinhead.
Offline
Pages: 1