Ability to scan attachments while uploading to SDP portal - Blacklist / whitelist feature

Ability to scan attachments while uploading to SDP portal - Blacklist / whitelist feature

This feature will scan the attachment that is about to be added to find out the Type/Extension of the files. You can allow/restrict the file extensions as you please.

For instance, .EXE is one of the vital file extension which most of the customers does not wish to allow to upload due to security concern. So, this feature will help prevent from users adding files of this extension. 

Allow or Restrict is done through SQL Update queries, In order to have the feature to work, please use the below queries to BLACKLIST or WHITELIST the file extensions used in the application.

Kindly Connect to the database and execute the query below if you are using PGSQL. If you are using MSSQL, please connect to the SQL studio and execute the queries.

Please note that after executing these queries, a RESTART of the application service is required in order to have the changes effective.

WHITELIST - It allows only the specified extension.

update attachmentconfig set paramvalue='WHITELIST' where parameter='BlackList_Or_WhiteList';
update attachmentconfig set paramvalue='exe,eml' where parameter='FileExtensions';

BLACKLIST - It DOES NOT allow the specified extensions (in the query below) to be added in the application. You will get a message stating "File extension not allowed"

update attachmentconfig set paramvalue='BLACKLIST' where parameter='BlackList_Or_WhiteList';
update attachmentconfig set paramvalue='exe,eml' where parameter='FileExtensions';


        New to ADManager Plus?

          New to ADSelfService Plus?

            • Related Articles

            • SDP Scan offerings a glance

              There are several use cases to be addressed to scan user machines. Here are the solutions available with SDP now. - User machine rarely reaches the organization domain / Network (user login once a week using VPN and other times using local ...
            • Agent scan understanding

              Agent scan in ServiceDesk plus happens in two way 1) Server to target machine  2) Agent from Machine to Server MODE 1:  1) Server to target machine        -This scan happens when you login to ServiceDesk plus \ Asset explorer from your workstation or ...
            • How to migrate data from SDP MSP to SDP ?

              Below are the only details which can be exported from SDP MSP and imported to SDP application. 1) You can export request data from ServiceDesk Plus MSP (SDP MSP) using XLS format. Requests -> Goto Admin -> Reports -> New custom report -> Tabular ...
            • How to share a backup/file attachments over a network path

              As i have mentioned the file attachments folder should be shared across a network path and the network path should be mentioned in the following format in the Admin->Self-Service Portal Settings. // Network server name/fileAttachments I have shared a ...
            • Self service Portal page crashes in UI

              In some case accessing Self service portal page crashes with the below error in UI, This issue occurs in all technician logins as well. In such scenario look for the error traces in the logs, Servlet.service() for servlet action threw ...