Firstly, check your extensions to see what marketing pixel-related extensions have been installed, e.g. Meta Pixel, Google Tag, etc. That will give you a clue as to what to look for.
Then... comes the hard part: finding the Rules that contain actions that send the marketing pixels. If you found extensions earlier, then you might be able to find the related actions in one or more of your Rules.
- You can try searching using the global search at the top of Tags' UI. Try searching for "beacon" or "send" and see if any such actions are shown in the search results.
- If your Rules are well-named, then the Rule names might contain the labels of the marketing pixels when the Rules contain those actions.
Also, marketing pixels could be added via custom code actions. Unfortunately, there's no easy way to find them other than by inspecting the JS file of your environment. If you have a small number of Rules, you could also take the time to open them one by one and see if any of them contain custom code actions that might be firing marketing pixels.
Finally, you can also try using Tags' debug mode in your browser to get some clues. Open your website. Then, open your browser console and run "_satellite.setDebug(true)" (without the quote marks). This puts your Tags environment in debug mode. Now reload your page. Your browser console will fill up with several log messages. Some of them might be about marketing pixels. Use those messages to hunt down the actions in your Rules that are firing those marketing pixels.
Good luck!