[3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Scam Warning
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
HiFiKabin
Community Team Member
Community Team Member
Posts: 6758
Joined: Wed May 14, 2014 9:10 am
Location: Swearing at the PC, UK
Name: James

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by HiFiKabin »

ivailo95 wrote: Tue Jul 09, 2024 8:59 pm Is there any idea to be also in "contact us" page?
That is beyond the scope of this extension
User avatar
Dead Man
Registered User
Posts: 312
Joined: Tue Jun 05, 2012 12:35 am

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by Dead Man »

ivailo95 wrote: Tue Jul 09, 2024 8:59 pm Is there any idea to be also in "contact us" page?
You can have it in there. Couple steps you have to take but possible. I did it on mine. If you still want to figure it out let me know so I can see how I did it again since i forgot right now lol
User avatar
gbergna
Registered User
Posts: 37
Joined: Sat Jul 29, 2017 10:05 pm
Name: Federico Bergna

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by gbergna »

Thanks for this nice extension. I use phpbb 3.3.12 and php 8.2

It would be useful if the anti-spamm check could also appear for guests on the "contact" page. Currently the "field" asking you to enter the security code appears but the button to click to show the code does not appear.

I also use the "contact admin" extension but the situation does not change, whether the extension is activated or deactivated

Furthermore, I would suggest these changes for slightly more "boomer" users who may have difficulty understanding how to copy/paste the code on smartphones:

1- when you click on the "copy" indication, an indication appears with for example "copied".

2- when you click inside the field to insert the code, as soon as you click on the field an indication must appear with for example "paste".

3- Finally, from my point of view, for a better user friendly experience it would be more useful to put the button to show the code directly under the control field and not at the bottom of the footer of the page.

Image


Sorry but I have seen every type of user even "stupid" enough not to understand certain mechanisms.

PS: I added some CSS rules that allow me to give a "blink" effect to the label to highlight even more where you need to click to get the code:

Code: Select all

@keyframes smooth-blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.toggle-box {
    display: none;
}

.toggle-box + label {
    cursor: pointer;
    display: block;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 5px;
    color: #000000;
    background-color: #00ffba;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px;
    margin-top: 10px;
    animation: smooth-blink 2s ease-in-out infinite; /* Durata animazione aumentata a 2s con transizione più fluida */
}

/* Aggiungi questa regola per mantenere il colore del testo durante l'hover */
.toggle-box + label:hover {
    color: #000000 !important;
}

.toggle-box + label + div {
    display: none;
    margin-bottom: 10px;
}

.toggle-box:checked + label + div {
    padding:7px; 
    display: table; 
    margin:auto; 
    border-radius: 10px; 
}

/* Interrompi l'animazione quando il checkbox è selezionato */
.toggle-box:checked + label {
    animation: none;
}

User avatar
gbergna
Registered User
Posts: 37
Joined: Sat Jul 29, 2017 10:05 pm
Name: Federico Bergna

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by gbergna »

Hi, unfortunately I tested this extension for 7 days. Out of 7 days, spammers crashed my site for 5 days. I'm sorry about the work but I found a more effective solution by asking for example "what color is the logo of my site"? Spammers have been asking this simple question for several days. (I used ext to drag & drop responses)
User avatar
HiFiKabin
Community Team Member
Community Team Member
Posts: 6758
Joined: Wed May 14, 2014 9:10 am
Location: Swearing at the PC, UK
Name: James

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by HiFiKabin »

I am surprised to hear you say that. A colour answer is one the spambots have programmed in by default.

... but if it works for you, then it works for you. There is no one universal answer to the SPAM question
User avatar
gbergna
Registered User
Posts: 37
Joined: Sat Jul 29, 2017 10:05 pm
Name: Federico Bergna

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by gbergna »

HiFiKabin wrote: Mon Aug 12, 2024 3:37 pm I am surprised to hear you say that. A colour answer is one the spambots have programmed in by default.

... but if it works for you, then it works for you. There is no one universal answer to the SPAM question
For the moment it seems to be holding up but it's not just the request for a color. You can choose between 6 green color variations. I don't know... but for now it works. Thanks anyway for your work.

Image
User avatar
HiFiKabin
Community Team Member
Community Team Member
Posts: 6758
Joined: Wed May 14, 2014 9:10 am
Location: Swearing at the PC, UK
Name: James

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by HiFiKabin »

Sortable CAPTCHA makes a big difference. I (wrongly) assumed you meant a straight Q&A which would not be anywhere near as effective
User avatar
Dead Man
Registered User
Posts: 312
Joined: Tue Jun 05, 2012 12:35 am

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by Dead Man »

HiFiKabin wrote: Mon Aug 12, 2024 3:55 pm Sortable CAPTCHA makes a big difference. I (wrongly) assumed you meant a straight Q&A which would not be anywhere near as effective
Im surprise he had issues to. Been fantastic for me. Stopped Spam Registration on mine.
Was also able to intergrade it with this Contact Admin extension.
https://www.phpbb.com/customise/db/exte ... tact_admin

So instead of the Normal Captcha your pops up when using Contact Page. Cant remember what exactly I had change right now at top of my head but the annoying spam emails I was getting have stopped ever since putting this.
User avatar
gbergna
Registered User
Posts: 37
Joined: Sat Jul 29, 2017 10:05 pm
Name: Federico Bergna

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by gbergna »

Dead Man wrote: Mon Aug 12, 2024 10:40 pm
HiFiKabin wrote: Mon Aug 12, 2024 3:55 pm Sortable CAPTCHA makes a big difference. I (wrongly) assumed you meant a straight Q&A which would not be anywhere near as effective
Im surprise he had issues to. Been fantastic for me. Stopped Spam Registration on mine.
Was also able to intergrade it with this Contact Admin extension.
https://www.phpbb.com/customise/db/exte ... tact_admin

So instead of the Normal Captcha your pops up when using Contact Page. Cant remember what exactly I had change right now at top of my head but the annoying spam emails I was getting have stopped ever since putting this.
They also broke my "Sortable CAPTCHA" :| :| :( :( :( Ok... I'll try to install your ext again. I'm waiting for when it will also be compatible with the "contact admin" extension. Thank you
User avatar
Mick
Support Team Member
Support Team Member
Posts: 26798
Joined: Fri Aug 29, 2008 9:49 am

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by Mick »

I would suggest that if they’ve compromised your sortables already then the sortables settings are too easy.

(colours or numerical questions won’t work, you need to get creative)
  • "The more connected we get the more alone we become” - Kyle Broflovski© 🇬🇧
User avatar
ssl
Registered User
Posts: 1979
Joined: Sat Feb 08, 2020 2:15 pm
Location: Le Lude, Pays de la Loire - France
Name: Fred Rimbert

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by ssl »

The only effective way to combat spam accounts is to use the tools built into phpBB. The Q&A system or answer is not found on Google and use NRU group for the first 3 messages from new members.
Sorry for my English ... I do my best! :anger_right:

:point_right_tone3: phpBB: 3.3.13 | PHP: 8.3.9
:point_right_tone4: [Kill spam on phpBB] - [Some French translation of extensions]
"Mistress, Mistress someone is bothering me in pm"
User avatar
gbergna
Registered User
Posts: 37
Joined: Sat Jul 29, 2017 10:05 pm
Name: Federico Bergna

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by gbergna »

I'm trying a new Q&A combo. Originally the question was: what is the exact color of our site logo?

this is information that cannot be found on Google. A bot cannot be so advanced as to find the base color of a logo in the css code. However, the flaw in my previous setup was that:

- I gave a list of wrong colors and the user had to choose only one.

With this setting (only one item to choose) it is easy for a bot to bypass it. Just try to sign up by moving a single "answer" each time and it bypasses the check.

Now I applied a different logic:

1. Our logo has only one exact color among those listed. Which is the right one? Move the wrong colors!

In this way the bot "in theory" is forced to move more elements into the "wrong colors" column and therefore only has to EXCLUDE 1 answer.

This should be more complex logic for u BOT. I'll keep you updated as it goes...

CURRENT SETTING

Image

MY LOGO

Image
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3867
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay

Re: [3.2][3.3][RC] Obscure Registration Code (SPAM stopper)

Post by Kailey »

Please keep in mind that this topic is for support of the Obscure Registration Code extension. If you have a support question for the Sortables Captcha extension, please create a new topic in the Discussion/Support section here. If you have other spam replated issues not connected to these two extensions, please visit Preventing Spam in phpBB3 for various options for fighting spam in phpBB.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.

My little corner of the world | Administrator @ phpBB Modders

Return to “Extensions in Development”