summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJulien "shaddai" Reveret2015-10-08 17:44:47 +0200
committerMathieu Deous2015-10-29 14:55:04 +0100
commitff0c609ce15299fcd0da5f5b471d3519495977ff (patch)
treeb217ff3ed047ad0f63c4e39b8f400eebafa0d1a3 /debian
parent1b88cf3b85d8e3225fb55526f53cbf4df75d9813 (diff)
reorganized git repo
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog18
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rw-r--r--debian/copyright7
-rw-r--r--debian/files1
-rw-r--r--debian/nbs-phpmalwarefinder.dirs1
-rw-r--r--debian/nbs-phpmalwarefinder.install2
-rwxr-xr-xdebian/rules12
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 @@
1nbs-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
8nbs-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
14nbs-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 @@
1Source: nbs-phpmalwarefinder
2Section: utils
3Version: 1:0.1.1-1~deb##version+nbs20150428
4Priority: optional
5Maintainer: Security team <secu@nbs-system.com>
6Build-Depends: debhelper (>= 8)
7Standards-Version: 3.9.5
8Vcs-Git: https://github.com/nbs-system/php-malware-finder
9Vcs-Browser: https://github.com/nbs-system/php-malware-finder
10
11Package: nbs-phpmalwarefinder
12Architecture: any
13Depends: nbs-yara, util-linux
14Description: yara-based php webshell finder
15PhpMalwareFinder 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 @@
1Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2Upstream-Name: phpmalwarefinder
3Source: https://github.com/nbs-system/php-malware-finder
4
5Files: *
6Copyright 2015 Julien (jvoisin) Voisin <jvo@nbs-system.com>
7License: 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 @@
1debian/build/malwares.yara etc/phpmalwarefinder
2debian/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
3BUILDDIR=debian/build
4
5override_dh_auto_clean: #fuck you debian
6
7override_dh_auto_build:
8
9%:
10 dh $@
11
12.PHONY: build