Created
February 27, 2018 10:37
-
-
Save mustafaakin/33d099dd04a8c0ddb41c7a3296c40c78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT destinationport, | |
COUNT(*) AS total | |
FROM flows | |
WHERE action = ‘REJECT’ | |
GROUP BY destinationport | |
ORDER BY total DESC LIMIT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment