Create a Post
cancel
Showing results for 
Search instead for 
Did you mean: 

Session description check

Danny
Champion Champion
Champion

🛒 More SmartTasks
👍 Tested to be working with R81.20+

SmartTask to verify that a session description is at least 20 characters.

Script code

Copy the code below into a new script of your SmartConsole script repository.
test `cat $1|jq -r .session.\"session-description\"|wc -c` -le 20 && echo '{"result":"failure","message":"Session description should be at least 20 characters"}' || echo '{"result":"success"}'

SmartTask

Create a new SmartTask in SmartC
...;
TO ACCESS CHECKMATES TOOLBOX it's simple and free

Disclaimer: Check Point does not provide maintenance services or technical or customer support for third party content provided on this Site, including in CheckMates Toolbox. See also our Third Party Software Disclaimer.




4 Replies

ic3w4Il
Employee
Employee

For compliance its amazing thing, thanks for share

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free


(1)

the_rock
Legend
Legend

Verified in R81.20 lab, works as described! 👍

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free


(1)

patones1
Contributor

Verified in R81.20 lab. for "Session Name"

It also works perfectly with session name..
Just it will be necessary to modify the script the way Danny wrote in my post:
"change "session-description" to "session-name" and adjust the message accordingly"

By doing this, you get the failure message when publishing with a session name is less of 20 characters, and you get the success message (see bellow) when publishing with a session name longer than 20 characters

Succes_champion_Script.JPG

 

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free


the_rock
Legend
Legend

Thats right  @patones1 . I got exact same behavior in my R81.20 lab.

Cheers,

Andy

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free


0 Kudos