[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: shellden şifre kırma



#!/bin/bash
counter=0
while [  $counter -lt 10001 ];
do
 unzip -P $counter hedezot.zip
 counter=`expr $counter + 1`
done

Yine bash icin:

for ((i=0;i<=10000;i++)); do unzip -P $i hedezot.zip ; done

Bash cok daha fazlasini da yapabiliyormus, hmm.
--
Enver



Reply to: