CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 08:03:16 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=9a699b0d23ecef3852ec8c97ddd9057a858024eec75b64e12d6dd913325f2c39a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22LebfksigT1YEEizoEgLC1CTYYAocNhEw%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d5146b9959c1bd-BLR
Young-Encrypter - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Expo testing security
- // Kalau mau tamba fitur agar lebih aman lagi ya silahkan ya
- // Lisensi? Tidak ada lisensi apapun di kode ini
- // Lu bebas dan lu bisa melakukan apa saja
- export const CHAR_MAP: Record<string, string> = {
- ' ': '§20', '!': '§21', '"': '§22', '#': '§23', '$': '§24', '%': '§25', '&': '§26',
- "'": '§27', '(': '§28', ')': '§29', '*': '§2a', '+': '§2b', ',': '§2c', '-': '§2d',
- '.': '§2e', '/': '§2f', '0': '§30', '1': '§31', '2': '§32', '3': '§33', '4': '§34',
- '5': '§35', '6': '§36', '7': '§37', '8': '§38', '9': '§39', ':': '§3a', ';': '§3b',
- '<': '§3c', '=': '§3d', '>': '§3e', '?': '§3f', '@': '§40', 'A': '§41', 'B': '§42',
- 'C': '§43', 'D': '§44', 'E': '§45', 'F': '§46', 'G': '§47', 'H': '§48', 'I': '§49',
- 'J': '§4a', 'K': '§4b', 'L': '§4c', 'M': '§4d', 'N': '§4e', 'O': '§4f', 'P': '§50',
- 'Q': '§51', 'R': '§52', 'S': '§53', 'T': '§54', 'U': '§55', 'V': '§56', 'W': '§57',
- 'X': '§58', 'Y': '§59', 'Z': '§5a', '[': '§5b', '\\': '§5c', ']': '§5d', '^': '§5e',
- '_': '§5f', '`': '§60', 'a': '§61', 'b': '§62', 'c': '§63', 'd': '§64', 'e': '§65',
- 'f': '§66', 'g': '§67', 'h': '§68', 'i': '§69', 'j': '§6a', 'k': '§6b', 'l': '§6c',
- 'm': '§6d', 'n': '§6e', 'o': '§6f', 'p': '§70', 'q': '§71', 'r': '§72', 's': '§73',
- 't': '§74', 'u': '§75', 'v': '§76', 'w': '§77', 'x': '§78', 'y': '§79', 'z': '§7a',
- '{': '§7b', '|': '§7c', '}': '§7d', '~': '§7e'
- };
- const REVERSE_MAP: Record<string, string> = Object.fromEntries(
- Object.entries(CHAR_MAP).map(([k, v]) => [v, k])
- );
- export function encrypt(text: string): string {
- return [...text].map(char => CHAR_MAP[char] ?? char).join('');
- }
- export function decrypt(cipher: string): string {
- const regex = /§[0-9a-f]{2}/g;
- return cipher.replace(regex, match => REVERSE_MAP[match] ?? match);
- }
- // Dibawah ini untuk cara penggunakan di nodeJS dan atas adalah fungsi buatan sendiri untuk enkripsi dan dekripsi
- // Made by WNIYoung With Coffie
- //** const original = fs.readFileSync('tes.txt', 'utf8'); untuk di file manamun kecuali dokumen
- //** const original = "Tes teks"; untuk langsung
- //** const encrypted = encrypt(original);
- //** const decrypted = decrypt(original);
- //** console.log(encrypted);
- //** console.log(decrypted); */
Advertisement
Add Comment
Please, Sign In to add comment
-
✅ Make $2500 in 20 minutes⭐⭐⭐ Z
JavaScript | 2 sec ago | 0.25 KB
-
⭐⭐⭐MAKE $900 INSTANTLY⭐⭐
Java | 3 sec ago | 0.10 KB
-
📌 Swapzone +37% glitch ⭐ P
JavaScript | 12 sec ago | 0.25 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 14 sec ago | 0.10 KB
-
✅⭐ Make huge profits on trading ⭐⭐ R
JavaScript | 21 sec ago | 0.25 KB
-
✅⭐ Make huge profits on trading ⭐⭐ 2
JavaScript | 24 sec ago | 0.25 KB
-
⭐⭐⭐Exchange Exploit T I⭐⭐
Java | 25 sec ago | 0.10 KB
-
⭐⭐⭐Free Giftcards Method⭐⭐
Java | 29 sec ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand