Comment by 👻 darkghost

Re: "Obfuscating C"
In: u/LucasMW

Isn't abuse of goto making the worst spaghetti code possible another form of obfuscation? Combined with similar looking labels like above.

👻 darkghost

May 07 · 7 months ago

2 Later Comments ↓

🚀 stack · 2025-05-08 at 00:59:

Automatically create a slew of loops and conditionals using bullshit variables initialized elsewhere, in such a way that they will get optimized out.

🐙 norayr · 2025-05-13 at 20:36:
— isn't c code obfuscated enough already?

Original Post

🚀 LucasMW

Obfuscating C — I am working on a code obfuscator. Basically the idea is to rename every symbol in the program to another name, thus destroyng information. The idea is also customization of the generated names according to wordlists and rulesets (for example, one pokémon themed) I already have some kind of proof of concept: For example, this small program: [preformatted] I wish there was some shortcuts. Does anyone knows an easy way of given a source file, to extract a list of all variable...

💬 18 comments · May 06 · 7 months ago · #coding #programming #software