Skip to content

Commit d0ac598

Browse files
committed
Merge branch 'development' of https://github.com/DMontgomery40/SecurityLens into development
2 parents 74bff6e + b40d253 commit d0ac598

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Each finding includes a quick explanation of **why** it matters, some **code exa
5252

5353
---
5454

55-
## Pro Tips for Young Security Researchers
55+
## Pro Tips for New Security Researchers
5656

5757
- **Look deeper**: Don’t just stop at the first warning. Real security experts always ask *“Why?”*
5858
- **Examine the code**: Our examples show you *exactly* where vulnerabilities might lurk.

src/components/Decoder.jsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ const Decoder = () => {
8484
}, 400);
8585

8686
} catch (e) {
87-
setOutput('> Error: Invalid base64 input\n> Hint: Try running strings on the binary first');
87+
88+
setOutput('> Error: Invalid base64 input\n> Hint: Try running strings on the secret binary from up top ^^ first');
89+
90+
8891
}
8992
};
9093

@@ -106,7 +109,9 @@ const Decoder = () => {
106109
// Easter egg - shows a special message when Ctrl+C is pressed
107110
const currentVal = e.target.value;
108111
if (currentVal === '') {
109-
setOutput('> Security through obscurity is not security at all.\n> - Ghost Security Philosophy');
112+
113+
setOutput('> Security through obscurity is not security at all.');
114+
110115
}
111116
}
112117
}}
@@ -149,4 +154,6 @@ const Decoder = () => {
149154
);
150155
};
151156

157+
152158
export default Decoder;
159+

0 commit comments

Comments
 (0)