Codebase list uniscan / ae7fb76
Add a patch to use correct shebang in Perl script Sophie Brun 3 years ago
3 changed file(s) with 32 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 From: Sophie Brun <[email protected]>
1 Date: Mon, 18 Jan 2021 15:58:31 +0100
2 Subject: Use correct shebang for perl command script
3
4 ---
5 uniscan.pl | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/uniscan.pl b/uniscan.pl
9 index 5f300d6..159e4bd 100755
10 --- a/uniscan.pl
11 +++ b/uniscan.pl
12 @@ -1,4 +1,4 @@
13 -#!/usr/bin/env perl
14 +#!/usr/bin/perl
15
16 # Uniscan Web Vulnerability Scanner
17 # Copyright (C) 2012 Douglas Poerschke Rocha
0 Description: Fix to work with Perl 5.22.2-5
1 '.' has been removed from @INC by default in Perl 5.22.2-5 in debian
2 (fixes 588017)
0 From: Kali Developers <[email protected]>
1 Date: Mon, 18 Jan 2021 15:57:54 +0100
2 Subject: Fix to work with Perl 5.22.2-5
3
34 Origin: other, https://bugs.kali.org/view.php?id=3608
45 Bug-Kali: https://bugs.kali.org/view.php?id=3608
56 Last-Update: 2016-09-23
7
8 '.' has been removed from @INC by default in Perl 5.22.2-5 in debian
9 (fixes 588017)
10 Last-Update: 2016-09-23
611 ---
7 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
12 uniscan.pl | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/uniscan.pl b/uniscan.pl
16 index 6955879..5f300d6 100755
817 --- a/uniscan.pl
918 +++ b/uniscan.pl
1019 @@ -20,7 +20,8 @@
00 fix-for-perl-5-22.patch
1 Use-correct-shebang-for-perl-command-script.patch