Skip to content

Commit

Permalink
Update compile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsh-coder authored Dec 19, 2024
1 parent f562606 commit 4f693fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/malware-simulators/exfiltration-simulator/compile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const https = require("https");

https
.get("https://pastebin.com/", (res) => {
.get("https://www.pastebin.com/", (res) => {
if (res.statusCode < 200 || res.statusCode >= 300) {
console.error("HTTP Error: " + res.statusCode);
process.exit(1); // Exit with a failure code on HTTP error status
Expand Down

0 comments on commit 4f693fe

Please sign in to comment.