Lucyy_

Results 26 comments of Lucyy_

/webconsole reload It should be easy.

Fuck it, I'm doing it.

```py # Any of these will raise an exception when obfuscated: {print(i) for i in range(2)} [print(i) for i in range(2)] (print(i) for i in range(2)) ``` Error: ``` {path}\obfuscated>py...

However, defining a variable and using comprehensions work perfectly: ```py dict_comp = {i: i*i for i in range(10)} list_comp = [x*x for x in range(10)] set_comp = {i%3 for i...

![image](https://user-images.githubusercontent.com/72966048/187487079-d8efa093-ed86-455d-9ef2-ff50f5a4a691.png) Scripting potential (Just did 12 files in a row and auto-structured with usage of destiny): ![image](https://user-images.githubusercontent.com/72966048/187487462-6178192b-0eaf-4d93-92e6-72433d53632b.png)

I'll continue to improve it and probably change the obfuscation algorithm to implement fixes Feel free to implement what you see optimal I had to use the module os for...

Oh yeah, i did this and even better i made my own automation script for my whole proyect. You just have to disable the renameVars option and the rest SHOULD...

Answer: Yes, it can be made into an exe, even a multi modular proyect. > Theres no error itself, It just does nothing when is an exe You need to...

If you need, i can share you how i did it and what i did. I modified hyperion to work better and automatizable, also added some fixes and cmd-line arguments.

Hey yeah, i currently have to rewrite the entire thing to make it cleaner and so it works with my EXEWrapper in C but i'll let you know You can...