-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from HuskyHacks/asm-helloworld-module
Asm helloworld module
- Loading branch information
Showing
12 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 added
BIN
+31.8 KB
labs/2-2.AdvancedDynamicAnalysis/helloWorld-c/helloWorld-stripped.exe
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.