A while ago, alcopaul suggested on VXHeaven a .NET executable that could store a secret message inside. While I did not followed his strict theory, I did wrote a working proof of concept, very basic and dirty but, well, it’s only a POC.
[hide]
[code]
using System;
using Mono.Cecil;
using Mono.Cecil.Cil;
using System.Reflection;
using System.IO;
using System.Windows.Forms;
using System.Security.Cryptography;
namespace StegaBuilder
{
class MainClass
{
public static void Ma
|