I see the question you have, and thought I put some more info in this reply, cause comments are too short.
You seem to postulate, that it might be possible to spam the net, by sending messages with high fee, and you consider this as a possible attack vector (with "fake transaction").
To understand how the network works, it is essentially necessary to look into the validation rules of transactions, when they are sent over the network. The fees are calculated by substracting the output value from the input value. If it is above 0, then ok, else invalid.
As a particular person anyone can craft a malformed tx. The question is now, how could you do this? Again, looking at the rules, it seems impossible. When you send it, the receiving nodes and all other full nodes will verify this tx. If the tx is malformed, they will reject it, and your node will be marked as a node, which sent wrong data into the network. At a certain point in time your node will get added to the blacklist of each full node, so this malfunctioning node cannot disturb the network further.
So you would need to find a way on how to send invalid tx to other full nodes, and as Andrew and Osias replied, to the current knowledge this is impossible.
1What do you mean by "fake transaction"? There aren't "fake transactions", only valid and invalid transactions. – Andrew Chow – 2018-03-19T00:21:17.227
Yes, Invalid transactions – Monmoy Sarker – 2018-03-19T00:50:19.603
Invalid transactions are rejected, they never get to the mempool. – Osias Jota – 2018-03-19T01:11:24.797
I know that the transaction rules in the attacker software won't allow to broadcast the invalid transaction. But, if they change that rules and then broadcast those transactions. My point is not whether it will be accepted or not, but to flood the mempool of a miner. – Monmoy Sarker – 2018-03-19T01:14:44.670
3A miner won't accept invalid transaction into the mempool so it won't be flooded. – Andrew Chow – 2018-03-19T01:50:46.627
You're probably trying to figure out if a denial of service attack becomes more effective if you use invalid transactions instead of just spamming spurious data. – Osias Jota – 2018-03-19T03:16:03.600