Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/TheKingOfDuck/FileMonitor

文件变化实时监控工具(代码审计/黑盒/白盒审计辅助工具)
https://github.com/TheKingOfDuck/FileMonitor

filemanage filemonitor monitoring-tool

Last synced: about 1 month ago
JSON representation

文件变化实时监控工具(代码审计/黑盒/白盒审计辅助工具)

Awesome Lists containing this project

README

        

[![PyPI](https://img.shields.io/badge/Python-All-blue.svg)]()
[![Build](https://img.shields.io/badge/Supported_OS-All-orange.svg)]()

# FileMonitor
代码审计辅助工具(文件监控)

**优先使用fileMonitor.py 不推荐main.py 这三年前的玩意儿了 总体上都不推荐使用这种方式挖洞 建议看看IAST**

# 更新:

**感谢[moyuwa](https://github.com/moyuwa)反馈的Bug,如有问题或修改意见 请点击===>[问题反馈](https://github.com/TheKingOfDuck/FileMonitor/issues)**

2020-06-25:
* 优化二进制文件,使其兼容所有unix的系统(macOS,linux,ubantu,centos,etc)。
* 新增参数模式,可执行`filemon -h`相关参数说明。其中-p参数是监控的路径,为必须项,其他参数可选。
* 根据[moyuwa](https://github.com/moyuwa)反的[issue](https://github.com/TheKingOfDuck/FileMonitor/issues/2)修复了不设置监控路径时所有操作都不显示的bug,并在其修改加强的版本[FileMonitorPlus](https://github.com/moyuwa/FileMonitorPlus)上修了文件移动显示错误,是否显示文件夹设置无效这两bug。

2019-05-11:
* 修复bug 新增无需第三方模块的版本以及php版本。

# 使用:

所有unix相关的系统可使用pip一键安装:

```
python3 -m pip install filemon==1.1 -i https://pypi.python.org/simple/
filemon -h
```

### 环境:
MacOS 10.14 Python2/3环境运行通过

windows 7 Python2.7环境运行通过

### 依赖:

> [watchdog](https://pypi.org/project/watchdog/)

### 运行:

```
git clone https://github.com/TheKingOfDuck/FileMonitor.git
cd FileMonitor
python fileMonitor.py
```

无需依赖版:

```
python main.py
```
(路径可为相对路径)

php版本:

```
php fileMonitor.php --dir ./
```

# 功能

* 排除不需要监控的文件目录(如测试基于thinkphp开发的CMS时可排除runtime目录)

* 显示/不显示目录变化(程序运行过程中读写变化很快 根据自身需求决定是否需要显示目录变化)

![screenshot](https://github.com/TheKingOfDuck/FileMonitor/blob/master/screenshot.png)

### 应用场景:

* https://xz.aliyun.com/t/3767
* https://xz.aliyun.com/t/3788

## 注意:所输入的路径均为绝对路径。