This tutorial will show how to capture date and time from a PC ou mobile device and insert this data in your C2's project. You need to insert in your project th...
set h to :
Browser.ExecJS("var today = new Date(); today.getHours();")
set m to:
Browser.ExecJS("var today = new Date(); today.getMinutes();")
set s to:
Browser.ExecJS("var today = new Date(); today.getSeconds();")
set text to
zeropad(h,2) &":"& zeropad(m,2) &":"& zeropad(s,2)