Shared object obfuscation concept proven.
This commit is contained in:
36
linux/shared_object_obfuscation/executable.cpp
Normal file
36
linux/shared_object_obfuscation/executable.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
VIM: let g:lcppflags="-O2 -lshared_object -L."
|
||||
VIM: let g:argv=""
|
||||
*/
|
||||
#include <iostream>
|
||||
#include <exception>
|
||||
#include "interface.h"
|
||||
|
||||
int main ( void )
|
||||
{try{
|
||||
|
||||
MyVerySecretClass o;
|
||||
|
||||
o.secret_method1();
|
||||
o.secret_method2();
|
||||
o.secret_method1();
|
||||
o.secret_method2();
|
||||
o.secret_method1();
|
||||
o.secret_method2();
|
||||
o.secret_method3();
|
||||
|
||||
return 0;
|
||||
}
|
||||
catch ( const std::exception& e )
|
||||
{
|
||||
std::cerr << std::endl
|
||||
<< "std::exception(\"" << e.what() << "\")." << std::endl;
|
||||
return 2;
|
||||
}
|
||||
catch ( ... )
|
||||
{
|
||||
std::cerr << std::endl
|
||||
<< "unknown exception." << std::endl;
|
||||
return 1;
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user