首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏施炯的IoT开发专栏

    《101 Windows Phone 7 Apps》读书笔记-PASSWORDS & SECRETS

    课程内容 Ø 加密和解密 Ø 密码输入框 Ø 值转换 Ø DataTimeOffset Ø 可观察集合 Ø INotifyPropertyChanged事件     Passwords 为了使管理主人密码尽量简单,Passwords & Secrets支持忘记密码提示。应用程序也允许改变主人密码(这也是以知道当前密码为前提的)。 为什么我需要对隔离存储空间中的数据进行加密? 在Passwords & Secrets应用中,我们想要对每条记录的Modified属性显示做轻微的自定义。

    1.5K90发布于 2018-01-10
  • 来自专栏全栈技术

    使用 Python 来创建一个基本的命令行密码管理器

    创建一个名为 passwords.json 的文件来保存密码。 # 导入必要的库 import json # 初始化密码数据库 passwords = {} # 保存密码到文件 with open("passwords.json", "w") as file: ", "r") as file: passwords = json.load(file) # 添加新密码 passwords[website] = {"username ", "r") as file: passwords = json.load(file) # 查看密码 if website in passwords: del passwords[website] with open("passwords.json", "w") as file: json.dump(passwords

    76240编辑于 2023-09-15
  • 来自专栏debugeeker的专栏

    CISSP考试指南笔记:5.11 针对访问控制的攻击

    words and compares the resulting message digest with the system password file that also stores its passwords against dictionary and other password attacks, the following practices should be followed: Do not allow passwords Encrypt the passwords with encryption algorithms or hashing functions. Use hard-to-guess passwords. Rotate passwords frequently. Use dictionary-cracking tools to find weak passwords chosen by users.

    34620发布于 2021-03-02
  • 来自专栏appuploader使用操作流程

    解锁WiFi密码,我只用了60行代码

    def brute_force(selected_network, passwords, args): for password in passwords: # necessary due to NetworkManager +bcolors.ENDC)​ print(bcolors.FAIL+"** RESULTS **: All passwords failed :("+bcolors.ENDC) 核心功能3个函数就完成了 : file = open(args.file, "r") passwords = file.readlines() ifnot passwords: print("Password file cannot If you would like to see passwords being tested in realtime, enable the [--verbose] flag at start.")​ brute_force(target, passwords, args) 执行函数,就会在命令行下显示附近的WiFi列表,选择之后就开始逐个尝试密码。

    1.2K10编辑于 2023-04-13
  • 来自专栏运维研习社

    old_password的锅

    原来开启了old_passwords,怪不得。 这里说一下old_passwords,这个参数呢,是mysql位了兼容4.1之前的客户端而保留的。 就是说呢,开启这个old_passwords参数呢,你在添加用户的时候生成的密码是以16位加密的方式存储的,而4.1之后的客户端呢,都是采用64位加密方式存储的,这个咱们实操看一下: ? 关闭old_passwords之后: ? 那么上面的问题就清楚了,我生成密码的时候是短hash,客户端用长hash去验证,当然不识别了。 这个old_passwords呢,其实是不影响鉴定的,也就是客户端连接认证,不过比较是从别人手里接的盘子,以前的项目还有不少,所以不直接在mysql配置文件修改old_passwords,在当前连接下通过

    64210发布于 2021-02-23
  • 来自专栏python12

    我用60行python代码破解了WiFi密码

    def brute_force(selected_network, passwords, args): for password in passwords: # necessary passwords: print("Password file cannot be empty!") /Common-Credentials/10-million-password-list-top-100000.txt" passwords = fetch_password_from_url If you would like to see passwords being tested in realtime, enable the [--verbose] flag at start.") brute_force(target, passwords, args) 执行函数,就会在命令行下显示附近的WiFi列表,选择之后就开始逐个尝试密码。

    5.6K61编辑于 2021-12-20
  • 来自专栏kali blog

    msfconsole和nmap破解mysql密码(上)

    Description ---- --------------- -------- ----------- BLANK_PASSWORDS false no Try blank passwords for all users BRUTEFORCE_SPEED in the current database DB_ALL_PASS false no Add all passwords authenticate with PASS_FILE /usr/share/wordlists/fasttrack.txt no File containing passwords authenticate as USERPASS_FILE no File containing users and passwords

    1.6K30编辑于 2021-12-17
  • 来自专栏iOS打包,上架知识大全

    解锁WiFi密码,我只用了60行代码

    def brute_force(selected_network, passwords, args): for password in passwords: # necessary due to NetworkManager +bcolors.ENDC)​ print(bcolors.FAIL+"** RESULTS **: All passwords failed :("+bcolors.ENDC) 核心功能3个函数就完成了 : file = open(args.file, "r") passwords = file.readlines() ifnot passwords: print("Password file If you would like to see passwords being tested in realtime, enable the [--verbose] flag at start.")​ brute_force(target, passwords, args) 执行函数,就会在命令行下显示附近的WiFi列表,选择之后就开始逐个尝试密码。 ​

    1.2K10编辑于 2023-03-22
  • 【详解】hydra工具安装与使用

    2.3 示例2.3.1 SSH暴力破解假设我们要对SSH服务进行暴力破解,可以使用以下命令:hydra -l admin -P /path/to/passwords.txt -t 4 -V ssh:// -P /path/to/passwords.txt​​: 指定密码字典文件。​​-t 4​​: 使用4个并发线程。​​-V​​: 显示详细输出。​​ -P /path/to/passwords.txt​​: 指定密码字典文件。​​-t 4​​: 使用4个并发线程。​​-V​​: 显示详细输出。​​-f​​: 找到有效凭证后停止。​​ -P passwords.txt​​: 指定密码列表文件。​​-t 4​​: 同时运行的线程数。​​-vV​​: 详细输出模式。​​ hydra -L usernames.txt -P passwords.txt -t 4 -vV ssh://192.168.1.1013.

    57710编辑于 2025-12-18
  • 来自专栏积木居

    EXCEL密码去除(工作表、工作薄密码保护破解)

    宏内容如下: Public Sub AllInternalPasswords() ' Breaks worksheet and workbook structure passwords. probably originator of base code algorithm modified for coverage ' of workbook structure / windows passwords and for multiple passwords ' ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1) ' Modified NOT original passwords Const DBLSPACE As String = vbNewLine & vbNewLine Const AUTHORS As String = , the " & _ "passwords, and your computer's specification." & DBLSPACE & _ "Just be patient!

    14.8K40发布于 2019-02-27
  • 来自专栏源码之家

    EXCEL密码去除(工作表、工作薄密码保护破解)

    宏内容如下: Public Sub AllInternalPasswords() ' Breaks worksheet and workbook structure passwords. probably originator of base code algorithm modified for coverage ' of workbook structure / windows passwords and for multiple passwords ' ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1) ' Modified NOT original passwords Const DBLSPACE As String = vbNewLine & vbNewLine Const AUTHORS As String = , the " & _ "passwords, and your computer's specification." & DBLSPACE & _ "Just be patient!

    2.1K110发布于 2018-06-04
  • 来自专栏FreeBuf

    爬虫代理搭建与批量安装

    看来必需要配置访问认证了 1.生成passwords文件 在本机上执行 # 安装htpasswd工具 yum install httpd-tools -y # 生成passwords文件 htpasswd -c passwords authorized_user 2.输入两次密码后生成passwords文件 配置squid认证 将passwords文件上传到爬虫服务器/etc/squid/目录下,编辑/ squid.conf文件,添加 # test mypass auth_param basic program /usr/lib64/squid/basic_ncsa_auth /etc/squid/passwords 添加认证账号 sess.put(AUTH_FILE, '/etc/squid/passwords') logger.debug(">>> 3\.

    1.8K50发布于 2018-04-17
  • 来自专栏CSDN

    基于springboot架构 钉钉扫码登录第三方应用

    ():null, rememberMe, host,false); } public MyUsernamePasswordToken(String username, String passwords , boolean rememberMe, boolean encryption) { this(username, passwords, rememberMe, (String)null = passwords; this.rememberMe = rememberMe; this.host = host; this.encryption ; } public void setPasswords(String passwords) { this.passwords = passwords; } = null) { this.passwords = null; } } @Override public String toString

    38110编辑于 2024-03-28
  • 来自专栏程序编程之旅

    HDOJ/HDU 1039 Easier Done Than Said?(字符串处理~)

    Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure Some sites use random computer-generated passwords (like xvtpzyo), but users have a hard time remembering One potential solution is to generate “pronounceable” passwords that are relatively secure but still work in the quality control department, and it’s your job to test the generator and make sure that the passwords Input The input consists of one or more potential passwords, one per line, followed by a line containing

    51920发布于 2021-01-21
  • 来自专栏HarmonyOS NEXT实战

    HarmonyOS NEXT实战:图案密码

    实战代码import { LengthUnit } from '@kit.ArkUI'@Entry@Componentstruct PatternLockPage { @State passwords > 0) { // 判断两次输入的密码是否相同,相同则提示密码设置成功,否则提示重新输入 if (this.passwords.toString() === input.toString()) { this.passwords = input this.message = '设置密码成功:' + this.passwords.toString PatternLockChallengeResult.WRONG) } } else { // 提示第二次输入密码 this.passwords ').margin(30).onClick(() => { // 重置密码锁 this.patternLockController.reset() this.passwords

    22900编辑于 2025-06-26
  • 来自专栏白帽子安全笔记

    大华摄像头暴破工具bruteforceCamera

    Part3 手搓工具 直接用C++就地手搓一个,单机初版代码 check_passwords.cpp #include <iostream> #include <vector> #include <curl ::string camera_port = "80"; // 常见的弱口令 const std::vector<std::pair<std::string, std::string>> weak_passwords check_passwords.cpp -lcurl -lstdc++ -lpthread 在kali中运行 . check_passwords2.cpp #include <iostream> #include <vector> #include <curl/curl.h> #include <string> # 当前目录打开cmd运行check_passwords.exe,执行成功 关注公众号"白帽子安全笔记”,回复“bruteforceCamera”,下载win+linux版本编译文件和源代码。

    2.2K10编辑于 2024-10-28
  • 来自专栏harmonyos从入门到精通

    199.HarmonyOS NEXT系列教程之图案锁组件集成详解

    message: 组件状态信息,使用@Link装饰器修饰,用于组件状态信息的展示 * initalPasswords: 初始密码为大写字母Z,九宫格分别代表数字0-8 * passwords this.patternLockController, message: this.message, initalPasswords: this.initalPasswords, passwords : this.passwords})关键点解析:组件功能:图形密码输入振动反馈状态管理参数配置:控制器绑定消息传递密码管理2. / 参数传递PatternLockComponent({ message: this.message, initalPasswords: this.initalPasswords, passwords : this.passwords})关键点解析:密码管理:初始密码临时密码数组结构消息处理:提示信息资源引用状态同步3.

    30610编辑于 2025-03-23
  • 来自专栏码农编程进阶笔记

    Elasticsearch7 设置用户名密码 && 查询

    You will be prompted to enter passwords as the process progresses. Please confirm that you would like to continue [y/N]y Enter password for [elastic]: passwords must be Enter password for [elastic]: Reenter password for [elastic]: Passwords do not match. Try again. /bin/elasticsearch-setup-passwords interactive Initiating the setup of passwords for reserved users elastic You will be prompted to enter passwords as the process progresses.

    9.6K20发布于 2021-11-01
  • 来自专栏sktj

    python 密码保险箱 脚本

    PASSWORDS = {'email': 'F7minlBDDuvMJuxESSKHFhTxFtjVB6', 'blog': 'VmALvQyKAxiVH5G8v01if1MLZF3sdt', ' password') sys.exit() account = sys.argv[1] # first command line arg is the account name if account in PASSWORDS : pyperclip.copy(PASSWORDS[account]) print('Password for ' + account + ' copied to clipboard.')

    85310编辑于 2022-05-14
  • 来自专栏小樱的经验随笔

    HDU 1039 Easier Done Than Said?

    Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure Some sites use random computer-generated passwords (like xvtpzyo), but users have a hard time remembering One potential solution is to generate "pronounceable" passwords that are relatively secure but still work in the quality control department, and it's your job to test the generator and make sure that the passwords Input The input consists of one or more potential passwords, one per line, followed by a line containing

    89960发布于 2018-04-08
领券