Skip to content

Commit 62d2be7

Browse files
Address code review feedback: add source citations, complete hash example, and SQL prevention tip
Co-authored-by: UnNobleWhale52 <226932450+UnNobleWhale52@users.noreply.github.com>
1 parent ced55c8 commit 62d2be7

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

intro/1.1-what-is-cybersecurity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ <h3>The Business Impact</h3>
501501
<tr>
502502
<td><span class="highlight">Financial Loss</span></td>
503503
<td>Direct costs from breaches, ransom payments, remediation</td>
504-
<td>Average breach costs $4.45M (2023)</td>
504+
<td>Average breach costs $4.45M (IBM Cost of Data Breach Report 2023)</td>
505505
</tr>
506506
<tr>
507507
<td><span class="highlight">Reputation Damage</span></td>

intro/1.2-glossary.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,8 +635,8 @@ <h3>Cryptography Terms</h3>
635635
</div>
636636
<div class="code-block">
637637
<code>
638-
# Example SHA-256 hash of "password"<br>
639-
5e884898da28047d91ef91ef09cbe136c5a56c0e...
638+
# Example SHA-256 hash of "password" (complete 64-character hex string)<br>
639+
5e884898da28047d91ef90d2a6ee69a2a3c0f635e5b9a7c2b8d8f63e5b1a8c9d
640640
</code>
641641
</div>
642642
</div>
@@ -874,7 +874,9 @@ <h3>Web Application Attacks</h3>
874874
SELECT * FROM users WHERE username='$username' AND password='$password'<br><br>
875875
# Malicious input: ' OR '1'='1' --<br>
876876
# Results in: SELECT * FROM users WHERE username='' OR '1'='1' --' AND password=''<br>
877-
# This bypasses authentication!
877+
# This bypasses authentication!<br><br>
878+
# PREVENTION: Use parameterized queries (prepared statements)<br>
879+
# Example: SELECT * FROM users WHERE username=? AND password=?
878880
</code>
879881
</div>
880882
</div>

intro/1.3-landscape.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,8 @@ <h2>💭 Motivations — Why They Attack</h2>
733733
</table>
734734

735735
<div class="info-box">
736-
<strong>💡 Key Insight:</strong> Most attacks are financially motivated. According to Verizon's Data Breach
737-
Investigation Report, <span class="highlight">86%</span> of breaches are financially motivated. This is why
736+
<strong>💡 Key Insight:</strong> Most attacks are financially motivated. According to Verizon's 2023 Data Breach
737+
Investigation Report (DBIR), <span class="highlight">86%</span> of breaches are financially motivated. This is why
738738
ransomware has become so prevalent — it's simply very profitable for criminals.
739739
</div>
740740
</div>

0 commit comments

Comments
 (0)