UNDERCODE COMMUNITY
2.7K subscribers
1.24K photos
31 videos
2.65K files
82.3K links
πŸ¦‘ Undercode World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE


✨ Youtube.com/Undercode
by Undercode.help
Download Telegram
Forwarded from Backup Legal Mega
Bookmyshow carding method.pdf
182.1 KB
Forwarded from Backup Legal Mega
Bookmyshow carding method_2.pdf
182.1 KB
Forwarded from Backup Legal Mega
Cashout paypal .pdf
64.7 KB
Forwarded from Backup Legal Mega
Cashout paypal _2.pdf
64.7 KB
Forwarded from Backup Legal Mega
Cashout paypal _3.pdf
64.7 KB
Forwarded from Backup Legal Mega
CC without Online access...pdf
199.3 KB
Forwarded from Backup Legal Mega
Ali Express Carding.pdf
93.3 KB
Forwarded from Backup Legal Mega
All about carding.pdf
72.3 KB
Forwarded from Backup Legal Mega
All about Spamming.pdf
41.7 KB
Forwarded from Backup Legal Mega
amazon carding .pdf
349.4 KB
Forwarded from Backup Legal Mega
Amazon Carding Tutorial-1.pdf
29.9 KB
Forwarded from Backup Legal Mega
Amazon Carding Tutorial-1_2.pdf
29.9 KB
Forwarded from Backup Legal Mega
πŸ¦‘ 18 Carding tricks
Forwarded from Backup Legal Mega
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from Backup Legal Mega
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁▁

πŸ¦‘How to get the maximum storage size of localStorage ?

A brief introduction to localStorage, sessionStorage, cookies

1) localStorage: Only the client storage does not participate in server communication. The storage size is generally 5M. If it is not manually cleared, then it will always exist even if the browser is closed.

2) sessionStorage: Only the client storage does not participate in server communication, the storage size is generally 5M, session-level storage, which means that it will be cleared if the current page or browser is closed

3) cookie: client storage, participate in server communication, storage size is 4k, can set life cycle, effective within the set life cycle

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁▁
Forwarded from Backup Legal Mega
πŸ¦‘The code :

function() {
if(!window.localStorage) {
console.log('-localStorage!')
}
var test = '0123456789';
var add = function(num) {
num += num;
if(num.length == 10240) {
test = num;
return;
}
add(num);
}
add(test);
var sum = test;
var show = setInterval(function(){
sum += test;
try {
window.localStorage.removeItem('test');
window.localStorage.setItem('test', sum);
console.log(sum.length / 1024 + 'KB');
} catch(e) {
alert(sum.length / 1024 + 'KB');
clearInterval(show);
}
}, 0.1)
})()

πŸ¦‘Run the above method directly in the browser console.

The local storage in the Chrome browser is 5120kb, which is 5M.

This undercode post about how to get the maximum storage size of localStorage is introduced here. For more related localStorage maximum storage content"

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁▁