Spam Orders Getting past 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.
AshtonThe page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.