Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryarnyah/analysec
C Obfuscator
https://github.com/ryarnyah/analysec
Last synced: 15 days ago
JSON representation
C Obfuscator
- Host: GitHub
- URL: https://github.com/ryarnyah/analysec
- Owner: ryarnyah
- Created: 2011-09-23T14:25:48.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-09-23T16:48:23.000Z (about 13 years ago)
- Last Synced: 2023-03-12T07:56:43.634Z (over 1 year ago)
- Language: C
- Homepage: http://not2do4programing.wordpress.com/
- Size: 102 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
To compile you need flex:
Debian/Ubuntu:
apt-get install flexHow it work:
$ make
$ ./gram file.c file1.h <...>
$ ls
file.c file.c_ file1.h file1.h_ convert.h gram
$ # file with '_' is obfuscated
$ # file convert.h have all obfuscation connections
$ # to compile
$ gcc file.c_ file1.h convert.h -o file
$ ./file
Oh Yeah!To test it:
$ ./gram arithmetique.c
$ ls
arithmetique.c arithmetique.c_ gram convert.h
$ gcc arithmetique.c_ convert.h -std=c99 -o test
$ ./test
Usage : ./a.out [nbr] [nbr]
$ # :DThat's all!