Add files via upload

This commit is contained in:
fenix-soft 2016-10-31 15:52:05 +01:00 committed by GitHub
parent c24bdff2dc
commit 09d85f55de
3 changed files with 41 additions and 0 deletions

20
unlock-zip.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
# unlock archive zip without password, the script use the dictionary attack (use file dic-pass.txt), the script find all zip file in the directory to run and check it all, and if possible extract the archive file.#
#Copyright (c) 2014 fenix-soft
checkpass() {
for i in `cat dic-pass.txt`
do a="`7za x -y -p$i $j | grep 'Everything is Ok'`"
if [ "$a" = "Everything is Ok" ]
then echo; echo; echo "file: $j pass trovata: $i"; echo ; echo "ho estratto i file...con sucesso."; echo
return 0
fi
done }
for j in `ls *.zip`
do echo; echo; echo "archivio $j"
checkpass; done

18
unlock_rar.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
# unlock archive rar without password, the script use the dictionary attack (use file dic-pass.txt), the script find all rar file in the directory to run and check it all, and if possible extract the archive file.
#Copyright (c) 2014 fenix-soft
checkpass() {
for i in `cat dic-pass.txt`
do a="`unrar x -p$i $j | grep 'All OK'`"
if [ "$a" = "All OK" ]
then echo
clear
echo "file: $j pass trovata: $i"; echo ; echo "ho estratto i file...con sucesso."; echo
return 0
fi
done }
for j in `ls *.rar`; do echo; echo; echo "archivio $j"
checkpass; done

3
version.txt Normal file
View File

@ -0,0 +1,3 @@
Unlock archiver V:2.0
dic-pass.txt V:2.0