lastpass

有他们在密码更安全

让人想犯罪 __ 提交于 2020-03-02 10:52:50
密码是你抵御网络威胁的最后一道防线。只要回顾一下最近的一些数据泄露和网络攻击,包括大众关注的OPM(美国联邦人事管理局)和婚外情网站Ashley Madison的数据泄露,都导致成千上万的记录的网上曝光。 虽然你不能控制数据泄露,但创建强壮的、可以抵御字典和暴力破解的密码仍然是重要的。你知道,你的密码越长,它越难破解。 如何保证在线服务的安全? 安全研究人员喋喋不休地劝说在线用户为他们的各种网上账户创建长的、复杂和各异的密码。这样,如果一个网站被攻破,你在其他网站上的帐户是安全的,不会被黑客攻击。理想的情况下,你的密码必须至少16个字符长,应该包含数字、符号、大写字母和小写字母,而最重要的是,甚至你都不知道的密码才是最安全的密码。 密码应该不重复,而且不包含任何字典中的词汇、代词,你的用户名或 ID 号,以及任何其它预定义的字母或数字序列。我知道记住这样的复杂的密码字符串是一个实在痛苦的过程,除非我们是一个人型超级计算机,为不同的在线账户记住不同的密码并不是一个轻松的任务。问题是,现在人们注册了大量的在线网站和服务,为每一个帐户创建和记住不同的密码通常是很难的。 不过,幸运的是,我们可以让这个事情变得很轻松,不断涌现的面向桌面计算机和智能电话的口令管理器可以显著地降低你密码记忆难度,从而治愈你设置弱密码的坏毛病。 密码管理器是什么? 在过去的几年里,密码管理软件已经取得了长足的进展

qpython3 读取安卓lastpass Cookies

邮差的信 提交于 2020-02-29 06:42:26
之前我的博客写了python读取windows chrome Cookies,沿着同样的思路,这次本来想尝试读取安卓chrome Cookies, 但是可能是chrome的sqlite3版本比较高失败了,so改成读取lastpass 的Cookies。 背景介绍: qpython3 是一个基于sl4a实现的能让python3跑在安卓手机上集成环境。 lastpass 是一个密码管理器,安卓版lastpass 内置了一个web浏览器。经分析lastpass的Cookies的表名,字段名与chrome一样,且value明文存储不加密。 requests 是一个python 第三方http库,qpython3中集成了。 sqlite3 是一个嵌入式数据库,很多软件和APP用到了sqlite。比如chrome lastpass浏览器用来存储cookies和访问记录之类的信息。 由于找不到好的方法让python代码以root权限读取其它APP数据的方法, 于是采用调用命令su -c cp 的方法直接把文件拷贝到SD卡再读取。 以下代码是qpython3下读出lastpass cookies并成功用于发送博客园闪存的例子: 运行环境 qpython3 安卓4.4 必须root 手机索尼L39H 安卓版lastpass,运行前需要在lastpass中登录一次博客园。 #-*-coding

浅析零拷贝技术

喜夏-厌秋 提交于 2020-02-27 23:01:05
作者:Truman's Blog 来源: http://trumandu.github.io/2019/06/14/浅析零拷贝技术 前言 零拷贝(英语:Zero-copy)技术是指计算机执行操作时,CPU不需要先将数据从某处内存复制到另一个特定区域。这种技术通常用于通过网络传输文件时节省CPU周期和内存带宽。 零拷贝操作减少了 在用户空间与内核空间之间切换模式的次数 。 举例来说,如果要读取一个文件并通过网络发送它,传统方式下如下图, 传统的I/O操作进行了4次用户空间与内核空间的上下文切换,以及4次数据拷贝。其中4次数据拷贝中包括了2次DMA拷贝和2次CPU拷贝 。通过零拷贝技术完成相同的操作,减少了在用户空间与内核空间交互,并且不需要CPU复制数据。 linux中零拷贝技术 Linux系统的“用户空间”和“内核空间” 从Linux系统上看,除了引导系统的BIN区,整个内存空间主要被分成两个部分:内核空间(Kernel space)、用户空间(User space)。 “用户空间”和“内核空间”的空间、操作权限以及作用都是不一样的。 内核空间是Linux自身使用的内存空间,主要提供给程序调度、内存分配、连接硬件资源等程序逻辑使用;用户空间则是提供给各个进程的主要空间。 用户空间不具有访问内核空间资源的权限,因此如果应用程序需要使用到内核空间的资源,则需要通过系统调用来完成

HTML Service - Uncaught NetworkError: Form submission failed

梦想与她 提交于 2019-12-10 22:09:35
问题 I am working through the google example code for HTML Service: Communicate with Server Functions. I can't get the sample code to work for "Forms'. Is there an error in the code or is it something in my browser config? The code is - code.gs function doGet() { return HtmlService.createHtmlOutputFromFile('index'); } function processForm(formObject) { var formBlob = formObject.myFile; var driveFile = DriveApp.createFile(formBlob); return driveFile.getUrl(); } index.html <script> function

Lastpass changing username

空扰寡人 提交于 2019-12-08 20:46:22
问题 I have a form that username gets pre-populated from the backend. When the page loads, the username is shown in the username field. When lastpass loads, it changes the username to the username that is saved on the lastpass. It looks like a bug that lastpass overwrites the username when it has a value. Is there a way to prevent this? In the above video, pre defined username is baz@qux.com . After lastpass is loaded, it changes to foo@bar.com . PS. I'm the developer. I am looking for a way to

How can I write my HTML login form to explicitly enable LastPass?

核能气质少年 提交于 2019-12-05 16:43:21
问题 How can I write my HTML login form to be guaranteed to work with LastPass, or at least make it as likely as possible to work? Some sites require the "Save All Entered Data" to work properly with LastPass, but as a site developer I'm looking for something better. What do I need to do to ensure LastPass default mode ("Save Site") works as flawlessly as possible? I can't find any official documentation, or really even any good blog posts with suggestions, but that would certainly answer my

LastPass最佳替代工具 BitWarden

本秂侑毒 提交于 2019-12-05 11:31:54
最近发现 LastPass 删除了中文语言,中国用户只能使用英文界面,而且在 AppStore 中国区已经搜索不到 LastPass 了。 原因是国内的一家专利流氓公司,恶意抢注了中国区 LastPass 的商标,借此勒索钱财,LastPass 被迫退出中国市场,下架 AppStore 中国区的应用。 因此,寻找 LastPass 替代品的工作提上日程,好在已经找到了完美替代方案。 一 密码管理工具的选择 密码管理工具的思路,是将所有密码交由工具管理,我们只需要记住主密码就行,生成密码、记忆密码和填写密码都由工具来自动完成。 比如有 1PassWord、KeePass 、Lastpass、BitWarden 可以选择,就安全性而言,这些密码管理工具采用的是高强度 AES-256 加密算法,想要破解几乎是不可能的事。 也有人会担心把密码放在别人的服务器上会不会不安全?放心,是安全的。 它们的加密方法,是把帐号和主密码通过算法得到一个值,然后用这个值去加密用户的各个密码,最后储存在服务器上。 而加密解密都需要在本地进行,不用担心,黑客即使攻破了服务器,因为无法破解密码数据库,黑客除了把你的密码数据库删除外,其他什么也做不了。 在价格方面,1PassWord 只有付费版本,需要大约 20 元一个月,KeePass 虽然免费,但上手难度较大,LastPass 由于中文语言和下架的原因

Jupyter Notebook error during saving

匿名 (未验证) 提交于 2019-12-03 03:10:03
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Everything used to work fine but now every time I try saving any file in Jupyter Notebook, I get the following error. URIError : URIMalformed Also the following is shown in the title bar. Last Checkpoint : 09 / 02 / 2016 Autosave Failed ! How do I fix this issue? 回答1: There is a solution for the Lastpass users: https://github.com/jupyter/notebook/issues/1966 adding "localhost" to My Vault -> Account Settings -> Neverl URLS -> "Never Add Site" 回答2: I encountered this same error as well. I ended up tracing it down to the LastPass

Why is VS 2013 very slow?

匿名 (未验证) 提交于 2019-12-03 01:10:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 选择语言 中文(简体) 日语 英语 中文(繁体) 由 翻译 强力驱动 问题: I'm running Visual Studio 20 1 3 Pro (RTM version) on my formated PC (Windows 8. 1 fresh install). I don't know why but Visual Studio 20 1 3 Pro is very very slow! Slow for building, debugging, navigating in the IDE... my HDD led is not lighting up at all! I'm on a little MFC (C++) project using the Boost library. Any ideas? 回答 1 : It is something concerned with the graphics drivers. If you update them you will be fine. Or you can disable the hardware graphics acceleration in Visual Studio according to

How does Lastpass know the current URL in Chrome

烂漫一生 提交于 2019-12-01 02:52:39
问题 When browsing around in Chrome for Android, Lastpass pops up with suggestions if it recognizes the URL as one you have associated login details with. How does it know which URL Chrome is looking at? I know that Lastpass makes use of Accessibility Services, but I wonder how it queries the current URL from Chrome. PS. Apparently it only works for Chrome (it doesn't pop up in Opera for example) so it might be something Chrome specific. 回答1: LastPass on Android asks for Accessibility permission