Giter VIP home page Giter VIP logo

Comments (6)

f0rb1dd3n avatar f0rb1dd3n commented on August 21, 2024 1

thanks bro,

That's the point, I will consider to do all that improvements. And don't worry about credits. Thx

from reptile.

f0rb1dd3n avatar f0rb1dd3n commented on August 21, 2024

@milabs,

Thanks for reporting that. You got the point, and I will fix it. But I think I have to consider obfuscation in general. Since Reptile doesn't have any obfuscation, just prevent these leaks will not work.

I think there is another leakages like that and some weakness on my code. What do you think about it?

from reptile.

milabs avatar milabs commented on August 21, 2024

What's common in obfuscation and programming bugs?

from reptile.

f0rb1dd3n avatar f0rb1dd3n commented on August 21, 2024

if I want to prevent memory leaks, I have to obfuscate strings first too, cause someone can retrieve information just searching for strings in binary.

from reptile.

milabs avatar milabs commented on August 21, 2024
// echo -ne 'helloworld\n' | hexdump -ve '"%08x\n"'
#define STR$helloworld \
({ \
 unsigned int *p = (unsigned int *)__builtin_alloca( 3 * 4 ); \
 p[0] = 0x6c6c6568; \
 p[1] = 0x726f776f; \
 p[2] = 0x000a646c; \
 (char *)p; \
})
...
printf(STR$helloworld);

Catch the idea and don't forget to add credits on me.

from reptile.

f0rb1dd3n avatar f0rb1dd3n commented on August 21, 2024

fixed in ed2ce1d

from reptile.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.