Skip to content

Commit 245c9cf

Browse files
author
Amanda Rousseau
committed
updating mistakes
1 parent c65fa18 commit 245c9cf

File tree

5 files changed

+6
-18
lines changed

5 files changed

+6
-18
lines changed

ReportForm.html

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@
99
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
1010
<script language="JavaScript">
1111

12-
$("#btnPrint").live("click", function () {
13-
var divContents = $("#display").html();
14-
var printWindow = window.open('', '', 'height=400,width=800');
15-
printWindow.document.write('<html><head><title>Malware Analysis Report</title>');
16-
printWindow.document.write('</head><body >');
17-
printWindow.document.write(divContents);
18-
printWindow.document.write('</body></html>');
19-
printWindow.document.close();
20-
printWindow.print();
21-
22-
});
23-
2412
function showInput() {
2513
document.getElementById('display').innerHTML =
2614

@@ -127,7 +115,7 @@ <h2>Malware Analysis Report</h2>
127115
<p><label>Your Report: </label></p>
128116
<hr>
129117
<p><span id='display'></span></p>
130-
<p><input type="button" value="Print PDF Report" id="btnPrint" /></p>
118+
131119

132120
</script>
133121

fundamentals2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This diagram shows the relationship of application components for user-mode and
3434

3535
## PE Header ##
3636

37-
The PE header provides the information to operating system on how to map the file into memory.
37+
The PE header provides information to operating system on how to map the file into memory.
3838
The executable code has designated regions that require a different memory protection (RWX)
3939
- Read
4040
- Write
@@ -69,7 +69,7 @@ This diagram illustrates how the PE is placed into memory.
6969

7070
## The Stack ##
7171

72-
- Data is either pushed onto or pop off of the stack data structure
72+
- Data is either pushed onto or popped off of the stack data structure
7373
- **EBP** - Base Pointer is the register that used to store the references in the stack frame
7474

7575
This diagram represents a typical stack frame.

fundamentals3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Common Instructions
4141
* **jmp, jne, jnz, jnb** (Control Flow)
4242
* **push, pop, call, leave, enter, ret** (Control Flow)
4343

44-
Example below is moving value 0xaaaaaaaa into ecx.
44+
Example below is moving value at 0xaaaaaaaa into ecx.
4545

4646
| Instruction | Opcode |
4747
| --- | --- |

intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: Intro
1111

1212
# Reverse Engineering #
1313

14-
"is the processes of extracting knowledge or design information from anything man-made and re-producing it or re-producing anything based on the extracted information"
14+
"is the processes of extracting knowledge or design information from anything man-made and re-producing it or re-producing anything based on the extracted information"[1](https://en.wikipedia.org/wiki/Reverse_engineering)
1515

1616
## What does it mean to be a reverse engineer? ##
1717

triage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Questions to ask:
5757

5858
### Collect Strings
5959

60-
* using the string command in linux or BinText tool, extract the strings to find any clues
60+
* Using the string command in linux or BinText tool, extract the strings to find any clues
6161

6262
### Check AV vendors
6363

0 commit comments

Comments
 (0)