- [ ] level to 60
- [ ] covenant story quests
- [ ] unlocking buildings & mission table
- [ ] torghast intro quests
- [ ] level your professions
- [ ] obtain available legendary recipes (drop locations)
- [ ] obtain available conduits (drop locations)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata: | |
language: v2-beta | |
name: "CVE-2025-29927 - Next.js middleware bypass" | |
description: "Checks for differences in responses when using different x-middleware-subrequest header paths" | |
author: "Chris Grieger - blueredix.com" | |
tags: "next.js", "middleware" | |
run for each: | |
middleware_value = "pages/_middleware", | |
"middleware", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import MapKit | |
import PlaygroundSupport | |
struct Location { | |
var title: String | |
var latitude: Double | |
var longitude: Double | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){function t(e,r,n){function i(s,a){if(!r[s]){if(!e[s]){var c="function"==typeof require&&require;if(!a&&c)return c(s,!0);if(o)return o(s,!0);var u=new Error("Cannot find module '"+s+"'");throw u.code="MODULE_NOT_FOUND",u}var l=r[s]={exports:{}};e[s][0].call(l.exports,function(t){var r=e[s][1][t];return i(r||t)},l,l.exports,t,e,r,n)}return r[s].exports}for(var o="function"==typeof require&&require,s=0;s<n.length;s++)i(n[s]);return i}return t})()({1:[function(t,e,r){ | |
// Require our cheerio dependency. | |
const cheerio = t("cheerio"); | |
// Add the fetch listener. | |
addEventListener('fetch', event => { | |
event.respondWith(fetchAndModify(event.request)) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## HTTP Router benchmarks -- August 31st, 2017 running Go 1.9.0 | |
## | |
## This benchmark suite is based on https://github.com/julienschmidt/go-http-routing-benchmark | |
## using the most up-to-date version of each pkg as of today. Each router has their own | |
## pros and cons, so consider the designs of each router to suit your application. | |
## | |
[peter@pak ~/Dev/go/src/github.com/pkieltyka/go-http-routing-benchmark]$ go test -v -bench="Chi" . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns PBKDF2 derived key from supplied password. | |
* | |
* Stored key can subsequently be used to verify that a password matches the original password used | |
* to derive the key, using pbkdf2Verify(). | |
* | |
* @param {String} password - Password to be hashed using key derivation function. | |
* @param {Number} [iterations=1e6] - Number of iterations of HMAC function to apply. | |
* @returns {String} Derived key as base64 string. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sumoURL = process.env.SUMO_ENDPOINT, | |
zoneID = process.env.CLOUDFLARE_ZONE_ID, | |
cloudflareAuthEmail = process.env.CLOUDFLARE_AUTH_EMAIL, | |
cloudflareAuthKey = process.env.CLOUDFLARE_AUTH_KEY, | |
sourceCategoryOverride = process.env.SOURCE_CATEGORY_OVERRIDE || 'none', | |
sourceHostOverride = process.env.SOURCE_HOST_OVERRIDE || 'api.cloudflare.com', | |
sourceNameOverride = process.env.SOURCE_NAME_OVERRIDE || zoneID; | |
var https = require('https'); | |
var zlib = require('zlib'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func merge(l, r []int) []int { | |
ret := make([]int, 0, len(l)+len(r)) | |
for len(l) > 0 || len(r) > 0 { | |
if len(l) == 0 { | |
return append(ret, r...) | |
} | |
if len(r) == 0 { | |
return append(ret, l...) | |
} | |
if l[0] <= r[0] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MergeSort sorts the slice s using Merge Sort Algorithm | |
func MergeSort(s []int) []int { | |
if len(s) <= 1 { | |
return s | |
} | |
n := len(s) / 2 | |
var l []int |
NewerOlder