这里选择安装 docker-ce 版本
根据不同的平台请参考官方教程
https://docs.docker.com/engine/install/
另外安装docker过程可能受国内网络环境影响会有点慢
| import json | |
| import requests | |
| import hashlib | |
| import time | |
| from urllib import parse | |
| from capture import Crack | |
| from flask import Flask, escape, request,make_response | |
| app = Flask(__name__,static_folder="static",static_url_path="") | |
| def auth(): |
这里选择安装 docker-ce 版本
根据不同的平台请参考官方教程
https://docs.docker.com/engine/install/
另外安装docker过程可能受国内网络环境影响会有点慢
// https://github.com/irontec/netfilter-nfqueue-samples/blob/master/sample-helloworld.c
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <netinet/in.h>
#include <linux/types.h>
#include <linux/netfilter.h>
#include <libnetfilter_queue/libnetfilter_queue.h>
| ########################################### | |
| # | |
| # Installation Script | |
| # | |
| ########################################### | |
| param ( | |
| [string]$password = "", | |
| [string]$pkg_url = $null, | |
| [string]$pkg_file = ".\pkg.json", | |
| [bool]$nochecks = $false |
| package main | |
| /* | |
| CVE-2020-8515: DrayTek pre-auth remote root RCE | |
| Mon Mar 30 2020 - 0xsha.io | |
| Affected: |
| #!/bin/bash | |
| # your mattermost installation url | |
| mattermost="https://example.com" | |
| # bot token, get it in Integrations > Bot Accounts | |
| token=abcdef123456 | |
| # set to true for debug output | |
| debug=false |
| <template> | |
| <div> | |
| </div> | |
| </template> | |
| <script> | |
| import CryptoJs from "crypto-js" | |
| export default { | |
| name: "", | |
| data(){ |
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
| <?php | |
| /** | |
| * CIDR.php | |
| * | |
| * Utility Functions for IPv4 ip addresses. | |
| * Supports PHP 5.3+ (32 & 64 bit) | |
| * @author Jonavon Wilcox <jowilcox@vt.edu> | |
| * @revision Carlos Guimarães <cvsguimaraes@gmail.com> | |
| * @version Wed Mar 12 13:00:00 EDT 2014 | |
| */ |
| #!/bin/bash | |
| # Parameters | |
| socket="/run/foo.sock" | |
| dump="/tmp/capture.pcap" | |
| # Extract repetition | |
| port=9876 | |
| source_socket="$(dirname "${socket}")/$(basename "${socket}").orig" |