Skip to content

Instantly share code, notes, and snippets.

@jaradat
jaradat / Windows
Created December 12, 2019 07:02 — forked from JerryLokjianming/Crack Sublime Text Windows and Linux.md
Crack Sublime Text 3.2.2 Build 3211
# Subscribe to my YouTube Channel -> https://lokjianming.page.link/CVLm #
How to Crack Sublime Text 3 with Hex Editor
1. Download & Install Sublime Text 3.2.2 Build 3211
2. Visit Hexed.it
3. Open file sublime_text.exe
4. Search address 97 94 0D
5. Change to 00 00 00
6. Export File
public class ClientEncrypt {
private static String publicKeyString = "<your_public_key_here>";
public static void main (String args[]) {
try {
// 1. generate secret key using AES
KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
keyGenerator.init(128); // AES is currently available in three key sizes: 128, 192 and 256 bits.The design and strength of all key lengths of the AES algorithm are sufficient to protect classified information up to the SECRET level
public class ServerDecrypt {
static String privateKey = "<your_private_key_here>";
static String encryptedTextString = "<your_received_encrypted_text_here>";
static String encryptedSecretKeyString = "<your_received_encrypted_secret_key_here>";
public static void main(String args[]) {
try {
@jaradat
jaradat / Program.cs
Created November 24, 2018 12:53 — forked from TheSalarKhan/Program.cs
GZIP Compress/Decompress in C#/JAVA
using System;
using System.IO;
using System.IO.Compression;
using System.Text;
class Program {
private static string Compress(string text)
{
byte[] buffer = Encoding.UTF8.GetBytes(text);