Generating the Checksum id dynamically

Introduction :

It is used to solve the apex vulnerability problems by generating the checksum id dynamically.

Implementation :

  1. Ajax(Application Process) used call the Oracle Query of MD5_CHECKSUM
  2. Java method of Math.random used to get Random no
  3. Random no used to get the Attribute value from Select list

Example :

thisObj = objs[rand_no];

if(thisObj){

checksumId=thisObj.getAttribute(‘value’);

return checksumId;

  1. Apex Generate the checksum id per day only one time, I have customized and generated the checksum id per each page refresh.
  2. Here show the checksum id screenshot,

Conclusion :

 

Solving some major issues by generating the checksum id dynamically per each page refresh.

 

Recent Posts