Gibt es ein tool oder so um den binärcode von ausführbaren dateien einzusehen? Google hilft net....danke
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
unsigned int fd, n, i;
unsigned char buffer[1024];
unsigned char b;
int main(int argc, char** argv) {
if ((fd = open(argv[1], O_RDONLY))) {
while ((n = read(fd, buffer, 1024))) {
for (i=0;i<n;) {
for (b=128;b!=0;b>>=1) {
if (buffer[i]&b) printf("1"); else printf("0");
}
if (++i&7) printf(" "); else printf("\n");
}
}
printf("\n");
return 0;
} else {
return -1;
}
}