Reverse Engineering Webpack Bundles for Encryption Logic Extraction
When reverse‑engineering JavaScript‑heavy websites, sensitive operations such as encryption are often hidden inside Webpack bundles. By understanidng the bundle’s module system we can locate and directly reuse the relevant functions without re‑implementing complex cryptographic algorithms. This guide walks through three real‑world examples, sho ...
Posted on Mon, 15 Jun 2026 18:08:51 +0000 by Jiin
Implementing RSA Public Key Decryption in Android Applications
Overview of the RSA Decryption Process
The process for decrypting data with a public key in Android involves three primary stages. The following table outlines these steps:
Step
Description
1
Generate an RSA key pair (public and private keys).
2
Encrypt plaintext data using the public key.
3
Decrypt the ciphertext using the correspon ...
Posted on Fri, 12 Jun 2026 17:14:39 +0000 by DylanBlitz
Implementing RSA Private Key Encryption in Java and Public Key Decryption in C#
RSA asymmetric encryption typically involves public key encryption and private key decryption. However, some scenarios require the reverse approach: private key encryption in Java and public key decryption in C#.
Certificate formats differ between platforms: .pfx certificates contain both public and private keys, while .cer certificates only in ...
Posted on Tue, 09 Jun 2026 16:34:54 +0000 by Asday
Analyzing RSA Encryption in CTF Challenge: From APK Reverse Engineering to Traffic Decryption
Problem Overview
The challenge provides two files: an APK and a pcapng packet capture. The solution requires analyzing network traffic and reverse engineering the encryption implementation.
Traffic Analysis
Opening the pcapng file reveals standard TCP traffic. Following TCP streams and decoding the hex content exposes the application protocol:
...
Posted on Fri, 05 Jun 2026 16:35:37 +0000 by hsn
Implementing Secure Data Transmission: Hybrid Encryption with AES and RSA
When designing network request security, we face a fundamental challenge: symmetric encryption offers speed but requires secure key exchange, while asymmetric encryption provides secure key distribution but operates too slowly for bulk data encryption. This article demonstrates how to combine both approaches, following the same principles used ...
Posted on Mon, 18 May 2026 14:02:57 +0000 by khr2003
Enhancing API Security with RSA-AES Hybrid Encryption: A Vue and PHP Implementation
When building APIs, relying solely on HTTPS might not always meet specific security requirements. While HTTPS effectively secures the transport layer against eavesdropping and tampering, developers often need additional layers of protection to:
Prevent unauthorized simulation of API calls.
Ensure that intercepted data packets remain unreadable ...
Posted on Fri, 15 May 2026 17:59:16 +0000 by g-force2k2
Java RSA Cryptography and JWT Token Implementation Guide
RSA Asymmetric Encryption Implementation
The following example demonstrates a complete RSA encryption utility for generating key pairs, encrypting data with public keys, and decryptign with private keys. This implementation uses Java's built-in cryptographic providers with Base64 encoding for key and data portability.
import javax.crypto.Cipher ...
Posted on Wed, 13 May 2026 13:41:45 +0000 by rskandarpa
OpenSSL Command Reference: Common Operations and Examples
Frequently Encountered Issues
Listing Supported Cipher Suites
# View all ciphers supported by OpenSSL
openssl ciphers -V | column -t
Certificate Chain Strutcure
-----BEGIN CERTIFICATE-----
Website certificate
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
Intermediate CA certificate
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE----- ...
Posted on Tue, 12 May 2026 16:36:46 +0000 by digitalgod
Comparing RSA, DSA, and ECDSA Key Types in SSH
SSH employs various cryptographic key types including RSA, DSA, ECDSA, and Ed25519. Each type utilizes distinct mathematical principles and offers different performance characteristics.
The following output shows typical SSH host key files present on a system:
-rw------- 1 root root 607 Oct 4 22:43 ssh_host_dsa_key
-rw-r--r-- 1 root root ...
Posted on Sun, 10 May 2026 23:35:54 +0000 by blommer