Skip to content

Commit

Permalink
Merge pull request #18 from HuskyHacks/asm-helloworld-module
Browse files Browse the repository at this point in the history
Asm helloworld module
  • Loading branch information
HuskyHacks authored Sep 3, 2023
2 parents 47d2a4c + 05d99e8 commit 860d10a
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 0 deletions.
16 changes: 16 additions & 0 deletions labs/2-1.AdvancedStaticAnalysis/helloWorld-c/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Hello, World! under a Microscope

Examine the two following executables. They are both identical and simple in terms of design. Both print "Hello, World!" to the console.

```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
```

However, one of the binaries has `debug symbols` included and one has them stripped out.

## Safety Note
Both of these binaries are simple Hello, World! examples and are not held within password protected zip folders. There is no malicious functionality within either binary.
Binary file not shown.
5 changes: 5 additions & 0 deletions labs/2-1.AdvancedStaticAnalysis/helloWorld-c/helloWorld.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
Binary file not shown.
File renamed without changes.
16 changes: 16 additions & 0 deletions labs/2-2.AdvancedDynamicAnalysis/helloWorld-c/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Hello, World! under a Microscope

Examine the two following executables. They are both identical and simple in terms of design. Both print "Hello, World!" to the console.

```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
```

However, one of the binaries has `debug symbols` included and one has them stripped out.

## Safety Note
Both of these binaries are simple Hello, World! examples and are not held within password protected zip folders. There is no malicious functionality within either binary.
Binary file not shown.
5 changes: 5 additions & 0 deletions labs/2-2.AdvancedDynamicAnalysis/helloWorld-c/helloWorld.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
Binary file not shown.

0 comments on commit 860d10a

Please sign in to comment.