Post A4deXgowfmbxko2aOG by laibanzai@poa.st
(DIR) More posts by laibanzai@poa.st
(DIR) Post #A4c6Pd2jF8wU7aVq5I by e@anime.website
2021-02-24T23:02:50.909811Z
1 likes, 0 repeats
y'all ever just pick up a plain lua parsing library and make 90% of a full lua obfuscator in one night
(DIR) Post #A4c6qEHzNxxLARKoJE by e@anime.website
2021-02-24T23:07:38.419137Z
1 likes, 0 repeats
like, the scanner and parser needed some work (a lot...), and I had to write the printer from scratch, along with the obfuscation systemlocals are completely renamed, globals can optionally be renamed, there's a .gitignore-like exclusion system, and table fields can be hashed (except that's broken because table accessors are a fuck)eventually there'll be some string obfuscation as well (dump EVERYTHING in to a single string table, then source those instead of using constants, which will be AWFUL for performance, but still very obscuring
(DIR) Post #A4c6yVf6g4GPMh6144 by e@anime.website
2021-02-24T23:09:09.149448Z
1 likes, 0 repeats
oh yeah I need to convert it to BFS from a nice, simple DFS, because right now the renaming can overlap
(DIR) Post #A4deXgowfmbxko2aOG by laibanzai@poa.st
2021-02-25T16:59:59.986287Z
0 likes, 1 repeats
@e why do you want to obfuscate Lua anyway