Spam Orders Getting past Captcha and even hooks
-
I have a very odd spam order bot hitting my site once every 45-90 minutes. It looks like they are just testing credit cards, because they all fail.
They submit their orders with some obvious similarities, so I created a plugin to detect and stop the spam orders.
I hooked up my plugin to all three of these hooks, and none of them were triggered when the spam orders came through:
add_action(‘woocommerce_checkout_process’, ‘check_order_conditions’);
add_action(‘woocommerce_checkout_order_processed’, ‘check_order_conditions’, 10, 3);
add_action(‘woocommerce_checkout_order_processed’, ‘check_order_conditions’, 10, 3);Any idea how these spam orders could be getting into our system (and attempting to charge a card) without triggering any of these hooks? This looks to me like a back-door access or security breach.
Thank you for your time.
Ashton
(I have been working on this for a month on this other thread: https://www.ads-software.com/support/topic/spam-orders-getting-past-hooks/12
It looks like the spammers have slowed down to be very rare, but we had to switch payment gateways for a bit, and we prefer this PayPal experience (where the card is accepted on the site.))The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.