Skip to main content

Posts

Decompilers Ethical or Non-ethical?

What are decompilers?     A computer program that creates a high-level source file by taking an executable file as input so that it can be recompiled successfully is known as a decompiler. In simple words, a decompiler is the opposite of a compiler which takes a source file and makes it an executable file. A decompiler aims to get the source back from the binary so we can also call it an ant compiler. Though decompilers are an important tool in the reverse engineering of computer software; many times they are unable to perfectly reconstruct the source code. Decompilers misconception or hypothesis?      Decompilation is often classified into 2 classes, the primary being once source code retrieval is required and also the second class being once the whole original source code recovery isn't needed however the goal is to grasp elements of the source code or the complete during a high-level language like C. because the compiler removes data once it will its work thu...
Recent posts

C++ Implementation of SAES(Simplified AES) 16bits

S-AES Encryption Procedure Code : #include   <bits/stdc++.h> using   namespace   std ; //Map for S-Box Substituion for Encryption. unordered_map < string ,  string >  Sbox  = {     { "0000" ,  "1001" },     { "0001" ,  "0100" },     { "0010" ,  "1010" },     { "0011" ,  "1011" },     { "0100" ,  "1101" },     { "0101" ,  "0001" },     { "0110" ,  "1000" },     { "0111" ,  "0101" },     { "1000" ,  "0110" },     { "1001" ,  "0010" },     { "1010" ,  "0000" },     { "1011" ,  "0011" },     { "1100" ,  "1100" },     { "1101" ,  "1110" },     { "1110" ,...