You can simply ad below codes.. so that only logged in user can mark products as spam.
I was also facing this issue before.. many listing Marking as spam because of bot.. so I have added this
You can add If else osc_is_web_user_logged_in() in item.php
check here - I have done in my website
<div id="report" class="noselect">
<a href="#" onclick="return false;">
<i class="fas fa-exclamation-circle"></i>
<?php _e('Report listing', 'delta'); ?>
</a>
<div class="cont-wrap">
<div class="cont">
<?php if(!osc_is_web_user_logged_in()) { ?>
<em><?php _e('You must be logged in to report listing', 'delta'); ?></em>
<?php } else { ?>
<a id="item_spam" class="reports" href="<?php echo osc_item_link_spam() ; ?>" rel="nofollow"><?php _e('Spam', 'delta') ; ?></a>
<a id="item_bad_category" class="reports" href="<?php echo osc_item_link_bad_category() ; ?>" rel="nofollow"><?php _e('Misclassified', 'delta') ; ?></a>
<a id="item_repeated" class="reports" href="<?php echo osc_item_link_repeated() ; ?>" rel="nofollow"><?php _e('Duplicated', 'delta') ; ?></a>
<a id="item_expired" class="reports" href="<?php echo osc_item_link_expired() ; ?>" rel="nofollow"><?php _e('Expired', 'delta') ; ?></a>
<a id="item_offensive" class="reports" href="<?php echo osc_item_link_offensive() ; ?>" rel="nofollow"><?php _e('Offensive', 'delta') ; ?></a>
<?php } ?>
</div>
</div>
</div>