Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CodeBreaker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Moritz Eckert
CodeBreaker
Commits
1f135adb
There was a problem fetching the pipeline summary.
Commit
1f135adb
authored
6 years ago
by
Moritz Eckert
Browse files
Options
Downloads
Patches
Plain Diff
Add passlist gen for linux_crypt
parent
3a6f1178
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpc/gen_pass_file_crypt.sh
+11
-0
11 additions, 0 deletions
hpc/gen_pass_file_crypt.sh
with
11 additions
and
0 deletions
hpc/gen_pass_file_crypt.sh
0 → 100755
+
11
−
0
View file @
1f135adb
#!/bin/bash
if
[
$#
-lt
4
]
;
then
echo
"Usage:
$0
<wordlist> <count> <algo> <outfile>"
exit
1
fi
head
-
"
$2
"
"
$1
"
|
while
read
p
;
do
echo
-n
"
$p
"
| mkpasswd
-m
"
$3
"
-s
>>
"
$4
"
done
This diff is collapsed.
Click to expand it.
Moritz Eckert
@en63uroj
mentioned in issue
#7 (closed)
·
6 years ago
mentioned in issue
#7 (closed)
mentioned in issue #7
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment