Open In App

Server Side Filter in Cyber Security Field

Filters are the validation check performed on the user’s input to ensure that the input the user has entered follows the expected input.

For example, below is the picture depicting filter check on user input.
 



As you can see in the above picture, the input is expected to be in letters ie- letters >=(‘a’ or ‘A’ )and letters<=(z or ‘Z’), any other key input won’t be accepted by the webpage.Here, the name @abhi1jith won’t is accepted by the webpage as there’s a filter check associated with the input field which is- the letter of the name must contain alphabet only, and here, the input contains integer as well as an alphanumeric character which is not allowed according to the filter programmed behind it.



Types of web application filters

There are basically  two types of Web Application Filters:

let’s understand the server-side filter with an example.

 Features of server-side filters:

Advantages of server-side filters:

As compared to client-side filters, the server-side filters have much more advantages. the advantages of the server-side filters are listed below-

Article Tags :