ohh, there was an error happened when loading the web page ... QAQ ...
抱歉,加載 Javascript 時出現了問題 ...
Please Disable AD Block, there are no AD in the website.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>My Simple Webpage</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
margin: 20px; |
#!/usr/bin/expect | |
if { $argc != 1 } { | |
puts "Usage: $argv0 <config.ovpn>" | |
exit 1 | |
} | |
set configFile [lindex $argv 0] | |
set timeout -1 |
#https://rohnspowershellblog.wordpress.com/2013/03/19/viewing-service-acls/ | |
Add-Type @" | |
[System.FlagsAttribute] | |
public enum ServiceAccessFlags : uint | |
{ | |
QueryConfig = 1, | |
ChangeConfig = 2, | |
QueryStatus = 4, | |
EnumerateDependents = 8, | |
Start = 16, |
# import the necessary toolsets | |
Import-Module .\powermad.ps1 | |
Import-Module .\powerview.ps1 | |
# we are TESTLAB\attacker, who has GenericWrite rights over the primary$ computer account | |
whoami | |
# the target computer object we're taking over | |
$TargetComputer = "primary.testlab.local" |
import time | |
import os | |
import ntplib | |
client = ntplib.NTPClient() | |
response = client.request('ntp4.aliyun.com') | |
timestamp = int(response.tx_time) | |
date_string = time.strftime('%d-%m-%Y', time.localtime(timestamp)) | |
print(date_string) | |
os.system('date ' + date_string) |
#!/usr/bin/env python3 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
""" | |
#!/bin/bash | |
# Usage: ./minio-upload my-bucket my-file.zip | |
bucket=$1 | |
file=$2 | |
host=minio.example.com | |
s3_key=svc_example_user | |
s3_secret=svc_example_user_password |
{ | |
"log": { | |
"level": "info", | |
"timestamp": true | |
}, | |
"dns": { | |
"servers": [ | |
{ | |
"tag": "dns_proxy", | |
"address": "tls://dns.google", |