It's pretty easy to do. First of all you have to make sure you are on the homepage (i.e. empty request URL) and then you check for a non empty query string in the conditions. If both are the case, you do a permanent redirect back to the same URL (= URI without query string).
Like:
<rule name="Remove query string" stopProcessing="true">
<match url="^$" />
<conditions>
<add input="{QUERY_STRING}" pattern="^$" negate="true" />
</conditions>
<action type="Redirect" url="{URL}" appendQueryString="false" />
</rule>
If you want you could add a more specific condition to let it only match this specific inbound link.
UPDATE:
I suspect that there is some double URL encoding going on in your URL. For example, %253E is probably ment to be %3E as %25 is the percentage sign URL encoded. And %3E is the > character URL encoded. So I think you will have more luck with this:
<rule name="Remove query string" stopProcessing="true">
<match url="^$" />
<conditions>
<add input="{QUERY_STRING}" pattern="^c%3E'dmjdlgsbve%3E2'lfzxpset%3E'sbol%3E2'f%3E'vsm%3Eiuuq;00xxx/opdmjdlz/dpn0'gffe%3Eopqbz'qsjdf%3E'tbq%3Ebd7g8g73cc3c7d:f5925f3efd2f62dcd'zbsht%3Exxx/opdmjdlz/dpn$" />
</conditions>
<action type="Redirect" url="{URL}" appendQueryString="false" />
</rule>