shell bypass 403
function copyCurrentUrl() {
var copyText = document.getElementById('referral_link').value;
console.log(copyText);
var dummy = $('<input>').val(copyText).appendTo('body').select()
document.execCommand('copy');
toastr.success('Referral Link Copied Successfully', 'Success Alert');
}