nano ./CTFd/themes/admin/templates/teams/team.html
{% extends "admin/base.html" %}
{% block stylesheets %}
{% endblock %}
nano ./CTFd/themes/admin/templates/teams/team.html
{% extends "admin/base.html" %}
{% block stylesheets %}
{% endblock %}
const ENV = { | |
dashboard: 'https://xxxx/', | |
api_key: 'xxxx' | |
} | |
process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0 | |
const dns = require('dns') | |
const fs = require('fs') | |
const ifetch = require('ifetch-node') |
#!/usr/bin/env bash | |
# CC: https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 | |
# CC: https://wiki.qt.io/Compiling_OpenSSL_with_MinGW | |
# Clone OpenSSL | |
git clone -b OpenSSL_1_0_2-stable --single-branch --depth 1 --recurse-submodules https://github.com/openssl/openssl.git openssl-source | |
cd openssl-source | |
pacman -Sy mingw-w64-x86_64-toolchain make pkg-config mingw-w64-x86_64-diffutils |
Windows 2012 R2 Essentials: http://download.microsoft.com/download/8/F/7/8F7024D2-AB2A-4BE2-8406-1E3AC49C5C1F/9600.16384.WINBLUE_RTM.130821-1623_X64FRE_SERVER_SOLUTION_EN-US-IRM_SSSO_X64FRE_EN-US_DV5.ISO
Windows 2016: https://software-download.microsoft.com/download/pr/Windows_Server_2016_Datacenter_EVAL_en-us_14393_refresh.ISO
Windows 2019 Essentials: https://software-download.microsoft.com/download/pr/17763.737.190906-2324.rs5_release_svc_refresh_SERVERESSENTIALS_OEM_x64FRE_en-us_1.iso
Manjaro X96Air (S905X3 / 4GB)
https://manjaro.org/download/#khadas-vim-3-minimal => https://manjaro.org/downloads/arm/khadas-vim-3/arm8-vim3-minimal/
or
// npm i -g csv-parse better-sqlite3 psl | |
const {parse: csvParse} = require('csv-parse') | |
const fs = require('fs') | |
const psl = require('psl') | |
const sqlite3 = require('better-sqlite3') | |
const db = new sqlite3('orgurl.db', { | |
readonly: false, | |
fileMustExist: false, | |
}) |
https://portswigger-cdn.net/burp/releases/download?product=pro&version=2022.6.1&type=Jar |
sudo nano /etc/netplan/00-installer-config.yaml | |
# https://www.aelius.com/njh/subnet_sheet.html | |
# 255.255.255.224 = /27 | |
# xxx.xxx.xxx.33/27 | |
network: | |
ethernets: | |
ens160: | |
dhcp4: false | |
dhcp6: false |
<?php | |
// list email | |
var_dump($resps = curl_multi([ | |
[ | |
'url' => 'imaps://mail.xxx:993/INBOX', | |
'no_verify' => true, | |
'opts' => [ | |
CURLOPT_CUSTOMREQUEST => 'examine inbox', | |
CURLOPT_USERPWD => 'xxx@xxx:xxx', |
apk --update-cache --upgrade --no-cache add jq curl |