Skip to content

Commit f5eba55

Browse files
author
0xGrayy
authored
Merge pull request 0xGrayy#7 from RlxChap2/main
V1.1.7 - File Scanner & Readme
2 parents fbc9e93 + aa3379b commit f5eba55

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
1. [**V1.1.7 - File Scanner - `34c4c55`**](https://github.com/0xGrayy/malwareSniffer/commit/34c4c552c02d1e6413b15132813dac4f187350c3)
2+
1. [**V1.1.6 - Edited Readme & new changelog - `fc0e0ac`**](https://github.com/0xGrayy/malwareSniffer/commit/fc0e0accbfbf4dbfb26fb48fabc4f94c84f46138)
13
1. [**V1.1.6 - Edited Readme - `d3df0be`**](https://github.com/0xGrayy/malwareSniffer/commit/d3df0be198ba1e3065886103f477872420ab49b1)
24
1. [**V1.1.6 - `61a8356`**](https://github.com/0xGrayy/malwareSniffer/commit/61a8356a51b669b86f5ace43318457ba9beee89e)
35
1. [**V1.1.6 - `4cd543d`**](https://github.com/0xGrayy/malwareSniffer/commit/4cd543d59ff938dfd4959bab59a10b36db560f37)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🕵️♂️ Malware Sniffer · [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
22

3-
_A cybersecurity companion that sniffs out suspicious URLs with style_ 🔍✨
3+
_A cybersecurity companion that sniffs out suspicious URLs/Apps/Files with style_ 🔍✨
44

55
<div align="center">
66
<img src="./assets/demo.gif" alt="Animated demo showing scanning process" width="800">
@@ -11,7 +11,7 @@ _A cybersecurity companion that sniffs out suspicious URLs with style_ 🔍✨
1111

1212
In today's digital jungle, every click matters. Malware Sniffer is your trusty sidekick that:
1313

14-
**Instant Safety Check**: Scan any URL against 70+ security engines in real-time
14+
**Instant Safety Check**: Scan any URL & Files/Apps against 70+ security engines in real-time
1515
**Beautiful Reports**: Get clear, color-coded results with emoji storytelling
1616
**Developer Friendly**: Perfect for integrating into your security workflows
1717
**Zero Hassle**: Set up in 2 minutes with automatic progress tracking

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"start": "node dist/index.js",
99
"autobuild": "npx tsc -w",
1010
"autostart": "cls && npx tsc && node dist/index.js",
11-
"push": "git add . && git commit -m \"V1.1.7 - File Scanner\" && git push",
11+
"push": "git add . && git commit -m \"V1.1.7 - File Scanner & Readme\" && git push",
1212
"changelog": "git log --pretty=format:\"1. [**%s - `%h`**](https://github.com/0xGrayy/malwareSniffer/commit/%H)\" > CHANGELOG.md"
1313
},
1414
"keywords": [],

src/fileScanner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,4 @@ async function processResults(
236236
} else {
237237
console.log(chalk.green.bold("\n✅ This file appears safe!"));
238238
}
239-
}
239+
}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import { scanFile } from "./fileScanner";
55
// scanUrl("https://youtube.com/");
66

77
// Example: Scan a File
8-
scanFile("app\\app.exe");
8+
scanFile("app\\app.bat");

0 commit comments

Comments
 (0)