Skip to content

Commit

Permalink
moving dropper.downloadfromurl, add helloworld to adv dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
HuskyHacks committed Aug 30, 2023
1 parent a0f0d39 commit 849f87e
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 0 deletions.
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 849f87e

Please sign in to comment.