generate

Python 3 - How do I brute force a password for a PDF file using all possible 6-digit employee ID's?

拟墨画扇 提交于 2020-12-13 03:30:22
问题 I am practicing generating all possible 6-digit employee ID's (all having 900 at the beginning followed by all possible 6-digit numbers) to brute force a password for a PDF file named PS7_encrypted.pdf. So far, I have successfully generated all 6-digit pins (with 900 at the front) and stored them into a dictionary.txt file. I am working on a program that would read the file and brute force the PDF using that text file that has all the possible numbers. When I run the program however, I got no

Python 3 - How do I brute force a password for a PDF file using all possible 6-digit employee ID's?

我与影子孤独终老i 提交于 2020-12-13 03:30:04
问题 I am practicing generating all possible 6-digit employee ID's (all having 900 at the beginning followed by all possible 6-digit numbers) to brute force a password for a PDF file named PS7_encrypted.pdf. So far, I have successfully generated all 6-digit pins (with 900 at the front) and stored them into a dictionary.txt file. I am working on a program that would read the file and brute force the PDF using that text file that has all the possible numbers. When I run the program however, I got no

Creating exhaustive case columns in SQL

核能气质少年 提交于 2019-12-24 18:57:18
问题 I am trying to generate a column "Gender Combinations" that creates exhaustive categories of interaction terms like in the table below. Is there an easy way to do this in SQL (microsoft server)? +--------------+--------------+--------------+---------------------+ | EMP 1 Gender | EMP 2 Gender | Emp 3 Gender | Gender Combinations | +--------------+--------------+--------------+---------------------+ | Male | | | 1 Male | | Female | | | 1 Female | | | Male | | 1 Male | | | Female | | 1 Female |

Creating exhaustive case columns in R

浪子不回头ぞ 提交于 2019-12-24 18:36:56
问题 I am trying to generate a column "Gender Combinations" that creates exhaustive categories of interaction terms like in the table below. Is there an easy way to do this in R? +--------------+--------------+--------------+---------------------+ | EMP 1 Gender | EMP 2 Gender | Emp 3 Gender | Gender Combinations | +--------------+--------------+--------------+---------------------+ | Male | | | 1 Male | | Female | | | 1 Female | | | Male | | 1 Male | | | Female | | 1 Female | | | | Male | 1 Male

Excel: change VBA action frome same sheet to another sheet

孤人 提交于 2019-12-11 21:49:58
问题 As I'm trying my first Excel with macro's I could really use some help. I'm not a programmer but I can edit some code very well. My goal is to generate some different word documents by the click of a button. The excel file is a list with achievements of students. The results are listed in the different word documents. It's kind of a mail merge but without opening Word. The code I have now is for a button in the same sheet to generate those word documents. Now I changed the whole excel file..

Android生成keystore方法

筅森魡賤 提交于 2019-11-26 17:48:47
一、eclipse 中生成android keystore 建立任意一个android项目(例如:AntForAndroid) 右键AntForAndroid根目录弹出菜单->Android Tools -> Export Signed Application Package... Next > 选择“Create new keystore”并且保存在一个目录下面(本例子保存在项目跟目录下) 输入密码,然后next 填写一些信息,填写的Alias 和 密码不要忘记了 这样在项目根目录下就生成以上流程产生的androids.keystore了 二、命令行生成keystore dos下进入JDK的bin目录 运行如下命令: keytool -genkey -alias android.keystore -keyalg RSA -validity 20000 -keystore android.keystore (-validity 20000代表有效期天数),命令完成后,bin目录中会生成android.keystore 查看命令keytool -list -keystore "android.keystore" 输入你设置的keystore密码 本文转载自 http://www.cnblogs.com/xiaokang088/p/3715358.html 来源: oschina 链接