diff options
author | Tim Biermann <tbier@posteo.de> | 2020-05-28 16:08:30 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-05-28 16:16:47 +0000 |
commit | 127f58cd931e866458dc014548e0a5c8381a8fd3 (patch) | |
tree | 151ceca391354bdc8f4c7cf4697f7d75d613f882 /skipfish/skipfish.patch | |
parent | 9f1d1c3bb76d31028716971bb602bc7536466d09 (diff) | |
download | contrib-127f58cd931e866458dc014548e0a5c8381a8fd3.tar.gz contrib-127f58cd931e866458dc014548e0a5c8381a8fd3.tar.xz |
[notify] skipfish: fixed build, new dependency openssl1
Diffstat (limited to 'skipfish/skipfish.patch')
-rw-r--r-- | skipfish/skipfish.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/skipfish/skipfish.patch b/skipfish/skipfish.patch new file mode 100644 index 000000000..a88924677 --- /dev/null +++ b/skipfish/skipfish.patch @@ -0,0 +1,49 @@ +--- src/config.h 2012-09-01 07:53:25.000000000 +0200 ++++ src/config.h.new 2012-09-05 09:08:37.099387176 +0200 +@@ -35,10 +35,10 @@ + + /* Default paths to runtime files: */ + +-#define ASSETS_DIR "assets" ++#define ASSETS_DIR "/usr/share/skipfish/assets" + + /* Default signature file */ +-#define SIG_FILE "signatures/signatures.conf" ++#define SIG_FILE "/usr/share/skipfish/signatures/signatures.conf" + + /* Various default settings for HTTP client (cmdline override): */ + + +--- signatures/signatures.conf 2012-09-01 07:53:25.000000000 +0200 ++++ signatures/signatures.conf.new 2012-09-05 09:09:10.027968510 +0200 +@@ -6,23 +6,23 @@ + # The mime signatures warn about server responses that have an interesting + # mime. For example anything that is presented as php-source will likely + # be interesting +-include signatures/mime.sigs ++include /usr/share/skipfish/signatures/mime.sigs + + # The files signature will use the content to determine if a response + # is an interesting file. For example, a SVN file. +-include signatures/files.sigs ++include /usr/share/skipfish/signatures/files.sigs + + # The messages signatures look for interesting server messages. Most + # are based on errors, such as caused by incorrect SQL queries or PHP + # execution failures. +-include signatures/messages.sigs ++include /usr/share/skipfish/signatures/messages.sigs + + # The apps signatures will help to find pages and applications who's + # functionality is a security risk by default. For example, phpinfo() + # pages that leak information or CMS admin interfaces. +-include signatures/apps.sigs ++include /usr/share/skipfish/signatures/apps.sigs + + # Context signatures are linked to injection tests. They look for strings + # that are relevant to the current injection test and help to highlight + # potential vulnerabilities. +-include signatures/context.sigs ++include /usr/share/skipfish/signatures/context.sigs + + |