Advertisement
klebermo

Untitled

Jul 14th, 2023
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function submit() {
  2.     var form = document.querySelector("form");
  3.     var plainText = document.querySelector("input[name=ip]").value;
  4.  
  5.     var fileInput = document.createElement('input');
  6.     fileInput.type = 'file';
  7.  
  8.     fileInput.addEventListener('change', function (e) {
  9.         var file = e.target.files[0];
  10.         var reader = new FileReader();
  11.  
  12.         reader.onloadend = function (e) {
  13.             var privateKey = e.target.result;
  14.  
  15.             var encryptor = new JSEncrypt();
  16.             encryptor.setPrivateKey(privateKey);
  17.             var signedText = encryptor.sign(plainText, SHA256, "sha256");
  18.  
  19.             const params = new URLSearchParams();
  20.             params.append('token', signedText);
  21.  
  22.             fetch(form.action, {
  23.                 method: form.method,
  24.                 headers: {
  25.                     'Content-Type': 'application/x-www-form-urlencoded'
  26.                 },
  27.                 body: params
  28.             })
  29.             .then(response => {
  30.                 var main = document.querySelector("main");
  31.                 var p = document.createElement("h1");
  32.                 p.textContent = response.text();
  33.                 main.appendChild(p);
  34.                 //window.location.href = "http://localhost/inbox/home";
  35.             })
  36.             .catch(error => {
  37.                 var main = document.querySelector("main");
  38.                 var p = document.createElement("h1");
  39.                 p.textContent = error.text();
  40.                 main.appendChild(p);
  41.             });            
  42.         };
  43.  
  44.         reader.readAsText(file);
  45.     });
  46.  
  47.     fileInput.click();
  48. }
  49.  
  50. function SHA256(string) {
  51.     function rotr(x, n) {
  52.         return (x >>> n) | (x << (32 - n));
  53.     }
  54.  
  55.     function sha256(message) {
  56.         const words = [];
  57.         let h0 = 0x6a09e667;
  58.         let h1 = 0xbb67ae85;
  59.         let h2 = 0x3c6ef372;
  60.         let h3 = 0xa54ff53a;
  61.         let h4 = 0x510e527f;
  62.         let h5 = 0x9b05688c;
  63.         let h6 = 0x1f83d9ab;
  64.         let h7 = 0x5be0cd19;
  65.  
  66.         const k = [
  67.         0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  68.         0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  69.         0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  70.         0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  71.         0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  72.         0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  73.         0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  74.         0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  75.         ];
  76.  
  77.         message += String.fromCharCode(0x80);
  78.         const originalLength = message.length * 8;
  79.         let paddingBytes = 64 - ((message.length + 8) % 64);
  80.         paddingBytes = paddingBytes === 64 ? 0 : paddingBytes;
  81.  
  82.         for (let i = 0; i < paddingBytes; i++) {
  83.             message += String.fromCharCode(0x00);
  84.         }
  85.  
  86.         message += String.fromCharCode((originalLength >>> 56) & 0xff);
  87.         message += String.fromCharCode((originalLength >>> 48) & 0xff);
  88.         message += String.fromCharCode((originalLength >>> 40) & 0xff);
  89.         message += String.fromCharCode((originalLength >>> 32) & 0xff);
  90.         message += String.fromCharCode((originalLength >>> 24) & 0xff);
  91.         message += String.fromCharCode((originalLength >>> 16) & 0xff);
  92.         message += String.fromCharCode((originalLength >>> 8) & 0xff);
  93.         message += String.fromCharCode(originalLength & 0xff);
  94.  
  95.         for (let i = 0; i < message.length; i += 64) {
  96.             const chunk = message.slice(i, i + 64);
  97.             const w = [];
  98.  
  99.             for (let j = 0; j < 16; j++) {
  100.                 w[j] = ((chunk.charCodeAt(j * 4) & 0xff) << 24) |
  101.                 ((chunk.charCodeAt(j * 4 + 1) & 0xff) << 16) |
  102.                 ((chunk.charCodeAt(j * 4 + 2) & 0xff) << 8) |
  103.                 (chunk.charCodeAt(j * 4 + 3) & 0xff);
  104.             }
  105.  
  106.             for (let j = 16; j < 64; j++) {
  107.                 const s0 = rotr(w[j - 15], 7) ^ rotr(w[j - 15], 18) ^ (w[j - 15] >>> 3);
  108.                 const s1 = rotr(w[j - 2], 17) ^ rotr(w[j - 2], 19) ^ (w[j - 2] >>> 10);
  109.                 w[j] = (w[j - 16] + s0 + w[j - 7] + s1) & 0xffffffff;
  110.             }
  111.  
  112.             let [a, b, c, d, e, f, g, h] = [h0, h1, h2, h3, h4, h5, h6, h7];
  113.  
  114.             for (let j = 0; j < 64; j++) {
  115.                 const s1 = rotr(e, 6) ^ rotr(e, 11) ^ rotr(e, 25);
  116.                 const ch = (e & f) ^ (~e & g);
  117.                 const temp1 = (h + s1 + ch + k[j] + w[j]) & 0xffffffff;
  118.                 const s0 = rotr(a, 2) ^ rotr(a, 13) ^ rotr(a, 22);
  119.                 const maj = (a & b) ^ (a & c) ^ (b & c);
  120.                 const temp2 = (s0 + maj) & 0xffffffff;
  121.  
  122.                 h = g;
  123.                 g = f;
  124.                 f = e;
  125.                 e = (d + temp1) & 0xffffffff;
  126.                 d = c;
  127.                 c = b;
  128.                 b = a;
  129.                 a = (temp1 + temp2) & 0xffffffff;
  130.             }
  131.  
  132.             h0 = (h0 + a) & 0xffffffff;
  133.             h1 = (h1 + b) & 0xffffffff;
  134.             h2 = (h2 + c) & 0xffffffff;
  135.             h3 = (h3 + d) & 0xffffffff;
  136.             h4 = (h4 + e) & 0xffffffff;
  137.             h5 = (h5 + f) & 0xffffffff;
  138.             h6 = (h6 + g) & 0xffffffff;
  139.             h7 = (h7 + h) & 0xffffffff;
  140.         }
  141.  
  142.         const hash = [
  143.         (h0 >>> 24) & 0xff, (h0 >>> 16) & 0xff, (h0 >>> 8) & 0xff, h0 & 0xff,
  144.         (h1 >>> 24) & 0xff, (h1 >>> 16) & 0xff, (h1 >>> 8) & 0xff, h1 & 0xff,
  145.         (h2 >>> 24) & 0xff, (h2 >>> 16) & 0xff, (h2 >>> 8) & 0xff, h2 & 0xff,
  146.         (h3 >>> 24) & 0xff, (h3 >>> 16) & 0xff, (h3 >>> 8) & 0xff, h3 & 0xff,
  147.         (h4 >>> 24) & 0xff, (h4 >>> 16) & 0xff, (h4 >>> 8) & 0xff, h4 & 0xff,
  148.         (h5 >>> 24) & 0xff, (h5 >>> 16) & 0xff, (h5 >>> 8) & 0xff, h5 & 0xff,
  149.         (h6 >>> 24) & 0xff, (h6 >>> 16) & 0xff, (h6 >>> 8) & 0xff, h6 & 0xff,
  150.         (h7 >>> 24) & 0xff, (h7 >>> 16) & 0xff, (h7 >>> 8) & 0xff, h7 & 0xff
  151.         ];
  152.  
  153.         let hashHex = '';
  154.  
  155.         for (let i = 0; i < hash.length; i++) {
  156.             const value = hash[i];
  157.             const hex = (value < 16 ? '0' : '') + value.toString(16);
  158.             hashHex += hex;
  159.         }
  160.  
  161.         return hashHex;
  162.     }
  163.  
  164.     return sha256(string);
  165. }
  166.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement