Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
wordlists
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kali Linux
Packages
wordlists
Commits
5951a11f
Commit
5951a11f
authored
Jul 17, 2019
by
g0t mi1k
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add dependents to kali-defaults
parent
894401c9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
11 deletions
+12
-11
debian/changelog
debian/changelog
+6
-0
debian/control
debian/control
+2
-1
debian/postinst
debian/postinst
+2
-5
debian/prerm
debian/prerm
+2
-5
No files found.
debian/changelog
View file @
5951a11f
wordlists (0.3-1kali3) kali-dev; urgency=medium
* Add dependents to kali-defaults
-- Ben Wilson <g0tmi1k@kali.org> Wed, 17 Jul 2019 10:59:21 +0100
wordlists (0.3-1kali2) kali-dev; urgency=medium
* Add helper-script
...
...
debian/control
View file @
5951a11f
...
...
@@ -10,7 +10,8 @@ Vcs-Browser: https://gitlab.com/kalilinux/packages/wordlists
Package: wordlists
Architecture: all
Depends: ${misc:Depends}
Depends: kali-defaults (>= 2019.3.6),
${misc:Depends},
Description: Contains the rockyou wordlist
This package contains the rockyou.txt
wordlist and has an installation size
...
...
debian/postinst
View file @
5951a11f
#!/bin/sh
## Quit if anything goes wrong
set
-e
## Make symbolic links to folders containing other wordlists
[
-d
/usr/share/dirb/wordlists
]
\
&&
ln
-sf
/usr/share/dirb/wordlists /usr/share/wordlists/dirb
...
...
@@ -59,3 +54,5 @@ set -e
[
-e
/usr/share/wpscan/spec/fixtures/wpscan/modules/bruteforce/wordlist.txt
]
\
&&
ln
-sf
/usr/share/wpscan/spec/fixtures/wpscan/modules/bruteforce/wordlist.txt /usr/share/wordlists/wpscan.txt
exit
0
debian/prerm
View file @
5951a11f
#!/bin/sh
## Quit if anything goes wrong
set
-e
## Remove the directory symlinks made by postinst
[
-h
/usr/share/wordlists/dirb
]
\
&&
rm
-f
/usr/share/wordlists/dirb
...
...
@@ -58,3 +53,5 @@ set -e
[
-h
/usr/share/wordlists/wpscan.txt
]
\
&&
rm
-f
/usr/share/wordlists/wpscan.txt
exit
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment