diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 18 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 15 | ||||
| -rw-r--r-- | debian/copyright | 7 | ||||
| -rw-r--r-- | debian/files | 1 | ||||
| -rw-r--r-- | debian/nbs-phpmalwarefinder.dirs | 1 | ||||
| -rw-r--r-- | debian/nbs-phpmalwarefinder.install | 2 | ||||
| -rwxr-xr-x | debian/rules | 12 |
8 files changed, 57 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2489d7a --- /dev/null +++ b/debian/changelog | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | nbs-phpmalwarefinder (0.1.1-1~deb##version+nbs20150428) wheezy; urgency=medium | ||
| 2 | |||
| 3 | * new dependecy on util-linux since the script is using ionice | ||
| 4 | * postinst script added to create diff folder | ||
| 5 | |||
| 6 | -- jre <jre@nbs-system.com> Tue, 28 Apr 2015 15:07:12 +0200 | ||
| 7 | |||
| 8 | nbs-phpmalwarefinder (0.1.1-1~deb##version+nbs20150414) wheezy; urgency=medium | ||
| 9 | |||
| 10 | * new signature to detect malware in footer and header | ||
| 11 | |||
| 12 | -- jre <jre@nbs-system.com> Tue, 14 Apr 2015 14:40:05 +0000 | ||
| 13 | |||
| 14 | nbs-phpmalwarefinder (0.1) UNRELEASED; urgency=medium | ||
| 15 | |||
| 16 | * Initial release. | ||
| 17 | |||
| 18 | -- jvoisin <jvo@nbs-system.com> Tue, 24 Mar 2015 11:10:36 +0100 | ||
diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat | |||
| @@ -0,0 +1 @@ | |||
| 5 | |||
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..de30930 --- /dev/null +++ b/debian/control | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | Source: nbs-phpmalwarefinder | ||
| 2 | Section: utils | ||
| 3 | Version: 1:0.1.1-1~deb##version+nbs20150428 | ||
| 4 | Priority: optional | ||
| 5 | Maintainer: Security team <secu@nbs-system.com> | ||
| 6 | Build-Depends: debhelper (>= 8) | ||
| 7 | Standards-Version: 3.9.5 | ||
| 8 | Vcs-Git: https://github.com/nbs-system/php-malware-finder | ||
| 9 | Vcs-Browser: https://github.com/nbs-system/php-malware-finder | ||
| 10 | |||
| 11 | Package: nbs-phpmalwarefinder | ||
| 12 | Architecture: any | ||
| 13 | Depends: nbs-yara, util-linux | ||
| 14 | Description: yara-based php webshell finder | ||
| 15 | PhpMalwareFinder is a webshell hunter using yara and signatures. | ||
diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..6bec77a --- /dev/null +++ b/debian/copyright | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
| 2 | Upstream-Name: phpmalwarefinder | ||
| 3 | Source: https://github.com/nbs-system/php-malware-finder | ||
| 4 | |||
| 5 | Files: * | ||
| 6 | Copyright 2015 Julien (jvoisin) Voisin <jvo@nbs-system.com> | ||
| 7 | License: GPLv3 | ||
diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..23f95ef --- /dev/null +++ b/debian/files | |||
| @@ -0,0 +1 @@ | |||
| nbs-phpmalwarefinder_0.1_amd64.deb utils optional | |||
diff --git a/debian/nbs-phpmalwarefinder.dirs b/debian/nbs-phpmalwarefinder.dirs new file mode 100644 index 0000000..61a8d27 --- /dev/null +++ b/debian/nbs-phpmalwarefinder.dirs | |||
| @@ -0,0 +1 @@ | |||
| etc/phpmalwarefinder/ \ No newline at end of file | |||
diff --git a/debian/nbs-phpmalwarefinder.install b/debian/nbs-phpmalwarefinder.install new file mode 100644 index 0000000..0b9440a --- /dev/null +++ b/debian/nbs-phpmalwarefinder.install | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | debian/build/malwares.yara etc/phpmalwarefinder | ||
| 2 | debian/build/phpmalwarefinder usr/bin/ | ||
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bcf500a --- /dev/null +++ b/debian/rules | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #!/usr/bin/make -f | ||
| 2 | |||
| 3 | BUILDDIR=debian/build | ||
| 4 | |||
| 5 | override_dh_auto_clean: #fuck you debian | ||
| 6 | |||
| 7 | override_dh_auto_build: | ||
| 8 | |||
| 9 | %: | ||
| 10 | dh $@ | ||
| 11 | |||
| 12 | .PHONY: build | ||
